<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5924225674771924045</id><updated>2024-06-25T14:59:41.906-07:00</updated><title type='text'>Tech Pages</title><subtitle type='html'>Mix Updates</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>70</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-5903738287860853247</id><published>2014-04-22T04:50:00.002-07:00</published><updated>2014-04-22T05:46:34.917-07:00</updated><title type='text'>How to add more than one connection between two raphael rectangles by modifying graffle.js</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVeEUcmyobFcnHReP5Wc7wPhc7bNaRPgCF1j4F5Cm94yaVq2F0bMWHEqVBvrfy0-xQbAML46bjXdBB2ajq9V7k3lZtqnBzMhTvyrasLuJpp7xaoDiAP99n7lWKQHLoD1bjmvQOe-2liumd/s1600/blogger_post.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVeEUcmyobFcnHReP5Wc7wPhc7bNaRPgCF1j4F5Cm94yaVq2F0bMWHEqVBvrfy0-xQbAML46bjXdBB2ajq9V7k3lZtqnBzMhTvyrasLuJpp7xaoDiAP99n7lWKQHLoD1bjmvQOe-2liumd/s1600/blogger_post.PNG&quot; height=&quot;320&quot; width=&quot;316&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Brief history of this code: &lt;/b&gt;&lt;/h3&gt;
Hi, friends i am learning Raphael js and creating an application in it. i needed to create a mechanism which would allow more than one connections between two Raphael rectangles and i was having alot of i mean tons of issues and thoughts on how to do it and it kept me busy a lot. i was so tired that i had to make stackoverflow account and ask help about it, but the help i got added one more thought to me. At last i am able to create a mechanism which will not only allow more than one connection but also renders it on moving the rectangle. &lt;b&gt;yes i know it still has issues&lt;/b&gt; but this is the basic code to help any other who need this and can use it and don&#39;t have struggle as much as i did.&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
Lets get started:&lt;/h3&gt;
create and HTML document and use the following code:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre style=&quot;background: #f0f0f0; border: 1px dashed #CCCCCC; color: black; font-family: arial; font-size: 12px; height: auto; line-height: 20px; overflow: auto; padding: 0px; text-align: left; width: 99%;&quot;&gt;&lt;code style=&quot;color: black; word-wrap: normal;&quot;&gt; &amp;lt;!doctype html&amp;gt;  
 &amp;lt;html&amp;gt;  
 &amp;lt;body&amp;gt;  
      &amp;lt;div id=&quot;canvas&quot;&amp;gt;&amp;lt;/div&amp;gt;  
      &amp;lt;script type=&quot;text/javascript&quot; src=&quot;js/Raphael.js&quot;&amp;gt;&amp;lt;/script&amp;gt;  
      &amp;lt;script type=&quot;text/javascript&quot; src=&quot;js/app.js&quot;&amp;gt;&amp;lt;/script&amp;gt;  
 &amp;lt;/body&amp;gt;  
 &amp;lt;/html&amp;gt;  
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
in the app.js use the following code:&lt;br /&gt;
&lt;br /&gt;
&lt;pre style=&quot;background: #f0f0f0; border: 1px dashed #CCCCCC; color: black; font-family: arial; font-size: 12px; height: auto; line-height: 20px; overflow: auto; padding: 0px; text-align: left; width: 99%;&quot;&gt;&lt;code style=&quot;color: black; word-wrap: normal;&quot;&gt; function lineDistance( point1, point2 )  
 {  
  var xs = 0;  
  var ys = 0;  
  xs = point2.x - point1.x;  
  xs = xs * xs;  
  ys = point2.y - point1.y;  
  ys = ys * ys;  
  return Math.sqrt( xs + ys );  
 }  
 Raphael.fn.connection = function (objFrom, objTo, line, bg) {  
   if (objFrom.line &amp;amp;&amp;amp; objFrom.from &amp;amp;&amp;amp; objFrom.to) {  
     line = objFrom;  
     objFrom = line.from;  
     objTo = line.to;  
   }  
   var bb1 = objFrom.getBBox(),  
     bb2 = objTo.getBBox();  
     var obj1freeNodes = objFrom.data(&#39;freeNodes&#39;);  
     var obj2freeNodes = objTo.data(&#39;freeNodes&#39;);  
     var p = [];  
     obj1freeNodes.forEach(function (el) {  
     p.push(el);  
    })  
     obj2freeNodes.forEach(function (el) {  
     p.push(el);  
    })  
     var distance = [], d = {};  
     for (var i = 0; i &amp;lt;obj1freeNodes.length; i++) {  
     for (var j = obj1freeNodes.length; j &amp;lt;p.length; j++) {  
        var point1 = {x:p[i].x, y: p[i].y};  
        var point2 = {x:p[j].x, y: p[j].y};  
       if ((i == j - 4) || (((i != 3 &amp;amp;&amp;amp; j != 6) || p[i].x &amp;lt; p[j].x) &amp;amp;&amp;amp; ((i != 2 &amp;amp;&amp;amp; j != 7) || p[i].x &amp;gt; p[j].x) &amp;amp;&amp;amp; ((i != 0 &amp;amp;&amp;amp; j != 5) || p[i].y &amp;gt; p[j].y) &amp;amp;&amp;amp; ((i != 1 &amp;amp;&amp;amp; j != 4) || p[i].y &amp;lt; p[j].y))) {  
         distance.push(lineDistance(point1, point2));  
        d[distance[distance.length - 1]] = [i, j];  
       }  
     }  
   }  
     if (distance.length == 0) {  
      var res = [0, obj1freeNodes.length];  
    } else {  
      res = d[Math.min.apply(Math, distance)];  
    }  
    var x1 = p[res[0]].x,  
      y1 = p[res[0]].y,  
      x4 = p[res[1]].x,  
      y4 = p[res[1]].y;  
    //remove to connecting point  
    for(var i=0;i&amp;lt;obj1freeNodes.length; i++){  
    if(i== res[0]){  
      obj1freeNodes.splice(i,1);   
     }  
    }  
    for(var i=0;i&amp;lt;obj2freeNodes.length; i++){  
    if(i == (res[1]-obj1freeNodes.length-1)){  
      obj2freeNodes.splice(i,1);   
     }  
    }  
   objFrom.data(&#39;freeNodes&#39;, obj1freeNodes);  
   objTo.data(&#39;freeNodes&#39;, obj2freeNodes);  
   p = [];  
     var path = [&quot;M&quot;, x1.toFixed(3), y1.toFixed(3), &quot;L&quot;, /*x2, y2, x3, y3,*/ x4.toFixed(3), y4.toFixed(3)].join(&quot;,&quot;);  
   if (line &amp;amp;&amp;amp; line.line) {  
     line.bg &amp;amp;&amp;amp; line.bg.attr({path: path});  
     line.line.attr({path: path});  
   } else {  
     var color = typeof line == &quot;string&quot; ? line : &quot;#000&quot;;  
           var conLine = this.path(path).attr({  
          stroke: color,  
          fill: &quot;none&quot;,  
          &quot;arrow-end&quot;: &quot;block-wide-long&quot;,  
          &quot;stroke-width&quot;: 3,  
          });  
           pathObj = {  
        bg: bg &amp;amp;&amp;amp; bg.split &amp;amp;&amp;amp; this.path(path).attr({  
          stroke: bg.split(&quot;|&quot;)[0],  
          fill: &quot;none&quot;,  
          &quot;stroke-width&quot;: bg.split(&quot;|&quot;)[1] || 3  
        }),  
        line: conLine,  
        from: objFrom,  
        to: objTo,  
      };  
      return pathObj;  
   }  
 };  
 Raphael.el.getNodes = function()  
   {  
    //calculate the element nodes and return them  
    var obj = this.getBBox();  
    var objX = parseInt(obj.x);  
    var objY = parseInt(obj.y);  
    var objWidth = parseInt(obj.width);  
    var objHeight = parseInt(obj.height);  
    var maxCons = 8;  
    var scaleCut = 10;  
    var topPositions = [], rightPositions = [], bottomPositions = [], leftPositions = [];  
    //get all possible connectors based on maxCons and scaleCut  
   var objCons = [];  
   for(var i= 0; i&amp;lt;maxCons; i++){  
     topPositions.push({x: (objX + ((objWidth-scaleCut)/maxCons)*i)+i*2, y: objY-1});  
     rightPositions.push({x: objX + objWidth + 1, y: (objY + ((objHeight-scaleCut)/maxCons)*i)+i*2});  
     bottomPositions.push({x: ((objX+3) + ((objWidth-(scaleCut-2))/maxCons)*i)+i*2, y: objY + objHeight +1});  
     leftPositions.push({x: objX - 1, y: ((objY+4) + ((objHeight-(scaleCut+1))/maxCons)*i)+i*2});    
    }  
    // push all positions to objCons array   
   pushArryToArray(topPositions, objCons);  
   pushArryToArray(rightPositions, objCons);  
   pushArryToArray(bottomPositions, objCons);  
   pushArryToArray(leftPositions, objCons);  
   //this.data(&#39;freeNodes&#39;,objCons);  
    return objCons;  
   }  
 //pushes one array contents to another array  
 var pushArryToArray = function(sourceArr, targetArr){  
  for(var i=0; i&amp;lt;sourceArr.length;i++){  
    // draw connecting points  
    // R.circle(sourceArr[i].x,sourceArr[i].y,2).attr({&#39;fill&#39;:&#39;red&#39;, &#39;stroke&#39;:&#39;none&#39;});  
    targetArr.push(sourceArr[i]);  
   }  
 }  
 var R = Raphael(&quot;canvas&quot;,&quot;400&quot;,&quot;400&quot;);  
 //window.onload = function() {  
 start = function() {  
     this.ox = this.attr(&quot;x&quot;);  
     this.oy = this.attr(&quot;y&quot;);  
     this.animate({  
       opacity: .75  
     }, 500, &quot;&amp;gt;&quot;);  
 }  
 move = function(dx, dy) {  
  this.attr({  
      x: this.ox + dx,  
      y: this.oy + dy  
     });  
   //on moving events reintializing free nodes of all events   
   for(var i = 0; i&amp;lt;arrAllEvents.length; i++){  
      arrAllEvents[i].data(&#39;freeNodes&#39;, arrAllEvents[i].getNodes());  
     }  
   //rendering connections on event move  
   for (var i = connections.length; i--;) {  
     R.connection(connections[i]);  
   }  
    R.safari();  
 }  
 up = function() {  
 }  
 var eventOne = R.rect(10,10,100, 100).attr({  
       fill: Raphael.getColor(),  
       stroke: &quot;none&quot;,  
       cursor: &quot;move&quot;  
     });  
 var eventTwo = R.rect(220,10,100, 100).attr({  
       fill: Raphael.getColor(),  
       stroke: &quot;none&quot;,  
       cursor: &quot;move&quot;  
     });  
 var eventThree = R.rect(220,220,100, 100).attr({  
       fill: Raphael.getColor(),  
       stroke: &quot;none&quot;,  
       cursor: &quot;move&quot;  
     });  
 //intializing free connecting nodes 1st time  
 eventOne.data(&#39;freeNodes&#39;, eventOne.getNodes());  
 eventTwo.data(&#39;freeNodes&#39;, eventTwo.getNodes());  
 eventThree.data(&#39;freeNodes&#39;, eventThree.getNodes());  
 //storing all events in array  
 var arrAllEvents = []  
 arrAllEvents.push(eventOne);  
 arrAllEvents.push(eventTwo);  
 arrAllEvents.push(eventThree);  
 //to draw the connections b/w events  
 var connections = [];  
 connections.push(R.connection(eventOne, eventTwo, Raphael.getColor()));  
 connections.push(R.connection(eventOne, eventTwo, Raphael.getColor()));  
 connections.push(R.connection(eventOne, eventTwo, Raphael.getColor()));  
 connections.push(R.connection(eventOne, eventThree, Raphael.getColor()));  
 connections.push(R.connection(eventOne, eventThree, Raphael.getColor()));  
 //dragging events  
 for(var i = 0; i&amp;lt;arrAllEvents.length; i++){  
      arrAllEvents[i].drag(move, start, up);  
     }  
 //}  
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://jsfiddle.net/ShahzadMirza/bYe4u/3/embedded/result/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;View it on Jsfiddle&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Please let me know about my this effort, or to make it much more useful.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/5903738287860853247/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2014/04/how-to-add-more-than-one-connection.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5903738287860853247'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5903738287860853247'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2014/04/how-to-add-more-than-one-connection.html' title='How to add more than one connection between two raphael rectangles by modifying graffle.js'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVeEUcmyobFcnHReP5Wc7wPhc7bNaRPgCF1j4F5Cm94yaVq2F0bMWHEqVBvrfy0-xQbAML46bjXdBB2ajq9V7k3lZtqnBzMhTvyrasLuJpp7xaoDiAP99n7lWKQHLoD1bjmvQOe-2liumd/s72-c/blogger_post.PNG" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-6908603206101215811</id><published>2013-11-24T02:41:00.001-08:00</published><updated>2013-11-24T02:41:44.016-08:00</updated><title type='text'>How to add Bootstrap in Yii Framework</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0IXVHLjoam_MUDA7WXSd3U8f6IRIF99bRt48WVQEbfq69hJExXlTgnGGXdc6Ty_buzNYF8aTuuXnNxu2ujvI-1wtNtWkxErKsVwIkoasgY_loyyIqH3zwi-usZrxd9vrg7H8xvWekyG28/s1600/yii-bootstrap-banner.png&quot; imageanchor=&quot;1&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0IXVHLjoam_MUDA7WXSd3U8f6IRIF99bRt48WVQEbfq69hJExXlTgnGGXdc6Ty_buzNYF8aTuuXnNxu2ujvI-1wtNtWkxErKsVwIkoasgY_loyyIqH3zwi-usZrxd9vrg7H8xvWekyG28/s1600/yii-bootstrap-banner.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
As bootstrap the most famous CSS framework in web designing and in the parallel side i-e web development the king of frameworks is Yii framework as it is fast and most secure one amongst others, anyone with the knowledge of both would surly like to combine the power of both in many projects but there are others which want to experiment or some are just the beginners in both, well you have came to right place. Enough talk lets roll it.&lt;br /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
Requirements:&lt;/h2&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Yii Framework (&lt;a href=&quot;http://www.yiiframework.com/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download Now&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Bootstrap Extension (&lt;a href=&quot;http://www.yiiframework.com/extension/bootstrap/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download Now&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
i will be assuming that you have installed and configured the Yii framework, if not then let me know i will write a post on how to install/configure Yii and get started with it.&lt;br /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
Step 1:&lt;/h2&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&amp;nbsp;Extract all the files from the Bootstrap compressed file into your applications protected/extensions/bootstrap directory.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
Step 2:&lt;/h2&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
Open main.php from protected/config directory in any text editor like notepad++. in the very beginning of the file you will find this:&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;pre&gt;// uncomment the following to define a path alias
// Yii::setPathOfAlias(&#39;local&#39;,&#39;path/to/local-folder&#39;);&lt;/pre&gt;
&lt;div&gt;
&lt;/div&gt;
Type this under these lines:
&lt;br /&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;pre&gt;Yii::setPathOfAlias(&#39;bootstrap&#39;, dirname(__FILE__).&#39;/../extensions/bootstrap&#39;);&lt;/pre&gt;
&lt;div&gt;
&lt;/div&gt;
now scroll down and you will find
&lt;br /&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;pre&gt;        // application components
	&#39;components&#39;=&amp;gt;array(
		&#39;user&#39;=&amp;gt;array(
			// enable cookie-based authentication
			&#39;allowAutoLogin&#39;=&amp;gt;true,
		),
.........&lt;/pre&gt;
&lt;div&gt;
&lt;/div&gt;
and in the components array add this:
&lt;br /&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;pre&gt;&#39;bootstrap&#39;=&amp;gt;array(
			&#39;class&#39;=&amp;gt;&#39;bootstrap.components.Bootstrap&#39;,
		   ),&lt;/pre&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;/div&gt;
like this:
&lt;br /&gt;
&lt;pre&gt;        // application components
	&#39;components&#39;=&amp;gt;array(
		&#39;user&#39;=&amp;gt;array(
			// enable cookie-based authentication
			&#39;allowAutoLogin&#39;=&amp;gt;true,
		),
		&#39;bootstrap&#39;=&amp;gt;array(
			&#39;class&#39;=&amp;gt;&#39;bootstrap.components.Bootstrap&#39;,
		   ),&lt;/pre&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
Step 3:&lt;/h2&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
Now the final Step, open the main.php located at protected/view/layouts and add the following line right before the closing head tag (&amp;lt;/head&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;lt;?php Yii::app()-&amp;gt;bootstrap-&amp;gt;register(); ?&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
Now you are good to go...&lt;br /&gt;
&lt;br /&gt;
&lt;h2 style=&quot;text-align: left;&quot;&gt;
Example:&lt;/h2&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
To use the Bootstrap fixed navbar in your project, open the main.php located at protected/view/layouts and find the main menu div which has id of &quot;mainmenu&quot; and replace its inner code with the following code. Voila! you have the Bootstrap fixed navigation menu now installed in your project.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;pre&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;?php $this-&amp;gt;widget(&#39;bootstrap.widgets.TbNavbar&#39;,array(
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&#39;type&#39;=&amp;gt;&#39;inverse&#39;,
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&#39;items&#39;=&amp;gt;array(
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&#39;class&#39;=&amp;gt;&#39;bootstrap.widgets.TbMenu&#39;,
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&#39;items&#39;=&amp;gt;array(
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(&#39;label&#39;=&amp;gt;&#39;Home&#39;, &#39;url&#39;=&amp;gt;array(&#39;/site/index&#39;)),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(&#39;label&#39;=&amp;gt;&#39;Test&#39;, &#39;url&#39;=&amp;gt;array(&#39;test/test&#39;)),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(&#39;label&#39;=&amp;gt;&#39;About&#39;, &#39;url&#39;=&amp;gt;array(&#39;/site/page&#39;, &#39;view&#39;=&amp;gt;&#39;about&#39;)),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(&#39;label&#39;=&amp;gt;&#39;Contact&#39;, &#39;url&#39;=&amp;gt;array(&#39;/site/contact&#39;)),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&#39;class&#39;=&amp;gt;&#39;bootstrap.widgets.TbMenu&#39;,
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&#39;htmlOptions&#39;=&amp;gt;array(&#39;class&#39;=&amp;gt;&#39;pull-right&#39;),&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; Bottons appears at the right side of the Navigation Bar.
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&#39;items&#39;=&amp;gt;array(
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(&#39;label&#39;=&amp;gt;&#39;login&#39;, &#39;url&#39;=&amp;gt;array(&#39;/site/login&#39;), &#39;visible&#39;=&amp;gt;Yii::app()-&amp;gt;user-&amp;gt;isGuest),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;array(&#39;label&#39;=&amp;gt;&#39;Logout (&#39;.Yii::app()-&amp;gt;user-&amp;gt;name.&#39;)&#39;, &#39;url&#39;=&amp;gt;array(&#39;/site/logout&#39;), &#39;visible&#39;=&amp;gt;!Yii::app()-&amp;gt;user-&amp;gt;isGuest)
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;),
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;)); ?&amp;gt;

&lt;/pre&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
You can customize most of the elements in your Yii project with this extension. To get more into the Yii Bootstrap visit &lt;a href=&quot;http://www.cniska.net/yii-bootstrap/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Yii-Bootstrap&lt;/a&gt; site to get the codes of more components and how to use them. You can use the &lt;a href=&quot;http://www.yiiframework.com/forum/index.php?/topic/23982-extension-bootstrap/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Yii-Bootstrap discussion forum&lt;/a&gt; at Yii to get to know more and discuss any issues you might have with Yii-Bootstrap.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
If you liked this post or this was helpful to you subscribe my blog to get more interesting topics.&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/6908603206101215811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2013/11/how-to-add-bootstrap-in-yii-framework.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6908603206101215811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6908603206101215811'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2013/11/how-to-add-bootstrap-in-yii-framework.html' title='How to add Bootstrap in Yii Framework'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0IXVHLjoam_MUDA7WXSd3U8f6IRIF99bRt48WVQEbfq69hJExXlTgnGGXdc6Ty_buzNYF8aTuuXnNxu2ujvI-1wtNtWkxErKsVwIkoasgY_loyyIqH3zwi-usZrxd9vrg7H8xvWekyG28/s72-c/yii-bootstrap-banner.png" height="72" width="72"/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-2615699691220859616</id><published>2013-09-13T08:25:00.000-07:00</published><updated>2013-09-16T05:13:00.723-07:00</updated><title type='text'>GTA V XBOX 360 Leaked on torrent site ahead of official release</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlqTK85piT79aWC86QaFaoGJJ8_jQ4RVhgWhjDhdkS1uZFnNZFBX13TATKzFYS50GRPdUL9HRO4Cpopwswc6cHOKVbYZUXJVsn6yodjpni1B8oFmEEer0hTVQAJmfuO4NChItwKyyeV7Xt/s1600/5NtLe7J.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlqTK85piT79aWC86QaFaoGJJ8_jQ4RVhgWhjDhdkS1uZFnNZFBX13TATKzFYS50GRPdUL9HRO4Cpopwswc6cHOKVbYZUXJVsn6yodjpni1B8oFmEEer0hTVQAJmfuO4NChItwKyyeV7Xt/s1600/5NtLe7J.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhR_PzDvO6TnNpvDsqsnfUh9z0hYy8gphy0pJEpql9-W7oBA6r-G9hn3capJmGxKkuDkf2LMY6U8pgF7RkfPi0wZ7xNR7fGFR35fQ9GCVrhj58AOb7vS7rxT5w4CSUnVTELw27s-J27xczO/s1600/2DJEOEX.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;438&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhR_PzDvO6TnNpvDsqsnfUh9z0hYy8gphy0pJEpql9-W7oBA6r-G9hn3capJmGxKkuDkf2LMY6U8pgF7RkfPi0wZ7xNR7fGFR35fQ9GCVrhj58AOb7vS7rxT5w4CSUnVTELw27s-J27xczO/s640/2DJEOEX.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
I can&#39;t believe it the most anticipated game of 2013 GTA V is poping up on torrent sites ahead of its official release and by the comments and images posted by the downloaders (leachers) has confirmed that the copy is legit. the official release date for the GTA V is 17 september. Earlier today on the internet i stumbled upon a post in which one guy was claiming that a store at his town was willing to sell GTA V ahead of its release for about 90 Dollars.&lt;br /&gt;
&lt;br /&gt;
the sites i have found the torrents on had shared some of the in game screen shots here check them out:&lt;br /&gt;
&lt;br /&gt;
http://i.imgur.com/iRX73XZ.jpg&lt;br /&gt;
http://i.imgur.com/vYiu6Fl.jpg&lt;br /&gt;
&lt;br /&gt;
Gameplay Videos: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;//www.youtube.com/embed/B0dzQ5Tu6Bs&quot; width=&quot;420&quot;&gt;&lt;/iframe&gt;

&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;//www.youtube.com/embed/KaYcfL5ZJOA&quot; width=&quot;420&quot;&gt;&lt;/iframe&gt;
&lt;br /&gt;
&lt;br /&gt;
4 hours long gameplay Video : &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; width=&quot;480&quot; height=&quot;270&quot; src=&quot;http://www.dailymotion.com/embed/video/x14qfc6&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;a href=&quot;http://www.dailymotion.com/video/x14qfc6_gta-v-german-09-15_videogames&quot; target=&quot;_blank&quot;&gt;GTA V - German 09/15&lt;/a&gt; &lt;i&gt;by &lt;a href=&quot;http://www.dailymotion.com/GameCreds&quot; target=&quot;_blank&quot;&gt;GameCreds&lt;/a&gt;&lt;/i&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/2615699691220859616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2013/09/gta-v-xbox-360-leaked-on-torrent-site.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/2615699691220859616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/2615699691220859616'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2013/09/gta-v-xbox-360-leaked-on-torrent-site.html' title='GTA V XBOX 360 Leaked on torrent site ahead of official release'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlqTK85piT79aWC86QaFaoGJJ8_jQ4RVhgWhjDhdkS1uZFnNZFBX13TATKzFYS50GRPdUL9HRO4Cpopwswc6cHOKVbYZUXJVsn6yodjpni1B8oFmEEer0hTVQAJmfuO4NChItwKyyeV7Xt/s72-c/5NtLe7J.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-1100735593225970389</id><published>2009-09-07T20:03:00.000-07:00</published><updated>2009-09-07T20:05:46.945-07:00</updated><title type='text'>Apple iTablet concepts that are guaranteed to make you drool.</title><content type='html'>&lt;p&gt;&lt;img class=&quot;alignnone size-full wp-image-25322&quot; title=&quot;apple-table-ipad-itablet-macbook-touch7-600x431&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch7-600x4311.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;431&quot; width=&quot;600&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-large wp-image-25323&quot; title=&quot;apple-table-ipad-itablet-macbook-touch8&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch81-600x397.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;397&quot; width=&quot;600&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-25324&quot; title=&quot;apple-table-ipad-itablet-macbook-touch9&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch9.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;449&quot; width=&quot;600&quot; /&gt;&lt;span style=&quot;margin-left: -51px; margin-top: -57px; opacity: 0.0046931;&quot; class=&quot;smarterwiki-popup-bubble&quot;&gt;&lt;span class=&quot;smarterwiki-popup-bubble-body&quot;&gt;&lt;span class=&quot;smarterwiki-popup-bubble-links smarterwiki-clearfix&quot;&gt;&lt;span class=&quot;smarterwiki-popup-bubble-links-row smarterwiki-clearfix&quot;&gt;&lt;a linkindex=&quot;22&quot; target=&quot;_blank&quot; title=&quot;Search Twitter&quot; href=&quot;http://search.twitter.com/search?q=Apple%20iTablet%20concepts%20that%20are%20guaranteed%20to%20make%20you%20drool.&quot; class=&quot;smarterwiki-popup-bubble-link&quot;&gt;&lt;img src=&quot;http://twitter.com/favicon.ico&quot; alt=&quot;&quot; class=&quot;smarterwiki-popup-bubble-link-favicon&quot; /&gt;&lt;/a&gt;&lt;a linkindex=&quot;23&quot; target=&quot;_blank&quot; title=&quot;Search Google&quot; href=&quot;http://www.google.com/search?q=Apple%20iTablet%20concepts%20that%20are%20guaranteed%20to%20make%20you%20drool.&quot; class=&quot;smarterwiki-popup-bubble-link&quot;&gt;&lt;img src=&quot;http://www.google.com/favicon.ico&quot; alt=&quot;&quot; class=&quot;smarterwiki-popup-bubble-link-favicon&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;smarterwiki-popup-bubble-links-row smarterwiki-clearfix&quot;&gt;&lt;a linkindex=&quot;24&quot; target=&quot;_blank&quot; title=&quot;Search Wikipedia&quot; href=&quot;http://smarterfox.com/wikisearch/search?q=Apple%20iTablet%20concepts%20that%20are%20guaranteed%20to%20make%20you%20drool.&amp;amp;locale=en-US&quot; class=&quot;smarterwiki-popup-bubble-link&quot;&gt;&lt;img src=&quot;http://static.smarterfox.com/media/wiki-favicon-sharpened.png&quot; alt=&quot;&quot; class=&quot;smarterwiki-popup-bubble-link-favicon&quot; /&gt;&lt;/a&gt;&lt;a linkindex=&quot;25&quot; target=&quot;_blank&quot; title=&quot;Search OneRiot&quot; href=&quot;http://www.oneriot.com/search?p=smarterfox&amp;amp;ssrc=smarterfox_popup_bubble&amp;amp;spid=8493c8f1-0b5b-4116-99fd-f0bcb0a3b602&amp;amp;q=Apple%20iTablet%20concepts%20that%20are%20guaranteed%20to%20make%20you%20drool.&quot; class=&quot;smarterwiki-popup-bubble-link&quot;&gt;&lt;img src=&quot;http://static.smarterfox.com/media/popup_bubble/oneriot-favicon.ico&quot; alt=&quot;&quot; class=&quot;smarterwiki-popup-bubble-link-favicon&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;smarterwiki-popup-bubble-tip&quot;&gt;&lt;/span&gt;&lt;/span&gt; &lt;img class=&quot;alignnone size-full wp-image-25325&quot; title=&quot;apple-table-ipad-itablet-macbook-touch10&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch10.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;449&quot; width=&quot;600&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-25326&quot; title=&quot;apple-table-ipad-itablet-macbook-touch11&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch11.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;356&quot; width=&quot;600&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-25327&quot; title=&quot;apple-table-ipad-itablet-macbook-touch12&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch12.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;715&quot; width=&quot;600&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-25328&quot; title=&quot;apple-table-ipad-itablet-macbook-touch13&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch13.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;697&quot; width=&quot;600&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-25329&quot; title=&quot;apple-table-ipad-itablet-macbook-touch15&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch15.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;518&quot; width=&quot;600&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-25329&quot; title=&quot;apple-table-ipad-itablet-macbook-touch15&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch15.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;518&quot; width=&quot;600&quot; /&gt;&lt;/p&gt; &lt;img class=&quot;alignnone size-full wp-image-25330&quot; title=&quot;apple-table-ipad-itablet-macbook-touch14&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch14.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;723&quot; width=&quot;600&quot; /&gt; &lt;div style=&quot;text-align: left;&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-25331&quot; title=&quot;apple-table-ipad-itablet-macbook-touch16&quot; src=&quot;http://thenextweb.com/files/2009/09/apple-table-ipad-itablet-macbook-touch16.jpg&quot; alt=&quot;Apple iTablet concepts that are guaranteed to make you drool.&quot; height=&quot;829&quot; width=&quot;600&quot; /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/1100735593225970389/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/09/apple-itablet-concepts-that-are.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/1100735593225970389'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/1100735593225970389'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/09/apple-itablet-concepts-that-are.html' title='Apple iTablet concepts that are guaranteed to make you drool.'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-1433470960813337276</id><published>2009-08-24T22:07:00.000-07:00</published><updated>2009-08-24T22:08:17.318-07:00</updated><title type='text'>Robotics</title><content type='html'>&lt;p style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;Scientists, students and entire corporations from the entire world continue to work in the sphere of robot technology, constantly improving and refreshing the possibilities of robots, their interfaces and role in the society. Pilotless machines fly above the war zones, tele-robots create the effect of the presence of man, and robots -[gumanoidy] increasingly more are similar to the people, because of their more [usovershenstvovann ym] motions and answers. &lt;/p&gt;  &lt;p style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;In today&#39;s release the fresh photographs of the robots, utilized throughout the world, are assembled.  But here it is possible to see the photographs of annual remoteness.&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;1. &lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r22_1831-800x590.jpg&quot; height=&quot;590&quot; width=&quot;800&quot; /&gt;&lt;/p&gt;  &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r01_1953.jpg&quot; height=&quot;663&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;1. photograph of the robot of iCub, made on July 1, 2009 during the presentation in the research institute Of [bron] under Leon, who is the aspect of the European project â€œRobot Of cubâ€�. Robots of iCub by increase approximately from the three year child with the sufficiently rapid hands, the completely mobile eyes and the head. They know how to hear, to walk on all fours, to sit, and they also have â€œa feelingâ€� of touch. (FRED Of dUFOUR/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt; &lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;2. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r02_1952.jpg&quot; height=&quot;657&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;2. Japanese of scientist- robot technology establish their service robot â€œOf eraserâ€� on June 30, 2009 on the eve of the competition â€œOf roboCupâ€�, the largest in the world event, dedicated to robots, in which participates 408 commands of 2 300 scientists and students, Graz city, Austria. Gerald [Shtaynbauer] , the organizer of event, says that his purpose - to do so that the engineers could create the command of the robots by 2050, which can win in champion of peace of the football acting on that moment.. (DIETER Of nAGL/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt; &lt;a title=&quot; nOn-$toP Entertainment Only @  Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;3. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r03_1922.jpg&quot; height=&quot;665&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;3. Photograph is made on April 3 this year; this is the fin â€œof the tailâ€� of robot, whose actions are dictated by microprocessors, which are located in the plastic container, robot itself is located in the scientific laboratory of John Long into [Pafkipsi], state of New York. Long consists of the small group of researchers from the entire world, robots created, which can float in the water or climb to the coast in order to help in the study of questions of biology and evolution. Scientists assume that the technological improvements with each year make possible for robots increasingly more to imitate the actions of biological essences. (AP Of photo/Mike Of groll)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;4.. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r04_1931.jpg&quot; height=&quot;651&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;4. American servicemen from the second sea expeditionary brigade they learn how to use robot in search of the improvised explosive objects during the training in the camp Of [lezernek] in the Afghan province Of [gilmend], on Tuesday June 9, 2009. (AP of David Guttenfelder&#39; s Photo/)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;5. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r05_1908.jpg&quot; height=&quot;660&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;5. Visitors were gathered around the woman- robot on the exhibition of science and technologies in Peking on May 20, 2009. China noticeably increases its investments into the region of studies and development of technologies, since the fund for Chinese [sponsorstva] increased by 18% in the last 5 years. (STR/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;6. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r06_1944.jpg&quot; height=&quot;646&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;6. The hand of robot is used for the production of silicone plate in the special illuminated and sterile room at the plant for the production of semiconductor tools in Texas, on Tuesday June 16, 2009. (Jason Of janik/Bloomberg Of news)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;7. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r07_1948.jpg&quot; height=&quot;682&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;7. 20-year Brazilian student, who studies computer engineering, Gabriel [Franchishini] tune the robot, made for the game into the football before the competitions â€œRoboCupâ€� at the engineering university FEI into [Sao] of Bernardo to Campo, Brazil, on June 26, 2009. (MAURICIO Of lIMA/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;8. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r08_1951.jpg&quot; height=&quot;700&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;8. Beverly&#39;s hospital, the state of Massachusetts: doctor Timothy [Lishing] consults patient with the aid of the robot on June 29, 2009. Itself doctor [Lishing] prophesies from the clinic Of [lakhey] to [Burlingtone] , Massachusetts, in 32 km to the West from this place. (Suzanne Of kreiter/Globe of staff)&lt;/div&gt; &lt;/div&gt;&lt;span style=&quot;font-family: trebuchet ms;&quot;&gt;9.  &lt;/span&gt;&lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r09_1952.jpg&quot; height=&quot;582&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;9. Visitor stands before the model of the heads of robots from different films on the exhibition â€œRobots - From Of motion to Of emotionâ€� (robots - from the motions to the emotions) in the museum â€œof fÃ¼r Of gestaltungâ€� (museum design) in Zurich, Switzerland, on June 30, 2009. (REUTERS/Arnd Of wiegmann)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;10. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r10_1931.jpg&quot; height=&quot;683&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;10. Japanese company ZMP presents platforms for automobile studies on a scale 1 to 10, and also development by the name â€œRoboCar Zâ€� during the press conference in Tokyo on June 9, 2009. Small machines with the set of sensors were made for study and development of autonomous driving, safety and technologies, which economize energy, and also for the instruction of engineers. (TORU Of yAMANAKA/AFP/ Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;11. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r11_1952.jpg&quot; height=&quot;659&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;11. The group of students -[robotekhnikov] establishes â€œfootballâ€� robot on June 30, 2009 on the eve of the largest event, dedicated to robots, the competitions â€œOf roboCupâ€� in the Austrian city Graz. (DIETER Of nAGL/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;12.. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r12_1931.jpg&quot; height=&quot;822&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;12. Robot- cook â€œOkonomiyaki Of robotâ€� spills ingredients for [okonomiyaki] (Japanese variety of pastry) to the incandescent frying pan during the demonstration on the international exhibition of technologies and mechanical robot- cooks in Tokyo, Japan, on Tuesday June 9, 2009. Robot -[okonomiyaki] , developed by the specialist of company â€œToyo Of riki Co. â€�, it can demonstrate entire process of the preparation of [okonomiyaki] : to mix ingredients in the basin, to pour out them to the frying pan, to overturn with the aid of the blade and tax on the plate, and to also ask you, with what sauce or other additives you would want your portion. (AP Of photo/Koji Of sasahara)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;13. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r13_1955.jpg&quot; height=&quot;675&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;13. Participants in the competition and their robots -[gumanoidy] are prepared at the beginning football match on the competitions â€œOf roboCup 2009â€� in the Austrian city Graz, on July 3, 2009. (REUTERS/Leonhard Of foeger)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;14. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r14_1955.jpg&quot; height=&quot;632&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;14. Robots -[gumanoidy] compete in the football match during the championship â€œRoboCup 2009â€� on July 3, 2009. (REUTERS/Leonhard Of foeger)&lt;/div&gt;&lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;15. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r15_1954.jpg&quot; height=&quot;694&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;15. Working- rescuers govern the robot â€œof T -53 Of enryuâ€�, developed by Japanese company â€œTmsukâ€� for the selection of fragments, during the demonstration of robot in [Kitakyushu] city on the prefecture Of [fukuoka], western Japan, on July 3, 2009. Fire department [Kitakyushu] accepted in its numbers of robot into 2 meters as height and weighing 3 tons, which it is possible to govern by hand from within, and it is also remote in order to raise heavy objects by two hands. (STR/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;16. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r16_1954.jpg&quot; height=&quot;630&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;16. the Robot- field engineer of American army approaches the improvised explosive object on the road not far from the military post Of [konlon] in the mountains of the Afghan province Of [vardak], on July 2, 2009. (REUTERS/Shamil Of zhumatov)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;17. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r17_1955.jpg&quot; height=&quot;637&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;17. Robots before beginning football match during the championship â€œOf roboCup 2009â€� in the Austrian city Graz, on July 3, 2009. (REUTERS/Leonhard Of foeger)&lt;/div&gt;&lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;18. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r18_1995.jpg&quot; height=&quot;588&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;18. Prototype â€œX -47b Navy Of unmanned Of combat Of air Of systemâ€� (pilotless Airforce system OF THE X -47b) on the exhibition at the Naval station Of [pakkh] Of [river] Webster into [Seynt] Of [inigos], Maryland, on August 10, 2009. X -47b, created by corporation Northrop Of grumman, was built for the demonstration of the first landings and returns of aircraft on the air base. (JIM Of wATSON/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;19. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r19_1945.jpg&quot; height=&quot;611&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;19. The robot -[gumanoid] â€œOF KOBIANâ€� expresses surprise during the demonstration at the university Of [vaseda] in Tokyo, Japan, on Tuesday June 23, 2009. â€œKOBIANâ€�, which can express 7 programmed emotions with the aid of entire body, including the expressions of face, was developed by the researchers of the elder school of science and engineering with the institute Of [vaseda] headed by [Atsuo] [Takanashi] and by the company â€œTmsukâ€�, whose headquarters is located into [Kitakyushu] , South Japan. (AP Of photo/Shizuo Of kambayashi)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @  Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;20. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r20_1955.jpg&quot; height=&quot;684&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;20. Adolescents prepare their robots for the idea during the championship â€œRoboCup 2009â€� on July 3, 2009. (REUTERS/Leonhard Of foeger)&lt;/div&gt;&lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;21. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r21_1985.jpg&quot; height=&quot;648&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;21. In this photograph, made on July 28, 2009, a participant in the largest on-line festival of the electronic entertainments Of campus Of party checks his robot. Valencia, Spain. (DIEGO Of tUSON/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;23. &lt;/a&gt; &lt;p style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r22_1831.jpg&quot; height=&quot;731&quot; width=&quot;990&quot; /&gt; &lt;/p&gt;  &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r23_1975.jpg&quot; height=&quot;660&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;23. The robot -[gumanoid] HRP-4C â€œOf miimâ€� represents wedding dress from the Japanese designer By [yumi] Of [katsura] during the [feshn]- show â€œcollection Paris grandee 2009â€� from By [yumi] Of [katsury] in osaka, western Japan, on July 22, 2009. (REUTERS/Toru Of hanai)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;24. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r24_1957.jpg&quot; height=&quot;658&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;24. Iraqi soldier passes by robot- field engineer on the remote control in the military camp [Besmaya] in the outskirts of the capital Baghdad on July 5, 2009. The Iraqi school of field engineers trains about 900 technicians per year. (AHMAD Al -RUBAYE/AFP/ Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;25. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r25_1967.jpg&quot; height=&quot;734&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;25. Below in this photograph on the blue platform is located the head of silkworm together with the brain and by antenna, the electrodes are supplied to the brain, connecting it with the machine during the experiment in the laboratory of Tokyo on June 9, 2009. Japanese scientists in the research center of the Tokyo university of the moved sciences and technologies revealed that the commands of motor, sent to machine in response to the pulses of smell can be transferred into the signals for control of machine in the real time, this discovery was made during the experiment on the creation of the hybrid of insect and machine. In the future, possibly, the technicians will succeed in letting out the flock of the robot- gnats, that will be capable are capable of sensing narcotics at a distance. (YOSHIKAZU Of tSUNO/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;26. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r26_1908.jpg&quot; height=&quot;680&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;26. Visitors are enraptured by multifunctional robot- intelligence officer, controlled remotely, on the exhibition of science and technology in Peking on May 20, 2009. (STR/AFP/Getty Of images)&lt;/div&gt;&lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;27. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r27_1959.jpg&quot; height=&quot;630&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;27. The command of Italian field engineer- policemen prepares robot not far from the center of the press- accreditation of summit G8 on July 7, 2009 in [L]&#39;[Akvila] city, Italy. About 15 000 soldiers and policemen were hired for the protection of region [L]&#39;[Akvila] , where on July 8, 2009 was passed summit G8. (JOE Of kLAMAR/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;28. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r28_1848.jpg&quot; height=&quot;678&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;28. The company Of honda demonstrates its new machine- reasonable interface, and, for control of the robot ASIMO of the sufficiently only thoughts of subject. (Business Of wire)&lt;/div&gt;&lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;29. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r29_1868.jpg&quot; height=&quot;714&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;29. At the annual conference â€œOf [roboBiznes]â€� in the convention center Of [gins] of Christopher [Dellin] - the engineer -[robotekhnik] of company â€œBarrett Of technologyâ€� - it demonstrates the hands of the robot WAM Of arm on April 16, 2009. (Debee Of tlumacki/Boston Of globe)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;30. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r30_1859.jpg&quot; height=&quot;667&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;30. Modular moved armed system- robot (Modular Of advanced Of armed Of robotic Of system) - the transformed armed robot - passes checking after the walls of firm â€œQinetiQ of Miller&#39;s Foster North Of americaâ€� in [Uolteme], Massachusetts, on April 8, 2009. (Essdras M Of suarez/Globe Of staff)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;31. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r31_1932.jpg&quot; height=&quot;737&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;31. Hand- robot, created by Japanese company for the development of the robots â€œOf squseâ€�, raises the piece of land during the demonstration on the international exhibition of technologies and robot- cooks in Tokyo on June 10, 2009. (YOSHIKAZU Of tSUNO/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;32. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r32_1907.jpg&quot; height=&quot;779&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;32. The Chinese militarized policemen control the made in China robot, controlled remotely, which is capable to recognize engines, on the exhibition of police and anti-terrorist technologies and equipment, conducted in Peking, on Wednesday May 20, 2009. (AP Of photo/Andy Of wong)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;33. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r33_1990.jpg&quot; height=&quot;658&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;33. The Minister of Foreign Affairs of Germany and vice chancellor Frank- Walter [Shtaynmayer] sits next to â€œEddie&#39;s robotâ€� in the technical university in Munich, on August 5, 2009. (OLIVER Of lANG/AFP/Getty Of images)&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;34. &lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r34_1990.jpg&quot; height=&quot;661&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;&lt;span style=&quot;color:#40007f;&quot;&gt;34. Model holds robot by the name â€œBi- robotâ€� on the international exhibition of robots in [Taybee], Taiwan, on August 5, 2009. â€œBi- robotâ€� is developed and made in Taiwan, it 9 cm by height it knows how to walk, to kick ball and to wring out. It costs 12 000 new Taiwan dollars (366 American) and at the given moment it waits the approval of the Guinness book of records as the smallest robot -[gumanoid], after displacing from this post of its predecessor, whose increase was 15 cm. (REUTERS/Pichi Of chuang)&lt;/span&gt;&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai  Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:#40007f;&quot;&gt;35. &lt;/span&gt;&lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r35_1990.jpg&quot; height=&quot;764&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;&lt;span style=&quot;color:#40007f;&quot;&gt;35. Technician tunes robot during the exhibition of robots in the center of international trade Of [nankan] into [Taybee], Taiwan, on August 5, 2009. In this four-day exhibition participates by 321 exhibition copy of 91 domains of existence, which include the parts of the robots, controllers, and also robots in the sphere of formation, robot- cleaners and robot- guards. (SAM Of yEH/AFP/Getty Of images)&lt;/span&gt;&lt;/div&gt; &lt;/div&gt;&lt;a title=&quot; nOn-$toP Entertainment Only @ Mumbai Hangout&quot; style=&quot;text-decoration: none; font-family: trebuchet ms;&quot; href=&quot;http://mumbaihangout.org/rnd.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:#40007f;&quot;&gt;36. &lt;/span&gt;&lt;/a&gt; &lt;div style=&quot;color: rgb(51, 102, 255); font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot; Fun,Entertainment,Wallpapers, Videos, Jokes &amp;amp; mOre Only @ MumbaiHangout&quot; alt=&quot;Visit Us @ www.MumbaiHangOut.Org&quot; src=&quot;http://bigpicture.ru/wp-content/uploads/2009/08/r36_1990.jpg&quot; height=&quot;774&quot; width=&quot;990&quot; /&gt;  &lt;div&gt;&lt;span style=&quot;color:#40007f;&quot;&gt;36. Technician brings into order the head of robot during the exhibition of robots in the center of international trade Of [nankan] in [Taybee] on August 5, 2009. (SAM Of yEH/AFP/Getty Of images)&lt;/span&gt;&lt;/div&gt; &lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/1433470960813337276/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/robotics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/1433470960813337276'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/1433470960813337276'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/robotics.html' title='Robotics'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-8898523499144202010</id><published>2009-08-24T21:05:00.000-07:00</published><updated>2009-08-24T21:06:03.277-07:00</updated><title type='text'>Create quick animation with stick figures – Pivot</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Animation is a great way to express almost anything. Be it fun or be it a serious message and the best part of it is that people notice animations better.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Pivot is one free tool which can let you&lt;strong&gt; create professional looking animation&lt;/strong&gt; which can be converted into GIF image to be used any where you want.&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Animation creator&quot; src=&quot;http://img.technospot.net/animation-creator-pivot.gif&quot; alt=&quot;Animation creator&quot; height=&quot;419&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Animation creator&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;If you have used any flash based animator, this is similar to those tools. You can create frame by frame recording of all the movements of characters and then play it.  All stick figures will be flexible to draw and movements can be twisted as much you need them. &lt;a href=&quot;http://www.geocities.com/peter_bone_uk/pivot.html&quot; target=&quot;_blank&quot;&gt;Download Pivot&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/8898523499144202010/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/create-quick-animation-with-stick.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/8898523499144202010'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/8898523499144202010'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/create-quick-animation-with-stick.html' title='Create quick animation with stick figures – Pivot'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-50504441432634952</id><published>2009-08-24T21:04:00.000-07:00</published><updated>2009-08-24T21:05:14.817-07:00</updated><title type='text'>Zip Repair lets you extract files from corrupted or incomplete downloaded zip files</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Getting a Error while extracting a zip file is probably one of the most common error anybody would have faced when trying to extract a zip file after downloading it from Internet. This happens because of couple of reasons like incomplete download or even when file integrity is lost i.e. you don’t have the exact copy of the same file as on server.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;In situations like these software like Zip Repair can help you in extracting files which gives you an error of corrupt header or when you cannot even open a file of which download had failed.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Unlike standard extracting applications, ZIP repair doesn’t got for file integrity test and hence go ahead with extraction process. Though checking for file integrity is a very good option but at times you just need to open up the file.&lt;/p&gt; &lt;div style=&quot;width: 552px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Extract from corrupted zip files&quot; src=&quot;http://img.technospot.net/zip-repair.png&quot; alt=&quot;Extract from corrupted zip files&quot; height=&quot;587&quot; width=&quot;542&quot; /&gt;&lt;p&gt;Extract from corrupted zip files&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Once it bypasses the check and opens the zip file, you would get the list of files it can extract along with the status of the file. You might not get all the files in good state but many of them would be definitely recoverable. &lt;strong&gt;&lt;a href=&quot;http://www.diskinternals.com/zip-repair/&quot; target=&quot;_blank&quot;&gt;Download Zip Repair&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/50504441432634952/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/zip-repair-lets-you-extract-files-from.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/50504441432634952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/50504441432634952'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/zip-repair-lets-you-extract-files-from.html' title='Zip Repair lets you extract files from corrupted or incomplete downloaded zip files'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-4686335475662554445</id><published>2009-08-24T21:03:00.000-07:00</published><updated>2009-08-24T21:04:19.539-07:00</updated><title type='text'>Convert You tube video into High quality MP3 songs</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Youtube is one stop place weather you are looking for any recent videos or all time hit pop songs, however the only problem that surfs around is the amount of bandwidth required for watching the videos all the time.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Instead if you are interested to download you tube videos as MP3 songs with ID3 tag support, Dirpy Studio is an excellent service which can do this job for you.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;This online tools accepts a you tube url and then asks you to configure and edit some of the options which is required to convert and added with the MP3 songs which you would download.&lt;/p&gt; &lt;div style=&quot;width: 515px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Dirpy studio youtube to mp3&quot; src=&quot;http://img.technospot.net/dirpy-studio-youtube-to-mp3.png&quot; alt=&quot;Dirpy studio youtube to mp3&quot; height=&quot;635&quot; width=&quot;505&quot; /&gt;&lt;p&gt;Dirpy studio youtube to mp3&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Also you can opt to select part of you tube video to be converted into mp3 songs instead of complete one. This helps in trimming down extra part of the you tube video which you can skip. Check out &lt;strong&gt;&lt;a href=&quot;http://www.dirpy.com/studio.py&quot; target=&quot;_blank&quot;&gt;Dirpy Studio&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/4686335475662554445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/convert-you-tube-video-into-high.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/4686335475662554445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/4686335475662554445'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/convert-you-tube-video-into-high.html' title='Convert You tube video into High quality MP3 songs'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-602848908295590515</id><published>2009-08-24T21:02:00.000-07:00</published><updated>2009-08-24T21:03:43.206-07:00</updated><title type='text'>Backup &amp; restore Everything of any browser</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;I am a person who uses all the browser and each for different reasons. Some for just mails and some for just browsing and stumbling.  This practice also leads to scattered bookmarking which has to be retained but never need to come at one place.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;So when I do restore things back or sync between computers, I need a way to backup all my browsers settings, favorites, history, bookmarks etc which is little tough when you use 3-4 browsers.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Keeping this situation in mind, Fav Backup tool must have got built which lets you do a backup  of any browser you had been using. You can opt for restore or backup on the launch screen and then move ahead for saving or locating files.&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Backup restore any browser&quot; src=&quot;http://img.technospot.net/backup-restore-browser-details.png&quot; alt=&quot;Backup restore any browser&quot; height=&quot;498&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Backup restore any browser&lt;/p&gt;&lt;/div&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Backup restore browser option&quot; src=&quot;http://img.technospot.net/backup-restore-browser-option.png&quot; alt=&quot;Backup restore browser option&quot; height=&quot;494&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Backup restore browser option&lt;/p&gt;&lt;/div&gt; &lt;div style=&quot;width: 395px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Backup restore browser files&quot; src=&quot;http://img.technospot.net/backup-restore-browser-files.png&quot; alt=&quot;Backup restore browser files&quot; height=&quot;278&quot; width=&quot;385&quot; /&gt;&lt;p&gt;Backup restore browser files&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;However the only drawback of this software is that it doesn’t automate the process and also you need to take backup of each browser one by one.  It would have been lot better if this software can do some batch processing for both restore and  backup.  In my experience this will be a great boon for computers which are fresh installed.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;As of now it supports :&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;Internet Explorer 8, 7  and 6&lt;/li&gt;&lt;li&gt;Firefox 3.5, 3 and2&lt;/li&gt;&lt;li&gt;Opera 9&lt;/li&gt;&lt;li&gt;Safari 4 and 3&lt;/li&gt;&lt;li&gt;Google Chrome 3, 2 and 1.&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Download  &lt;a href=&quot;http://www.favbrowser.com/backup/&quot; target=&quot;_blank&quot;&gt;Fav Backup&lt;/a&gt; Via &lt;a href=&quot;http://www.nirmaltv.com/2009/08/02/back-and-restore-browser-settings-with-favbackup/&quot; target=&quot;_blank&quot;&gt;Life Rocks&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/602848908295590515/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/backup-restore-everything-of-any.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/602848908295590515'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/602848908295590515'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/backup-restore-everything-of-any.html' title='Backup &amp; restore Everything of any browser'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-2505355414314515013</id><published>2009-08-24T21:01:00.000-07:00</published><updated>2009-08-24T21:02:24.417-07:00</updated><title type='text'>Shortcut world: Find keyboard shortcuts for common applications</title><content type='html'>&lt;span style=&quot;font-family: trebuchet ms;&quot;&gt;it allows you to browse through categories. Categories are designed on the basis of application names, i.e. Chrome, Excel, Firefox, Internet Explorer,  Office, Outlook, Photoshop, PowerPoint,  Ubuntu Desktop,  VLC Media Player, Winamp, Windows, Windows Media Player, etc.&lt;/span&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/shortcut-world-perfect-resource-to-find-keyboard-shortcuts.jpg&quot; alt=&quot;shortcut world perfect resource to find keyboard shortcuts&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Keyboard Shortcuts for almost all the often used apps can be found here, I hope it gets richer with time in terms of the number of applications for which the keyboard shortcuts are mentioned here.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Try &lt;a href=&quot;http://www.shortcutworld.com/&quot; target=&quot;_blank&quot;&gt;shortcut world&lt;/a&gt;, hope you like it.&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/2505355414314515013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/shortcut-world-find-keyboard-shortcuts.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/2505355414314515013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/2505355414314515013'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/shortcut-world-find-keyboard-shortcuts.html' title='Shortcut world: Find keyboard shortcuts for common applications'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-7547236359140031355</id><published>2009-08-24T21:00:00.002-07:00</published><updated>2009-08-24T21:01:17.797-07:00</updated><title type='text'>Find sound for anything : Sound Search Engine</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;We look into the world wide web for everything right from music to images to text but have you ever searched for sounds ? No No, Not music I am talking about sounds i.e. Ever searched for a sound file which can play for you on “How alligators sound ?”&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Welcome to Find Sounds, A search engine dedicated to find a sound file for the word which you are searching which you can download or listen and tell your kids, this is how this animal would sound like.&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Find sounds for any text&quot; src=&quot;http://img.technospot.net/find-sounds.png&quot; alt=&quot;Find sounds for any text&quot; height=&quot;260&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Find sounds for any text&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Well this might not become a regular search but then when you need it this place can work better than any search engine, as this is more dedicated and works like dictionary of sound files which relates to text.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;This can also be useful in increasing your vacab and pronunciations and exploring new ways of saying things. &lt;a href=&quot;http://www.findsounds.com/types.html&quot; target=&quot;_blank&quot;&gt;Try Find Sounds&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/7547236359140031355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/find-sound-for-anything-sound-search.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/7547236359140031355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/7547236359140031355'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/find-sound-for-anything-sound-search.html' title='Find sound for anything : Sound Search Engine'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-5390642162309141143</id><published>2009-08-24T21:00:00.001-07:00</published><updated>2009-08-24T21:00:49.273-07:00</updated><title type='text'>Find your misplaced cell phone by making it ring (US and Canada only)</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Consider those scenarios, like you are sitting in your bed, watching your favorite show on the TV and somehow you get reminded to make a call, you start searching for your cell phone, or maybe you just returned from office and while entering your house you casually through your phone on the couch in the living room and later you start hunting for it as you don’t have any idea where have you kept it.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;There could be several such scenarios when you feel so helpless, and it takes a worse face when you don’t have another phone so that you can simply make your misplaced phone ring to locate it.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;‘Where’s My Cell Phone’ is a service which is damn helpful if you have misplaced your cell phone. All you have to do is, simply key in your number and click on ‘Make it Ring’, as shown below.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/wheres-my-cell-phone-key-in-the-number-to-get-your-misplaced-cell-phone-and-make-it-ring.jpg&quot; alt=&quot;where&#39;s my cell phone key in the number to get your misplaced cell phone and make it ring&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;As soon as you click on ‘Make it Ring’ your cell phone starts ringing, and so this way you can easily get it.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Later you can Tweet about it as well if you want.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;a href=&quot;http://www.wheresmycellphone.com/&quot; target=&quot;_blank&quot;&gt;Try Where’s My Cell Phone&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/5390642162309141143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/find-your-misplaced-cell-phone-by.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5390642162309141143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5390642162309141143'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/find-your-misplaced-cell-phone-by.html' title='Find your misplaced cell phone by making it ring (US and Canada only)'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-251289135115683471</id><published>2009-08-24T20:59:00.000-07:00</published><updated>2009-08-24T21:00:05.955-07:00</updated><title type='text'>Puny PNG : Reduce Image size up to 35%</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Today we found another tools called as Puny PNG which uses a &lt;a href=&quot;http://www.gracepointafterfive.com/punypng-now-supports-dirty-transparency&quot; target=&quot;_blank&quot;&gt;dirty transparency trick&lt;/a&gt; to remove additional layers which are useless.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;punny png&quot; src=&quot;http://img.technospot.net/punny-png.png&quot; alt=&quot;punny png&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Using the service is pretty is very simple. You can use the service to upload all the files and then download all of them as one zip files.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Punnypng upload&quot; src=&quot;http://img.technospot.net/punnypng-upload.png&quot; alt=&quot;Punnypng upload&quot; /&gt;You can use this service to reduce file size to greater extent, specially very large image files. Check out &lt;strong&gt;&lt;a href=&quot;http://www.gracepointafterfive.com/punypng/&quot; target=&quot;_blank&quot;&gt;Puny PNG&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/251289135115683471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/puny-png-reduce-image-size-up-to-35.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/251289135115683471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/251289135115683471'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/puny-png-reduce-image-size-up-to-35.html' title='Puny PNG : Reduce Image size up to 35%'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-3108619634850399459</id><published>2009-08-24T20:58:00.000-07:00</published><updated>2009-08-24T20:59:09.035-07:00</updated><title type='text'>you convert it: Download online videos, convert and send files, unit conversion etc.</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;‘you convert it’ is an awesome online tool which comes with a handful of tools. Using this tool you can convert files from one format to another, download online videos or convert them to desired format before downloading, it also allows you to send files to specific email addresses and unit conversions can also be done.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;As soon as you reach on the ‘you convert it’ page you come across an interface where you first need to make a choice, i.e. what do you want to use it for, as shown below.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/you-convert-it-choose-the-operation-you-want-to-perform.jpg&quot; alt=&quot;you convert it choose the operation you want to perform&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Features of ‘you convert it’ –&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;You can convert up to 5 files in one go, and the converted files can be downloaded using the download link delivered to your email address.&lt;/li&gt;&lt;li&gt;Several file formats are available under the categories, Audio, Video, Document, Archive and Image. List of available file formats is long enough, with some unheard file formats.&lt;/li&gt;&lt;li&gt;‘Convert Online Video’ tab allows you to download/convert/convert to audio or other video format and then download.&lt;/li&gt;&lt;li&gt;‘Send File(s)’ lets you upload a file up to 1000MBs and email its download link to others.&lt;/li&gt;&lt;li&gt;‘Convert Units’, several unit conversions can be done under this section, simple and easy.&lt;/li&gt;&lt;li&gt;No sig-up required, simply access the page and go.&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;I tried ‘you convert it’ using some small files and results were satisfactory, go ahead and bookmark this multi-utility combo.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Do share with us your views about it.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;a href=&quot;http://www.youconvertit.com/&quot; target=&quot;_blank&quot;&gt;Try you convert it&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/3108619634850399459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/you-convert-it-download-online-videos.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/3108619634850399459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/3108619634850399459'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/you-convert-it-download-online-videos.html' title='you convert it: Download online videos, convert and send files, unit conversion etc.'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-1413627674715139876</id><published>2009-08-24T20:57:00.002-07:00</published><updated>2009-08-24T20:58:21.086-07:00</updated><title type='text'>Favorites Town: A visual tool to manage your favorites</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Managing favorites and bookmarks is an important task and also headache for regular  computer and internet users. The major issue is with saving bookmarks is many people don’t know how to manage the bookmarks, they end up stacking the bookmarks at one place and finally when they need to access a page they came across a couple of months ago, it almost becomes unsearchable from the huge list.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Making folders to categorize the bookmarks is probably the best thing to handle and keep your bookmarks sorted, so that the list can be easily browsed and searched when needed.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Well, here is a nice application which can be used your favorites organizer, Favoritestown. This is probably the first tool of its kind. It gives you a window which shows a toy town like interface, as shown below.&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Bookmark town&quot; src=&quot;http://img.technospot.net/visually-manage-your-favorites-and-bookmarks-with-favoritestown.jpg&quot; alt=&quot;visually manage your favorites and bookmarks with favoritestown&quot; height=&quot;451&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Bookmark town&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Now, all the buildings shown here are the ones which almost every town has, like a Railway Station, a Florist, a Shopping Mall, a Library, a Bank, your Home, your Garage, your Business place etc.&lt;/p&gt; &lt;h3 style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;How does this town help me organizing my favorites? &lt;/strong&gt;&lt;/h3&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;The idea is simple, you move around your mouse cursor and the description on brown colored board at the bottom right of the window can be seen, which tells you what is every building shown on the town, there you also get to see what type of favorite (either a webpage, a file or folder on your computer) can be saved there.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;For example –&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Visual Bookmarking&quot; src=&quot;http://img.technospot.net/description-of-every-building-can-be-seen-on-board-and-hence-the-favorites-acnb-be-saved-deleted-or-edited.jpg&quot; alt=&quot;description of every building can be seen on board and hence the favorites acnb be saved deleted or edited&quot; height=&quot;397&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Visual Bookmarking&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Here when the mouse cursor is hovered on this building, it read ‘This is MY HOUSE. In here I can watch TV or a Movie. I can play music or read a newspaper, magazine or book or look at my favorite photographs’. That means you can save your favorites (both online and offline favorites i.e. webpage, file, folder etc.) which have movies, newspapers, music, photos etc.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;In the same way you can add favorites in very building, however to keep things simple, you can view these buildings as folders which help you to categorize you favorites so that searching is easy.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;How do I save my favorites in these buildings? &lt;/strong&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Simply click on any building to enter it, let us try entering ‘MY HOUSE’&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Saving bookmarks and favorites&quot; src=&quot;http://img.technospot.net/organizing-teh-favorites-with-favoritestown.jpg&quot; alt=&quot;organizing the favorites with favoritestown&quot; height=&quot;406&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Saving bookmarks and favorites&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Here you get the options to add and delete a favorite, clicking on any of them takes you to a self descriptive procedure, which allows you to add any kind of Favorites you want.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Favoritestown&lt;/strong&gt; needs to be running on your system, so that you can use it as a launcher for your favorites at any point of time.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Try it out; I am sure it is going to have a huge fan following, organizing favorites using a visual tool sounds good, isn’t it?&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;a href=&quot;http://www.nfreeware.com/internet/bookmark-managers/favoritestown.php&quot; target=&quot;_blank&quot;&gt;Download Favoritestown&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/1413627674715139876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/favorites-town-visual-tool-to-manage.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/1413627674715139876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/1413627674715139876'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/favorites-town-visual-tool-to-manage.html' title='Favorites Town: A visual tool to manage your favorites'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-8907148376145966601</id><published>2009-08-24T20:57:00.001-07:00</published><updated>2009-08-24T20:57:26.556-07:00</updated><title type='text'>Create your own comic strip with Strip Generator</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Strip generator example&quot; src=&quot;http://img.technospot.net/strip-generator-example.png&quot; alt=&quot;Strip generator example&quot; /&gt;Want to generate a comic strip like that ? You can and stripgenerator lets you create a custom comic strip with available characters like those which you can use. Apart from this you can also use different  objects, text bubble etc to enhance your comic story.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Strip generator characters&quot; src=&quot;http://img.technospot.net/strip-generator-characters.png&quot; alt=&quot;Strip generator characters&quot; /&gt;Strip generator comes with small set of editing tools which will help you in zooming, rotating, adding more frames and even print the comic strip if you would like to make a personalized comic book for your kid. If you want to use it on your web site, it generates an embed code which you can use directly.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Overall Strip Generator is an excellent tool which can help you create humor on your site and also in your personal life.  &lt;a href=&quot;http://stripgenerator.com/create/&quot; target=&quot;_blank&quot;&gt;Try Strip generator&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/8907148376145966601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/create-your-own-comic-strip-with-strip.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/8907148376145966601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/8907148376145966601'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/create-your-own-comic-strip-with-strip.html' title='Create your own comic strip with Strip Generator'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-6048939000475683411</id><published>2009-08-24T20:55:00.002-07:00</published><updated>2009-08-24T20:56:25.381-07:00</updated><title type='text'>Add Windows to get Free Download of 1000 MP3 Songs</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;People have now one good reason to go to MySpace and its windows. Reverberation and Microsoft are giving out 1000 MP3 songs for free if you add Windows as your friend on MySpace.&lt;/p&gt; &lt;div style=&quot;width: 285px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Add windows in myspace&quot; src=&quot;http://img.technospot.net/add-windows-myspace.png&quot; alt=&quot;Add windows in myspace&quot; height=&quot;293&quot; width=&quot;275&quot; /&gt;&lt;p&gt;Add windows in myspace&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Like &lt;a href=&quot;http://www.downloadsquad.com/2009/07/27/microsoft-and-reverbnation-giving-away-1-000-mp3s-and-they-don/&quot; target=&quot;_blank&quot;&gt;DS Says&lt;/a&gt; the songs look good to me also. Not bad and if something is free and it doesnt hurt to download and its music what else we do most of the time even if you are at work.&lt;/p&gt; &lt;div style=&quot;width: 528px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Free music giveaway reverbnation&quot; src=&quot;http://img.technospot.net/free-music-giveaway-reverbnation.png&quot; alt=&quot;Free music giveaway reverbnation&quot; height=&quot;439&quot; width=&quot;518&quot; /&gt;&lt;p&gt;Free music giveaway reverbnation&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;I see songs which are from genere which are commonly heard All  Alternative  Electronica/Dance  Hip Hop  Jazz  Latin  Pop  Rock.  You might also see ( I also do see the same &lt;img src=&quot;http://www.technospot.net/blogs/wp-includes/images/smilies/icon_wink.gif&quot; alt=&quot;;)&quot; /&gt; ) that artists are not so common but if you play to get preview they sound good.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;You can also download songs in m4A format or just listen to them online.  So all you need to do is add Windows on Myspace and follow the instructions on Reverbnation.  &lt;strong&gt;&lt;a href=&quot;http://www.reverbnation.com/windows&quot; target=&quot;_blank&quot;&gt;Go get it.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/6048939000475683411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/add-windows-to-get-free-download-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6048939000475683411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6048939000475683411'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/add-windows-to-get-free-download-of.html' title='Add Windows to get Free Download of 1000 MP3 Songs'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-5023048661349900450</id><published>2009-08-24T20:55:00.001-07:00</published><updated>2009-08-24T20:55:25.315-07:00</updated><title type='text'>Light weight, Full Featured Word Processor: AbiWord</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;AbiWord is a very light weight word processor, it has almost all the features which are often expected in any Word Processor and pretty useful if you are looking for an alternate word processor.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Setup for this application is less than 6MBs in size, and the AbiWord works fine on old PCs as well.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Reasons to choose AbiWord as your default Word Processor –&lt;/strong&gt;&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;Supports multiple file formats as shown below.&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/abiword-supports-multiple-file-formats.jpg&quot; alt=&quot;abiword supports multiple file formats&quot; /&gt;&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;It has all the options to fully customize your document, like Fonts, Indent, Alignment, Inserting header, footer etc.&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/full-featured-word-processor-abiword.jpg&quot; alt=&quot;full featured word processor abiword&quot; /&gt;&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;Supports multiple languages.&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/multiple-language-support-abiword.jpg&quot; alt=&quot;multiple language support abiword&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;It also supports several Plugins and dictionaries; you can install them manually on your AbiWord from the download page of the AbiWord.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;There are several other features in it, but as I said, expected in every Word Processor, so probably no point discussing them beyond this point.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Well, the questions is, there are several powerful Word Processors available already, then why AbiWord?&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Answer is, it’s Free, it’s Small to download, its very light weight. :&lt;/strong&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;For example, I have seen several people installing MS Office full version, and they end up using MS Word only and that too without exploiting its full capabilities.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;So, if this is the case, where you just need something like MS Word, where you can type you drafts or any document and don’t need some very high end capabilities, you can use AbiWord.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Moreover, if you have some old PC which has small RAM or may be your C drive doesn’t have a lot of space, AbiWord is and advisable app. It is Compatible with all  Windows OS.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;a href=&quot;http://www.abisource.com/download/&quot; target=&quot;_blank&quot;&gt;Download AbiWord&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/5023048661349900450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/light-weight-full-featured-word.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5023048661349900450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5023048661349900450'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/light-weight-full-featured-word.html' title='Light weight, Full Featured Word Processor: AbiWord'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-6672454416448832075</id><published>2009-08-24T20:54:00.001-07:00</published><updated>2009-08-24T20:54:36.842-07:00</updated><title type='text'>Free tool to merge / split PDF Files</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Merging PDF files is not so common because when we &lt;a title=&quot;Create PDF Files&quot; href=&quot;http://www.technospot.net/blogs/quickly-create-pdf-file-from-your-writeup/&quot; target=&quot;_blank&quot;&gt;create PDF files&lt;/a&gt; we generally do it from one single source of file. However sometimes when while surfing on net you find set of related PDF documents which you would like to combine into one file,&lt;a href=&quot;http://www.arduosoft.com/page/ArduoPdfMerger-freeware-merger-and-splitter-tool.aspx&quot; target=&quot;_blank&quot;&gt; ArduoPdfMerger&lt;/a&gt; Is a good option.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Also this &lt;strong&gt;&lt;a title=&quot;Free PDF Tools&quot; href=&quot;http://www.technospot.net/blogs/tag/free-pdf-tools/&quot; target=&quot;_blank&quot;&gt;pdf tool&lt;/a&gt;&lt;/strong&gt; can split files which I see as more usable feature, Specially when we want to show only a part of PDF to anybody hiding rest of the pages.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;This software lets you select any number of PDF files and then combine into one or split the files into any number of files according to page numbers.&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Merge pdf files&quot; src=&quot;http://img.technospot.net/merge-pdf-files.png&quot; alt=&quot;Merge pdf files&quot; height=&quot;394&quot; width=&quot;580&quot; /&gt;&lt;p&gt;Merge pdf files&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;We brute tested it with 50MB of PDF Files and the result was&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;It takes some time on pre processing the document. But thats probably required so as to speed up the best way to split up.&lt;/li&gt;&lt;li&gt;Merging Files was pretty easy&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;However the splitting did not work fine. It comes as on option when you pick a pdf file but then nothing happened. Any body else want to try ? &lt;a href=&quot;http://www.nirmaltv.com/2009/07/28/split-and-merge-pdf-files-with-arduopdfmerger/&quot; target=&quot;_blank&quot;&gt; Via Nirmal&lt;/a&gt;&lt;/p&gt; &lt;div style=&quot;width: 510px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Split pdf files&quot; src=&quot;http://img.technospot.net/split-pdf-files.png&quot; alt=&quot;Split pdf files&quot; height=&quot;239&quot; width=&quot;500&quot; /&gt;&lt;p&gt;Split pdf files&lt;/p&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/6672454416448832075/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/free-tool-to-merge-split-pdf-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6672454416448832075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6672454416448832075'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/free-tool-to-merge-split-pdf-files.html' title='Free tool to merge / split PDF Files'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-5698312514215566373</id><published>2009-08-24T20:53:00.000-07:00</published><updated>2009-08-24T20:54:03.236-07:00</updated><title type='text'>Watch “How to” videos on Almost Anything</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Often we come across scenarios when we want to get educated about how to do a particular thing, this ‘how to’ could be anything like ‘&lt;strong&gt;how to French kiss&lt;/strong&gt;’, ‘&lt;strong&gt;how to Access blocked website&lt;/strong&gt;s’, ‘&lt;strong&gt;how to Connect Coaxial Cable Connectors&lt;/strong&gt;’ etc.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Now what to you do, when you come across such a scenario, Google it out!, that is probably the first solution, or maybe you will try YouTube hoping to get a ‘How to’ or DIY video.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Here is an online resource which can be looked at as the first option while searching for any ‘how to’ stuff.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;This resource named as Wonder How To, has thousands of ‘how to’ videos, you can browse through categories or search for any particular ‘how to’ video very easily.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;It has a huge category list on the right of the page; if you click and enter a category you can later browse though sub-categories.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/wonder-how-to-find-how-to-videos-about-almost-anything.jpg&quot; alt=&quot;wonder how to find how to videos about almost anything&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;I loved browsing through the videos, there are several videos and they have been shot very nicely, delivering exactly what they are meant to deliver.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Go ahead and watch some videos, I am sure you will love them.&lt;a href=&quot;http://www.wonderhowto.com/&quot; target=&quot;_blank&quot;&gt; Visit Wonder How To&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/5698312514215566373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/watch-how-to-videos-on-almost-anything.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5698312514215566373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/5698312514215566373'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/watch-how-to-videos-on-almost-anything.html' title='Watch “How to” videos on Almost Anything'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-7082668140619189577</id><published>2009-08-24T20:52:00.002-07:00</published><updated>2009-08-24T20:53:22.984-07:00</updated><title type='text'>How to restore the deleted files from your Computer</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;There are several tools to restore the files which were mistakenly deleted. I just found this tool, RESTORATION, which can restore the deleted files. RESTORATION is a free utility, and not a new one, but I found it pretty impressive, have a look at the features, listed below.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Features of RESTORATION –&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;Standalone application.&lt;/li&gt;&lt;li&gt;Very small .zip download is required (164 KBs).&lt;/li&gt;&lt;li&gt;Works pretty fast, it took around 63 seconds to scan a 50GBs partition, which produced a list of 18018 deleted files (on Windows 7, 3GB RAM and Intel Core2Duo 2.0GHz processor).&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img src=&quot;http://img.technospot.net/restoration-results-for-a-50gb-hdd-partition.jpg&quot; alt=&quot;restoration results for a 50gb hdd partition&quot; /&gt;&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;User interface is pretty simple, as shown above, you just have to select the drive you want to scan, using a dropdown menu, specify the filename or part of it (not necessary though), check/uncheck the parameters, click on ‘Search Deleted Files’, if found the file you are hunting for, simply click on ‘Restore by Copying’.&lt;/li&gt;&lt;li&gt;I tried recovering some PDF and image files and it worked fine.&lt;/li&gt;&lt;li&gt;Works fine on all version of Windows (even with Windows 7).&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;To read more about RESTORATION you can try the download page&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;However there is no guarantee when it comes to restoring a file using any application, the time span between deletion and restoration process, and the size of file, both these parameters are inversely proportional to the probability of getting a file restored.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Give it a try if you need a utility to recover deleted files.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;a href=&quot;http://www3.telus.net/mikebike/RESTORATION.html&quot; target=&quot;_blank&quot;&gt;Download RESTORATION&lt;/a&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/7082668140619189577/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/how-to-restore-deleted-files-from-your.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/7082668140619189577'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/7082668140619189577'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/how-to-restore-deleted-files-from-your.html' title='How to restore the deleted files from your Computer'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-6218530951885583869</id><published>2009-08-24T20:52:00.001-07:00</published><updated>2009-08-24T20:52:46.289-07:00</updated><title type='text'>Wave map synthesizer : Time Waster</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;If you are music lover and specifically look for online tools which can help you getting new ideas for music you definitely going to love this simple sine wave synthesizer- Tone Matrix.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;This is ordinary 16 X 16 matrix sheet on which any block can be turned on or off. Turning it on starts music tone which sends out waves. When this wave hits another block which is on it creates a &lt;a href=&quot;http://lab.andre-michelle.com/water&quot; target=&quot;_blank&quot;&gt;Wave Map&lt;/a&gt;.&lt;/p&gt; &lt;div style=&quot;width: 545px; font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Tone matrix online synthesizer&quot; src=&quot;http://img.technospot.net/tone-matrix-online-synthesizer.png&quot; alt=&quot;Tone matrix online synthesizer&quot; height=&quot;514&quot; width=&quot;535&quot; /&gt;&lt;p&gt;Tone matrix online synthesizer&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;The more the block you select together, stronger the wave is and better the rhythm. This does not mean you select all but keep variations which will make the music beat sound good. In fact this tool is so addictive that you can keep on trying new pattern and see how it goes.  &lt;strong&gt;&lt;a href=&quot;http://lab.andre-michelle.com/tonematrix&quot; target=&quot;_blank&quot;&gt;Try Tone Matrix&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/6218530951885583869/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/wave-map-synthesizer-time-waster.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6218530951885583869'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/6218530951885583869'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/wave-map-synthesizer-time-waster.html' title='Wave map synthesizer : Time Waster'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-7721712218185518859</id><published>2009-08-24T20:51:00.002-07:00</published><updated>2009-08-24T20:52:19.787-07:00</updated><title type='text'>Best tool to create your own music mix</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Looks like a musical day for me. Here is another tool, &lt;strong&gt;DubStep&lt;/strong&gt;, which will not waste time but rather let you create your own music like with features like  ring tone creation, video mixing capabilities and integration and it is  cross platform ( Use it on MAC or PC ).&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Start mixing easy&quot; src=&quot;http://img.technospot.net/start-mixing-easy.png&quot; alt=&quot;Start mixing easy&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;This is how it works. You can open lot of music track and stack them one on other. Then you can strip of section of the music from wherever you want.   That is all. Next is just run it and see how parts of music mix together when they all get played together or when the turn comes.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;img title=&quot;Dubstub music creator&quot; src=&quot;http://img.technospot.net/dubstub-music-creator.png&quot; alt=&quot;Dubstub music creator&quot; /&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Apart from above said things it also features:&lt;/strong&gt;&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt; Multi-channel mixing (up to 32 channels)&lt;/li&gt;&lt;li&gt;Advanced multi-channel presets&lt;/li&gt;&lt;li&gt; MP3 sampling / triggering / remixing&lt;/li&gt;&lt;li&gt; Complete load/save/vote functionality&lt;/li&gt;&lt;li&gt; Audio recording capabilities (client-side)&lt;/li&gt;&lt;li&gt; Sequencing / song composing&lt;/li&gt;&lt;li&gt; Output audio to WAV/MP3 files&lt;/li&gt;&lt;li&gt; Video mixing capabilities and integration&lt;/li&gt;&lt;li&gt; Multiuser, collaborative music environments&lt;/li&gt;&lt;li&gt;Stereo-effects processing&lt;/li&gt;&lt;li&gt; Drum and rhythm pattern machine&lt;/li&gt;&lt;li&gt; MP3 mixing / crossfading&lt;/li&gt;&lt;li&gt; Widget playback and distribution&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;&lt;a href=&quot;http://www.looplabs.com/&quot; target=&quot;_blank&quot;&gt;Check out DubStep&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/7721712218185518859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/best-tool-to-create-your-own-music-mix.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/7721712218185518859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/7721712218185518859'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/best-tool-to-create-your-own-music-mix.html' title='Best tool to create your own music mix'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-9001625224073216819</id><published>2009-08-24T20:51:00.001-07:00</published><updated>2009-08-24T20:51:46.191-07:00</updated><title type='text'>Quickly Switch between proxies in browsers</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Its a common scenario that we switch from one network to another many a times. At home, then we move to work and then again we move to friends network. And if you have different proxy for each of the network, it is a big time issue of changing your proxy configuration every time.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;I was lucky enough to find solution for this and on tops I was able to find it for IE, Firefox and also Opera this time. For Chrome there is a different and partial solution.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;All of the proxy switchers work in the same way. They allow you to predefined proxy settings and you can give them a nice name i.e. Home Proxy, Matts Proxy or Office Proxy. DOne with this it lets you change the proxy right from the browser either through menu or drop down.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Switching Proxy in IE&lt;/strong&gt; : &lt;a href=&quot;http://www.codeplex.com/ieproxy/Release/ProjectReleases.aspx?ReleaseId=19014&quot; target=&quot;_blank&quot;&gt; IE Proxy manager @ Codeplex&lt;/a&gt; is a small setup which sits in your tray and depending on predefined configuration switches proxy you can switch. Make sure to run it under Vista or Even XP compatible mode.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Switching Proxy in Firefox&lt;/strong&gt; : &lt;a href=&quot;http://www.mozmonkey.com/switchproxy/&quot; target=&quot;_blank&quot;&gt;Switch Proxy By Jeremy&lt;/a&gt; is another excellent addon which I found the most easiest to us. After predefining it you get a drop down and also managing or editing the proxies right there.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Switching Proxy in Opera :&lt;/strong&gt; There is no addon here but I was able to find a tutorial which was discussed within Opera community.  This tutorial lets you edit the Opera Configuration file and add more proxy in it which is reflected in the browser itself. &lt;a href=&quot;http://my.opera.com/Tamil/blog/fast-proxy-switching&quot; target=&quot;_blank&quot;&gt;Read the complete tutorial&lt;/a&gt;&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Google Chrome Proxy&lt;/strong&gt; : Chrome uses windows proxy settings by default i.e. it shares the same proxy connection which is set by IE. If you want not to use proxy  you can do it by adding –proxy-server= to chrome.exe in order to forcibly disable Google Chrome proxy server settings. I would suggest you to check out the &lt;a href=&quot;http://www.walkernews.net/2008/11/07/how-to-configure-or-disable-google-chrome-proxy-server-settings-independently/&quot; target=&quot;_blank&quot;&gt;comments @ Walkernews&lt;/a&gt; to get into more details. Some people have even suggested to to go for this :&lt;/p&gt; &lt;blockquote style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;p&gt;“C:\Documents and Settings\YOURID\Local Settings\Application Data\Google\Chrome\&lt;wbr&gt;Application\chrome.exe” “–proxy-server=000.000.000.&lt;wbr&gt;000:1025″&lt;/p&gt;&lt;/blockquote&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;These extension are pretty useful and if you are on the move and always behind proxies you need them.  Try them out.&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/9001625224073216819/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/quickly-switch-between-proxies-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/9001625224073216819'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/9001625224073216819'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/quickly-switch-between-proxies-in.html' title='Quickly Switch between proxies in browsers'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5924225674771924045.post-139971994484400707</id><published>2009-08-24T20:50:00.000-07:00</published><updated>2009-08-24T20:51:12.470-07:00</updated><title type='text'>How to find if downloaded files are not corrupt</title><content type='html'>&lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Many a times when you start using a downloaded file it fails. Generally the error messages which are cited are “File corrupt” , Cannot open header corrupt etc. This happens because the file which was downloaded, did not get downloaded correctly i.e. may be some bit messed up.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Though you cannot avoid this type of error but there is away to make sure what you have downloaded is not broken when you use it in future.  Its called as File Integrity test. These tests make sure you had exactly the same bits of file what you created on server and downloaded on your machine.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;There are couple of algorithms like  sum, md5sum, sha1sum, and sfv which generate  a unique hash code, if you can test it after download and see if  hashcode matches, this means you have a file which exactly was on server.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;Exact File is one such application to check file integrity and it supports Algorithms like Adler32, MD2, SHA1, RIPEMD128, TIGER128, CRC32, MD4, SHA256, RIPEMD160, TIGER160, MD5, SHA384, TIGER192,GOST and SHA512.&lt;/p&gt; &lt;div style=&quot;width: 590px; font-family: trebuchet ms;&quot;&gt;&lt;a href=&quot;http://img.technospot.net/exact-file-checksum.png&quot; target=&quot;_blank&quot;&gt;&lt;img title=&quot;Exact file checksum&quot; src=&quot;http://img.technospot.net/exact-file-checksum.png&quot; alt=&quot;Exact file checksum&quot; height=&quot;446&quot; width=&quot;580&quot; /&gt;&lt;/a&gt;&lt;p&gt;Exact file checksum&lt;/p&gt;&lt;/div&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;This way you an now check the downloaded file and match the checksum which is generally given on many sites.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;It can also create checksum for your files which you would like others to download. This way you can publis the check sum so if the person tries download it, he will know that.&lt;/p&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;Other features of Exact Files :&lt;/strong&gt;&lt;/p&gt; &lt;ul style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;li&gt;Multi threaded application&lt;/li&gt;&lt;li&gt;Accepts &lt;strong&gt;Unicode&lt;/strong&gt; file names.&lt;/li&gt;&lt;li&gt;Supports big files and folders / subfolders&lt;/li&gt;&lt;li&gt;Both GUI and Command like interface is available free of cost.&lt;/li&gt;&lt;/ul&gt; &lt;p style=&quot;font-family: trebuchet ms;&quot;&gt;&lt;strong&gt;&lt;a href=&quot;http://www.exactfile.com/&quot; target=&quot;_blank&quot;&gt;Download Exact Files&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://shahzadmirza.blogspot.com/feeds/139971994484400707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/how-to-find-if-downloaded-files-are-not.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/139971994484400707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5924225674771924045/posts/default/139971994484400707'/><link rel='alternate' type='text/html' href='http://shahzadmirza.blogspot.com/2009/08/how-to-find-if-downloaded-files-are-not.html' title='How to find if downloaded files are not corrupt'/><author><name>Shahzad Mirza</name><uri>http://www.blogger.com/profile/13910209107430955607</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3naj7ZLhxxDprBdcmA-tXVhbczb5gArg-uTR7b9-UgL6Zf_NOMdZ4NokTkPN62cdLk7xQclxRGFM4iPFxWD0W7C_JgmyFZTRuXdqmNn-CMcfRGhHQe3MPnh305KzSnvo/s220/5112263794a6926612625ml.jpg'/></author><thr:total>0</thr:total></entry></feed>