Wednesday, March 17, 2010

Making label cloud rotating

On this occasion, we will discuss how to Make a label display rotating cloud on your blog, if you did not know what that label is, this a bit about the label, label is , posting articles which are grouped in one category, for example, you make a posting titled 'how to create a label cloud this spin, this title about blog tutorial, so the label is tutorial blog, i think you understand with that.

For those of you who want to put this spin label cloud, continue reading this article.

1. Login to Blogger
2. Click the Layout
3. Click the Edit HTML tab
4. Click on Download Full Template, to backup your template
5. Then click the button Expand Widget Templates and find the reply code like this:

<b:section class='sidebar' id='sidebar' preferred='yes'>

6. Copy the following code after the code above:

<b:widget id='Label99' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<script src='http://sites.google.com/site/bloggerustemplatus/code/swfobject.js' type='text/javascript'/>
<div id='flashcontent'>Blogumulus by <a href='http://www.roytanck.com/'>Roy Tanck</a> and <a href='http://www.bloggerbuster.com'>Amanda Fazani</a></div>
<script type='text/javascript'>
var so = new SWFObject(&quot;http://sites.google.com/site/bloggerustemplatus/code/tagcloud.swf&quot;, &quot;tagcloud&quot;, &quot;240&quot;, &quot;300&quot;, &quot;7&quot;, &quot;#ffffff&quot;);
// uncomment next line to enable transparency
//so.addParam(&quot;wmode&quot;, &quot;transparent&quot;);
so.addVariable(&quot;tcolor&quot;, &quot;0x333333&quot;);
so.addVariable(&quot;mode&quot;, &quot;tags&quot;);
so.addVariable(&quot;distr&quot;, &quot;true&quot;);
so.addVariable(&quot;tspeed&quot;, &quot;100&quot;);
so.addVariable(&quot;tagcloud&quot;, &quot;<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>&quot;);
so.addParam(&quot;allowScriptAccess&quot;, &quot;always&quot;);
so.write(&quot;flashcontent&quot;);
</script>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>

7. Then Save Template. and see the results.

to change its size, you can select the widget, which will appear on your blog ..

good luck ...

Tuesday, March 16, 2010

Sejarah robot / robots history

The word robot was first introduced by a writer from the Czechs who named Karel Capek (pronounced "Chop'ek") in 1920. with his work "RUR" or Rossum's Universal Robots in which a man makes robots and robot kills its creator. Many later movies depict robots as tools that are not friendly or as an engine of destruction as opposed to the meaning of the robot (Robota) in the language of Czechs, which means forced labor ..

1920, the robot began to develop from the science of electronics, ie from automatic control techniques, but at that time, computer that is a major component  of a robot which is used to pengolaan input from sensors and actuators control  do not have a fast commutation capability in addition to  the physical  size of the  computer  at the time itru still quite large.

History robot starts at:
  • 1938, Jacques de Vaucanson create an automated system, he created a mechanical duck that could eat the seeds and chop up, opening and closing its wings.
  • 1796, Hisashine Tanaga in Japan managed to make a mechanical toy that can mnghidangkan tea and write kanji.
  • 1926, Nikola Tesla mendemintrasikan boat bots that can be controlled by radio.
  • 1928, Makoto Nishimura create the first robot in Japan.
  • In line with the development of electronics technology, the development of this robot is moving rapidly, such as
  • 1948, William Grey Walter made ​​the first automatic electronic robot where the robot can respond to light and can make contact with the object from outside.
  • 1954, at the commencement of the digital era, a programmable digital robot invented by George Devol.

Intelligent robots began to develop rapidly along the development of computers around the 1950's. With the increasingly rapid computational capabilities of computers and increasingly smaller physical size, the robots are dbuat increasingly have intelligence good enough to perform jobs usually done by humans.

and in present-day, the development of robots better , such as, Japan makes robot that can sing, Ashimo,is a robot which has the ability as human beings, either a function or how to action.etc..

Monday, March 15, 2010

Make related post on blog

in beautify the look of the blog, most bloggers also install widgets on his blog. eg. table of content, animation banner, and other widgets, now, in this post, we will discuss about make related post, exactly under Post. perhaps how to make a 'related post', has been much discussed by other bloggers, so for those who already know how to make it, look for other useful articles on this blog, but if you do not know how to make a related post, please continue reading this article.


Follow the steps below :

1.  Log in to Blogger.
2. Click Layout.
3. Click the Edit HTML tab.
4. Then click the Expand Widgets Templates.
5. Find the code like this:

    <p><data:post.body/></p>

    atau

    <data:post.body/>


    <data:post.body/>.

      Kemudian letakkan script berikut ini setelah kode <data:post.body/> yang pertama.


    <b:if cond='data:blog.pageType == "item"'>
    <div class='similiar'>

    <div class='widget-content'>
    <h3>Artikel Terkait</h3>
    <div id='data2007'/><br/><br/>
    <script type='text/javascript'>

    var homeUrl3 = &quot;<data:blog.homepageUrl/>&quot;;
    var maxNumberOfPostsPerLabel = 4;
    var maxNumberOfLabels = 7;

    maxNumberOfPostsPerLabel = 7;
    maxNumberOfLabels = 3;


    function listEntries10(json) {
    var ul = document.createElement(&#39;ul&#39;);
    var maxPosts = (json.feed.entry.length &lt;= maxNumberOfPostsPerLabel) ?
    json.feed.entry.length : maxNumberOfPostsPerLabel;
    for (var i = 0; i &lt; maxPosts; i++) {
    var entry = json.feed.entry[i];
    var alturl;

    for (var k = 0; k &lt; entry.link.length; k++) {
    if (entry.link[k].rel == &#39;alternate&#39;) {
    alturl = entry.link[k].href;
    break;
    }
    }
    var li = document.createElement(&#39;li&#39;);
    var a = document.createElement(&#39;a&#39;);
    a.href = alturl;

    if(a.href!=location.href) {
    var txt = document.createTextNode(entry.title.$t);
    a.appendChild(txt);
    li.appendChild(a);
    ul.appendChild(li);
    }
    }
    for (var l = 0; l &lt; json.feed.link.length; l++) {
    if (json.feed.link[l].rel == &#39;alternate&#39;) {
    var raw = json.feed.link[l].href;
    var label = raw.substr(homeUrl3.length+13);
    var k;
    for (k=0; k&lt;20; k++) label = label.replace(&quot;%20&quot;, &quot; &quot;);
    var txt = document.createTextNode(label);
    var h = document.createElement(&#39;b&#39;);
    h.appendChild(txt);
    var div1 = document.createElement(&#39;div&#39;);
    div1.appendChild(h);
    div1.appendChild(ul);
    document.getElementById(&#39;data2007&#39;).appendChild(div1);
    }
    }
    }
    function search10(query, label) {

    var script = document.createElement(&#39;script&#39;);
    script.setAttribute(&#39;src&#39;, query + &#39;feeds/posts/default/-/&#39;
    + label +
    &#39;?alt=json-in-script&amp;callback=listEntries10&#39;);
    script.setAttribute(&#39;type&#39;, &#39;text/javascript&#39;);
    document.documentElement.firstChild.appendChild(script);
    }

    var labelArray = new Array();
    var numLabel = 0;

    <b:loop values='data:posts' var='post'>
    <b:loop values='data:post.labels' var='label'>
    textLabel = &quot;<data:label.name/>&quot;;

    var test = 0;
    for (var i = 0; i &lt; labelArray.length; i++)
    if (labelArray[i] == textLabel) test = 1;
    if (test == 0) {
    labelArray.push(textLabel);
    var maxLabels = (labelArray.length &lt;= maxNumberOfLabels) ?
    labelArray.length : maxNumberOfLabels;
    if (numLabel &lt; maxLabels) {
    search10(homeUrl3, textLabel);
    numLabel++;
    }
    }
    </b:loop>
    </b:loop>
    </script>
    </div>

    </div>
    </b:if>

    7. Then Save Template. now you have a related post on your blog

    Good luck

    Task manager missing

    with the times like now a lot of facilities that benefit available to us,,, but many also "disadvantageous",,, like a virus .. which is a human creation, and also develop according to age,,,

    Now we will discuss about the task manager is missing some where probably because the virus ....
    the steps,,
    The first ... scan your computer with anti virus that has been updated ....
    after that .. click Start-All programs-Run or press Windows + R
    it will appear like this:

    type 'regedit' ...and press enter..
    it will appear like this.



    follow the steps in the picture above ....
    then click "remove task manager" ... then change it to "not configured".

    but,, if you still can not ... select "remove task manager", click ok .. then select again "not configured" ..
    then ok .... ,,,
    Hehe, according to experience,,

    good luck