<?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>mittens blog</title>
	<atom:link href="http://nitendra.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://nitendra.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 29 Apr 2011 10:09:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automating Silent Batch Install of Apps</title>
		<link>http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/</link>
		<comments>http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 01:41:01 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=49</guid>
		<description><![CDATA[I have a rooted Nexus One with the Cyanogenmod ROM. I use APPS2SD to place my applications on the SD card, allowing my phone to run fast and have heaps of free memory.
However, lately, I swapped my Micro-SD card with a friend&#8217;s in order to check some pictures, and upon booting the phone, it crashed [...]]]></description>
			<content:encoded><![CDATA[<p>I have a rooted Nexus One with the Cyanogenmod ROM. I use APPS2SD to place my applications on the SD card, allowing my phone to run fast and have heaps of free memory.</p>
<p>However, lately, I swapped my Micro-SD card with a friend&#8217;s in order to check some pictures, and upon booting the phone, it crashed all my third-party applications. Every single one! Replacing my micro-SD into the phone and rebooting did not solve the problem. I received notifications upon notifications informing me of a FORCE-CLOSE.</p>
<p>The error messages spoke of a PERMISSIONS error, and were something like this (each was a different permission error):</p>
<blockquote><p><strong>android.permission.INTERNET<br />
android.permission.WAKE_LOCK<br />
android.permission.SLEEP</strong></p></blockquote>
<p>The first thing I tried was to fix_permissions through the phone&#8217;s Terminal application. This is achieved by simply:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">su
fix_permissions</pre></div></div>

<p>However, this did not fix the problem. I then tried re-flashing my ROM from the recovery menu (without doing a wipe). That, too, did not work.</p>
<p>Finally, <a href="http://mdzlog.alcor.net/2010/01/31/fix-broken-android-permissions-by-re-installing-apps/" target="_blank">I learned</a> that the permissions were &#8220;missing&#8221; from the &#8220;<strong>/data/system/packages.xml</strong>&#8221; file (which can only be seen through the <a href="http://www.appbrain.com/app/com.speedsoftware.rootexplorer" target="_blank">Root Explorer</a> app)</p>
<blockquote><p><em>&#8220;The fix_permissions script tries to correct the UNIX permissions and ownership (uid, gid, mode) of files and directories. [...] the problem was with the Android security permissions granted to applications. These look like “android.permission.INTERNET”, “android.permission.WAKE_LOCK” and are a completely different kettle of fish, despite both being called “permissions”.&#8221; </em>[quote from Matt Zimmerman]</p></blockquote>
<p>I then followed what he suggested &#8211; a method to <em><strong>silently batch install a bunch of apps</strong></em>! Turns out there is a package-manager command that allows you to do exactly this!</p>
<p>Follow these steps, which worked for me perfectly:</p>
<ol>
<li>Connect your phone to your computer using the data cable.</li>
<li>Go to Start &#8211;&gt; Run. Type in CMD and press enter.</li>
<li>In the command-prompt, navigate to the TOOLS folder where your Android SDK is installed (example, C:\android_sdk\tools). If you don&#8217;t have it, <a href="http://nitendra.com/blog/2010/05/how-to-install-the-android-sdk/">follow these steps</a> to install the Android SDK.</li>
<li>Here, type:

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">adb shell
cd <span style="color: #339933;">/</span>data<span style="color: #339933;">/</span>app
<span style="color: #000000; font-weight: bold;">for</span> app in <span style="color: #339933;">*</span>.<span style="color: #006633;">apk</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">do</span> pm install <span style="color: #339933;">-</span>r $app<span style="color: #339933;">;</span> done</pre></div></div>

</li>
<li>The applications in the /data/app folder should automatically start batch installing now, one by one. Each app will take about 5 seconds to install.</li>
</ol>
<p><span style="text-decoration: underline;">IMPORTANT: </span></p>
<p>Those who have the Cyanogenmod ROM and APPS2SD should actually repeat<em> </em>STEP 4 and try these steps (because the APK files can be located elsewhere):</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">Instead of<span style="color: #339933;">:</span> cd <span style="color: #339933;">/</span>data<span style="color: #339933;">/</span>app
<span style="color: #000000; font-weight: bold;">do</span> <span style="color: #000000; font-weight: bold;">this</span><span style="color: #339933;">:</span>    cd <span style="color: #339933;">/</span>sd<span style="color: #339933;">-</span>ext<span style="color: #339933;">/</span>app
and also<span style="color: #339933;">:</span>   cd <span style="color: #339933;">/</span>sd<span style="color: #339933;">-</span>ext<span style="color: #339933;">/</span>app<span style="color: #339933;">-</span><span style="color: #000000; font-weight: bold;">private</span>
and also<span style="color: #339933;">:</span>   cd <span style="color: #339933;">/</span>data<span style="color: #339933;">/</span>app<span style="color: #339933;">-</span><span style="color: #000000; font-weight: bold;">private</span></pre></div></div>

<p>and for good measure, try reinstalling the system apps as well:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">cd <span style="color: #339933;">/</span>system<span style="color: #339933;">/</span>app</pre></div></div>

<p>You should get a few failures if you try reinstalling the system apps (because they are currently running), but the others will reinstall just fine.</p>
<p>Now just reboot your phone and all the apps should be reinstalled and working just fine!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Automating+Silent+Batch+Install+of+Apps+-+http://bit.ly/ierzzJ&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/&amp;t=Automating+Silent+Batch+Install+of+Apps" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/&amp;title=Automating+Silent+Batch+Install+of+Apps" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/&amp;title=Automating+Silent+Batch+Install+of+Apps" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Automating+Silent+Batch+Install+of+Apps&amp;body=Link: http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20have%20a%20rooted%20Nexus%20One%20with%20the%20Cyanogenmod%20ROM.%20I%20use%20APPS2SD%20to%20place%20my%20applications%20on%20the%20SD%20card%2C%20allowing%20my%20phone%20to%20run%20fast%20and%20have%20heaps%20of%20free%20memory.%0D%0A%0D%0AHowever%2C%20lately%2C%20I%20swapped%20my%20Micro-SD%20card%20with%20a%20friend%27s%20in%20order%20to%20check%20some%20pictures%2C%20and%20upon%20booting%20the%20phone%2C%20it%20crash" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/&amp;title=Automating+Silent+Batch+Install+of+Apps" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/&amp;title=Automating+Silent+Batch+Install+of+Apps" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2011/02/automating-silent-batch-install-of-apps-fix-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TED Talks: An Amazing Resource</title>
		<link>http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/</link>
		<comments>http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 09:06:08 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Humour]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=269</guid>
		<description><![CDATA[I am a big fan of knowledge. Knowledge is the one thing that, when shared, only grows larger. Through centuries of human strife, effort, struggles, and achievements, we have, as a race, come to understand our world and its inhabitants in a uniquely intelligent way that no other species can. We have invented the wheel, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ted.com"><img class="alignleft size-full wp-image-270" style="width: 240px; height: 240px; float: left;" title="TED Talks" src="http://nitendra.com/blog/wp-content/uploads/2010/06/TEDtalks.jpg" alt="TED Talks" width="240" height="240" /></a>I am a big fan of knowledge. Knowledge is the one thing that, when shared, only grows larger. Through centuries of human strife, effort, struggles, and achievements, we have, as a race, come to understand our world and its inhabitants in a uniquely intelligent way that no other species can. We have invented the wheel, and reinvented it over and over again. We have created fire, then steam, then fossil fuels, then electricity, and even harnessed solar and wind energy. Isn&#8217;t it marvelous what we humans are capable of?  Perhaps we are only limited by our imagination, even when imagination itself is something we strive to understand. This desire to understand is the zeal which drives professionals in every field, and <a href="http://www.ted.com" target="_blank">TED Talks</a> is an excellent platform for them to share their findings with the rest of the world. TED talks are held the world over, spotlighting acheivements great and small, wonderous and inspiring, beautiful and fascinating. TED Talks is one of my favourite websites, and the best reason for substituting your cable-television subscription for a high-speed internet connection. :-P If you haven&#8217;t heard about it, or have yet to visit it, do so now, and <a href="http://www.ted.com" target="_blank">bookmark it for posterity!</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=TED+Talks%3A+An+Amazing+Resource+-+http://bit.ly/is3nOe&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/&amp;t=TED+Talks%3A+An+Amazing+Resource" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/&amp;title=TED+Talks%3A+An+Amazing+Resource" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/&amp;title=TED+Talks%3A+An+Amazing+Resource" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=TED+Talks%3A+An+Amazing+Resource&amp;body=Link: http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20am%20a%20big%20fan%20of%20knowledge.%20Knowledge%20is%20the%20one%20thing%20that%2C%20when%20shared%2C%20only%20grows%20larger.%20Through%20centuries%20of%20human%20strife%2C%20effort%2C%20struggles%2C%20and%20achievements%2C%20we%20have%2C%20as%20a%20race%2C%20come%20to%20understand%20our%20world%20and%20its%20inhabitants%20in%20a%20uniquely%20intelligent%20way%20that%20no%20other%20species%20can.%20We%20have%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/&amp;title=TED+Talks%3A+An+Amazing+Resource" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/&amp;title=TED+Talks%3A+An+Amazing+Resource" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2011/01/ted-talks-an-amazing-resource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spain wins the FIFA World Cup 2010 !!</title>
		<link>http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/</link>
		<comments>http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 07:16:15 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=374</guid>
		<description><![CDATA[And it&#8217;s over! It&#8217;s Spain which takes the World Cup trophy home this year, leaving Netherlands yet another disappointment. This is the third time that Netherlands has reached the Finals in the World Cup tournaments, yet couldn&#8217;t clinch the deal. It must be a sad day for the Dutch. On the other hand, jubilation is rampant [...]]]></description>
			<content:encoded><![CDATA[<p>And it&#8217;s over! It&#8217;s Spain which takes the World Cup trophy home this year, leaving Netherlands yet another disappointment. This is the third time that Netherlands has reached the Finals in the World Cup tournaments, yet couldn&#8217;t clinch the deal. It must be a sad day for the Dutch. On the other hand, jubilation is rampant in Spain, first-time winners of the World Cup! They are also the only team to lose their opening-game match in the group stages (against Switzerland) and yet win the World Cup. They now join the ranks of the World Cup greats &#8211; only the 8th nation to ever win the World Cup! Yes, though the World Cup tournament has been played a total of 19 times, only 7 teams have laid claim to the trophy! Spain successfully becomes the 8th and earn a gold star on their nation&#8217;s emblem!</p>
<p><img class="aligncenter size-full wp-image-375" title="Spain World Cup Trophy Winners 2010" src="http://nitendra.com/blog/wp-content/uploads/2010/07/spainworldcuptrophy20100711_576x324.jpg" alt="" width="576" height="324" /></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-376" style="border: 0px;" title="World Cup Finals Statistics" src="http://nitendra.com/blog/wp-content/uploads/2010/07/World-Cup-Finals-Stats.jpg" alt="" width="325" height="227" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Spain+wins+the+FIFA+World+Cup+2010+%21%21+-+http://b2l.me/aaan2t&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/&amp;t=Spain+wins+the+FIFA+World+Cup+2010+%21%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/&amp;title=Spain+wins+the+FIFA+World+Cup+2010+%21%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/&amp;title=Spain+wins+the+FIFA+World+Cup+2010+%21%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Spain+wins+the+FIFA+World+Cup+2010+%21%21&amp;body=Link: http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A And%20it%27s%20over%21%20It%27s%20Spain%20which%20takes%20the%20World%20Cup%20trophy%20home%20this%20year%2C%20leaving%20Netherlands%20yet%20another%C2%A0disappointment.%20This%20is%20the%20third%20time%20that%20Netherlands%20has%20reached%20the%20Finals%20in%20the%20World%20Cup%20tournaments%2C%20yet%20couldn%27t%20clinch%20the%20deal.%20It%20must%20be%20a%20sad%20day%20for%20the%20Dutch.%20On%20the%20other%20hand" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/&amp;title=Spain+wins+the+FIFA+World+Cup+2010+%21%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/&amp;title=Spain+wins+the+FIFA+World+Cup+2010+%21%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/07/spain-wins-the-fifa-world-cup-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>De Jong versus Xabi Alonso &#8211; This is Holland!</title>
		<link>http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/</link>
		<comments>http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 01:00:49 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=364</guid>
		<description><![CDATA[The World Cup is finally over! What a sad day it is for us football fans everywhere! What a dramatic finish! To add to the drama, De Jong of Holland kicked Xabi Alonso in the chest midway through the game. To commemorate this event, I decided to throw together a wallpaper (1680&#215;1050) of the action! [...]]]></description>
			<content:encoded><![CDATA[<p>The World Cup is finally over! What a sad day it is for us football fans everywhere! What a dramatic finish! To add to the drama, De Jong of Holland kicked Xabi Alonso in the chest midway through the game. To commemorate this event, I decided to throw together a wallpaper (1680&#215;1050) of the action! You can even catch <a title="De Jong versus Xabi Alonso" href="http://www.youtube.com/watch?v=SBa15Q7QCjY" target="_blank">the video here</a>!</p>
<p><a href="http://nitendra.com/blog/wp-content/uploads/2010/07/This-Is-Holland.jpg"><img class="aligncenter size-large wp-image-363" title="This is Holland. Original Photo by Reuters/David Gray" src="http://nitendra.com/blog/wp-content/uploads/2010/07/This-Is-Holland-590x368.jpg" alt="" width="590" height="368" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=De+Jong+versus+Xabi+Alonso+-+This+is+Holland%21+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/&amp;t=De+Jong+versus+Xabi+Alonso+-+This+is+Holland%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/&amp;title=De+Jong+versus+Xabi+Alonso+-+This+is+Holland%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/&amp;title=De+Jong+versus+Xabi+Alonso+-+This+is+Holland%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=De+Jong+versus+Xabi+Alonso+-+This+is+Holland%21&amp;body=Link: http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20World%20Cup%20is%20finally%20over%21%20What%20a%20sad%20day%20it%20is%20for%20us%20football%20fans%20everywhere%21%20What%20a%20dramatic%20finish%21%20To%20add%20to%20the%20drama%2C%20De%20Jong%20of%20Holland%20kicked%20Xabi%20Alonso%20in%20the%20chest%20midway%20through%20the%20game.%20To%20commemorate%20this%20event%2C%20I%20decided%20to%20throw%20together%20a%20wallpaper%20%281680x1050%29%20of%20the%20action%21%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/&amp;title=De+Jong+versus+Xabi+Alonso+-+This+is+Holland%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/&amp;title=De+Jong+versus+Xabi+Alonso+-+This+is+Holland%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/07/de-jong-vs-xabi-alonso-this-is-holland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brazil versus Chile &#8211; Live Blog 2010</title>
		<link>http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/</link>
		<comments>http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 21:08:06 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Musings]]></category>
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=298</guid>
		<description><![CDATA[As I&#8217;m working on my laptop while watching the world cup match, I&#8217;m live-blogging this match. Hope you enjoy it. Just press refresh to see the updates come in. :)

BRAZIL versus CHILE, the match is ON !!
02 min : Chile gets first corner. Brazilians are on the defensive. Interesting start!
05 min : Brazil&#8217;s Fabiano makes [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m working on my laptop while watching the world cup match, I&#8217;m live-blogging this match. Hope you enjoy it. Just press refresh to see the updates come in. :)</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-299" style="border: 0pt none;" title="Brazil Chile Final Scores" src="http://nitendra.com/blog/wp-content/uploads/2010/06/brazil_chile.jpg" alt="" width="564" height="152" /></p>
<p>BRAZIL versus CHILE, the match is ON !!</p>
<p>02 min : Chile gets first corner. Brazilians are on the defensive. Interesting start!<br />
05 min : Brazil&#8217;s Fabiano makes a first attempt at goal. Great chance, shot went wide.<br />
08 min : Brazil makes a great attempt at goal, beautifully struck. The goalie made a great save!! Brazil now taking its third corner.<br />
13 min: Chile gets a nice pass through, attempts to chip the ball over the goalie, but no dice. This game is fast-paced!<br />
15 min: Ramirez takes a distant shot, on target, at the Chilean goal, but the goalie is earning his keep today.<br />
17 min: There are bees in the stadium! Bees! arrrrghhh! BZZZZZZ!!</p>
<p>18 min: Chile is pressing back, finally gets the ball to the Brazilian side for a throw in, after a lengthy period of defending. Shot at goal goes wide.<br />
<span id="more-298"></span> 22 min: Both teams are pursuing a goal aggressively. Looks like they have energizer batteries in their legs. Interesting fact, Chile is ranked second in South America, Brazil first! Can Brazil hold on to its title?<br />
27 min: A very near penalty against Chile! Lucio goes down, but referee says no, instead points towards the corner. Close call!<br />
28 min: Referee and I share the same hairstyle &#8211; none.<br />
30 min: Vidal goes down outside the Brazilian penalty box. Kaka gets a yellow card, Chile gets a threatening free kick.. blocked.<br />
34 min: Yuan finds the net from a corner kick. Terrific header, dips just below the top bar! Brazil leads 1-0.<br />
36 min: Brazil makes a clean break towards goal, but Fabiano tries a fancy hell kick and screws up the opportunity.<br />
37 min: Fabiano redeems himself! Stay onside for a pass from Kaka, dodges the goalie with some superb footwork, and pops it into the back of the net! Brazil 2-0 !!<br />
39 min: Chile makes another attempt but shot goes wide. Chile, denied a goal. 5 minutes to half-time. Brazilian fans exultant!<br />
42 min: Interesting fact, Brazil has only lost 14 games out of the 95 it has played at the World Cup. Make that 96 if they win this one.<br />
45 min: Chile trying desperately to get at least one goal before half-time, but Brazil thwarting every opportunity.<br />
46 min: Half time! The Chilean coach does NOT look pleased. Brazilian coach, on the other hand, looks like he just got laid. :P</p>
<p>SECOND HALF is starting. Hornets everywhere!<br />
Shots are 9-7 Brazil, 4-1 on target. 8-6 fouls for Chile, 6-2 corners for Brazil, 51 percent possession for Brazil.</p>
<p>49 min: Chile trying very hard to get one in. Brazil defense holding strong.<br />
51 min: Brazil gets a chance to make it 3-1, but Kaka overshoots the cross.<br />
54 min: Brazil earns a corner &#8211; but unable to do anything with it.<br />
59 min: Chile tries hard to find a gap in the Brazilian defense. No luck!<br />
60 min: Robinho takes a beautiful unselfish pass from Ramirez and dips it into the top half of the goal. Brazil 3-0! This game is over already. :P<br />
63 min: Chile have a free kick outside the Brazilian D-area. Hits it straight at the wall, ball goes for a corner.<br />
64 min: A quick free kick taken, and an amazing pass through the Brazilian defense, evading three players, but the striker couldn&#8217;t control the ball.<br />
66 min: Valdivia takes a strong shot at goal for Chile, but can&#8217;t keep the ball down.<br />
68 min: Neither side is tiring. Kaka takes a mighty shot, but it flies over the cuckoo&#8217;s nest.<br />
71 min: Ramirez gets his second yellow of the tournament, making him miss the next game! He&#8217;s not very happy.<br />
73 min: At the quarter-finals stage, all yellow cards are nullified. Slate is wiped clean.<br />
74 min: Robinho makes a great run, but the angle is too sharp for him to squee the ball in past the keeper. Goes for a corner, Chile clears the ball.<br />
76 min: Suarez makes an awesome turn with the ball near the post, evading Lucio, but the goalie stays alert and punches out the ball.<br />
78 min: Suazo with a great little spinning dip, hits the top of the crossbar. Good effort.<br />
80 min: Kaka is replaced by Kleberson in a tactical substitution. He&#8217;s played a great game so far.<br />
84 min: Robinho is replaced by Gilberto.<br />
88 min: Brazilian fans are dancing and cheering. There will probably not be much injury time, maybe a minute. Chile has no chance for a comeback.<br />
90 min: Brazil is on the attack still, but Ramirez shoots it a mile wide. Explains why he doesn&#8217;t have children. :P<br />
90+ min: Injury time is here! And by injury, I mean the injured pride of the Chileans.<br />
Final Whistle!! Game is over. Brazil 3-0. Chile is out of the world cup.</p>
<p>Final Tally<br />
&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Brazil &#8211; Chile<br />
shots on target :   6 &#8211; 2<br />
shots off target : 11 &#8211; 7<br />
possession (%)  : 51 &#8211; 49<br />
corner kicks      :   8 &#8211; 6<br />
offsides            :  1 &#8211; 1<br />
fouls                : 15 &#8211; 17<br />
yellow cards      :  2 &#8211; 3<br />
red cards          :  0 &#8211; 0</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Brazil+versus+Chile+-+Live+Blog+2010+-+http://b2l.me/7ek7j&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/&amp;t=Brazil+versus+Chile+-+Live+Blog+2010" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/&amp;title=Brazil+versus+Chile+-+Live+Blog+2010" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/&amp;title=Brazil+versus+Chile+-+Live+Blog+2010" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Brazil+versus+Chile+-+Live+Blog+2010&amp;body=Link: http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A As%20I%27m%20working%20on%20my%20laptop%20while%20watching%20the%20world%20cup%20match%2C%20I%27m%20live-blogging%20this%20match.%20Hope%20you%20enjoy%20it.%20Just%20press%20refresh%20to%20see%20the%20updates%20come%20in.%20%3A%29%0D%0A%0D%0ABRAZIL%20versus%20CHILE%2C%20the%20match%20is%20ON%20%21%21%0D%0A%0D%0A02%20min%20%3A%20Chile%20gets%20first%20corner.%20Brazilians%20are%20on%20the%20defensive.%20Interesting%20start%21%0D%0A05%20m" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/&amp;title=Brazil+versus+Chile+-+Live+Blog+2010" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/&amp;title=Brazil+versus+Chile+-+Live+Blog+2010" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/06/brazil-versus-chile-live-blog-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Riot Breaks Out at the G20 Summit</title>
		<link>http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/</link>
		<comments>http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 00:21:55 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=353</guid>
		<description><![CDATA[I went to downtown Toronto to see the G20 protests this weekend. Almost 500 people have been arrested after they torched four police cars and destroyed storefront mirrors. Most of the protesters were peaceful demonstrators, but these acts of violence were conducted by masked protesters whose mission was to cause anarchy. The crowd numbered in [...]]]></description>
			<content:encoded><![CDATA[<p>I went to downtown Toronto to see the G20 protests this weekend. Almost 500 people have been arrested after they torched four police cars and destroyed storefront mirrors. Most of the protesters were peaceful demonstrators, but these acts of violence were conducted by masked protesters whose mission was to cause anarchy. The crowd numbered in thousands, but the violent ones numbered perhaps 200.</p>
<p>Downtown Toronto was turned into a fortress for a few days. The government had allocated CDN $1 billion for security for the two summits [G8 and G20]. An estimated 19,000 police officers were called from across Canada for security reasons, and they used shields, clubs, tear gas and pepper spray to push back the protesters. The violence broke out blocks away from where Barack Obama and other world leaders were meeting and staying.</p>
<p>It&#8217;s sad to see the real message of the protest overshadowed by violence. The anti-G20 protest has a clear reason that many can relate to, however, the method in which this drama played out demeans the thousands of people who showed up to make their voices heard. The images from the event demean the peaceful intentions and goals of the non-violent protesters. Sadly, the media always loves violence and drama, and it is what they are concentrating on.</p>
<p style="text-align: center;"><img class="size-large wp-image-354 aligncenter" title="G20 Protest Toronto" src="http://nitendra.com/blog/wp-content/uploads/2010/06/DSC_5953-590x415.jpg" alt="" width="590" height="415" /></p>
<p>Photographer Ryan Dury has some good pictures of the demonstrations on his website. <a href="http://ryandury.com/G20-Summit-2010-Toronto.php" target="_blank">Click here to see them</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Riot+Breaks+Out+at+the+G20+Summit+-+http://b2l.me/7fcug&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/&amp;t=Riot+Breaks+Out+at+the+G20+Summit" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/&amp;title=Riot+Breaks+Out+at+the+G20+Summit" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/&amp;title=Riot+Breaks+Out+at+the+G20+Summit" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Riot+Breaks+Out+at+the+G20+Summit&amp;body=Link: http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20went%20to%20downtown%20Toronto%20to%20see%20the%20G20%20protests%20this%20weekend.%20Almost%20500%20people%20have%20been%20arrested%20after%20they%20torched%20four%20police%20cars%20and%20destroyed%20storefront%20mirrors.%20Most%20of%20the%20protesters%20were%20peaceful%20demonstrators%2C%20but%20these%20acts%20of%20violence%20were%20conducted%20by%20masked%20protesters%20whose%20mission" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/&amp;title=Riot+Breaks+Out+at+the+G20+Summit" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/&amp;title=Riot+Breaks+Out+at+the+G20+Summit" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/06/riot-breaks-out-at-the-g20-summit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Father&#8217;s Day 2010</title>
		<link>http://nitendra.com/blog/2010/06/happy-fathers-day-2010/</link>
		<comments>http://nitendra.com/blog/2010/06/happy-fathers-day-2010/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 22:49:33 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=331</guid>
		<description><![CDATA[Father&#8217;s Day is on the 3rd Sunday of June, each year.  Did you know that Father&#8217;s Day was created only in the 20th century to complement Mother&#8217;s Day? Wikipedia has a huge article on Father&#8217;s Day, which is very interesting. Did you also know that the dates for this event are different across the world? [...]]]></description>
			<content:encoded><![CDATA[<p>Father&#8217;s Day is on the 3rd Sunday of June, each year.  Did you know that Father&#8217;s Day was created only in the 20th century to complement Mother&#8217;s Day? Wikipedia has a huge article on <a href="http://en.wikipedia.org/wiki/Father's_Day" target="_blank">Father&#8217;s Day</a>, which is very interesting. Did you also know that the dates for this event are different across the world? Make sure to call your dads today and remind them of their importance in your life. :)</p>
<div id="attachment_332" class="wp-caption aligncenter" style="width: 600px"><a href="http://nitendra.com/blog/wp-content/uploads/2010/06/Father_and_Son_by_shoggy.jpg"><img class="size-large wp-image-332" title="Happy Father's Day" src="http://nitendra.com/blog/wp-content/uploads/2010/06/Father_and_Son_by_shoggy-590x343.jpg" alt="" width="590" height="343" /></a><p class="wp-caption-text">Image - Shoggy from Deviantart</p></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Happy+Father%27s+Day+2010+-+http://b2l.me/7ezx2&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/06/happy-fathers-day-2010/&amp;t=Happy+Father%27s+Day+2010" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/06/happy-fathers-day-2010/&amp;title=Happy+Father%27s+Day+2010" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/06/happy-fathers-day-2010/&amp;title=Happy+Father%27s+Day+2010" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/06/happy-fathers-day-2010/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Happy+Father%27s+Day+2010&amp;body=Link: http://nitendra.com/blog/2010/06/happy-fathers-day-2010/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Father%27s%20Day%20is%20on%20the%203rd%20Sunday%20of%20June%2C%20each%20year.%C2%A0%20Did%20you%20know%20that%20Father%27s%20Day%20was%20created%20only%20in%20the%2020th%20century%20to%20complement%20Mother%27s%20Day%3F%20Wikipedia%20has%20a%20huge%20article%20on%20Father%27s%20Day%2C%20which%20is%20very%20interesting.%20Did%20you%20also%20know%20that%20the%20dates%20for%20this%20event%20are%20different%20across%20the%20wo" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/06/happy-fathers-day-2010/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/06/happy-fathers-day-2010/&amp;title=Happy+Father%27s+Day+2010" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/06/happy-fathers-day-2010/&amp;title=Happy+Father%27s+Day+2010" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/06/happy-fathers-day-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gulf of Mexico (BP) Oil Spill Visualization</title>
		<link>http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/</link>
		<comments>http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 08:48:28 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Health]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=264</guid>
		<description><![CDATA[Unless you&#8217;ve been living under a few heavy rocks, you have no doubt heard about the ongoing oil spill that has lasted well over a month and a half. This disaster, stemming from negligence and poor maintenance, is now considered the largest offshore oil spill in US history. It started with a ruptured oil-gusher 1500m [...]]]></description>
			<content:encoded><![CDATA[<p>Unless you&#8217;ve been living under a few heavy rocks, you have no doubt heard about the ongoing oil spill that has lasted well over a month and a half. This disaster, stemming from negligence and poor maintenance, is now considered the largest offshore oil spill in US history. It started with a ruptured oil-gusher 1500m below the ocean surface that exploded and killed 11 platform workers, and injuring a dozen more. BP has been trying to put a lid on this crisis but failing miserably, angering public sentiment, and worse, doing irreversible damage to the environment.</p>
<p>The rate of oil leakage is estimated to be as much as 16,000,000 litres per day, and covers a surface area of at least 6,500 square kilometres! Sounds like a lot, but how much is that exactly? Here&#8217;s a very <a href="http://www.ifitwasmyhome.com/" target="_blank">helpful website</a> that will help visualize this huge number, and the oil spill, by bringing it close to home, literally! Just type in your home-city and hit the button.</p>
<p style="text-align: center;"><a rel="attachment wp-att-287" href="http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/oil_spill_home-2/"><img class="aligncenter size-large wp-image-287" title="BP Oil Spill Coverage" src="http://nitendra.com/blog/wp-content/uploads/2010/06/oil_spill_home-590x367.jpg" alt="" width="590" height="367" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Gulf+of+Mexico+%28BP%29+Oil+Spill+Visualization+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/&amp;t=Gulf+of+Mexico+%28BP%29+Oil+Spill+Visualization" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/&amp;title=Gulf+of+Mexico+%28BP%29+Oil+Spill+Visualization" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/&amp;title=Gulf+of+Mexico+%28BP%29+Oil+Spill+Visualization" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Gulf+of+Mexico+%28BP%29+Oil+Spill+Visualization&amp;body=Link: http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Unless%20you%27ve%20been%20living%20under%20a%20few%20heavy%20rocks%2C%20you%20have%20no%20doubt%20heard%20about%20the%20ongoing%20oil%20spill%20that%20has%20lasted%20well%20over%20a%20month%20and%20a%20half.%20This%20disaster%2C%20stemming%20from%20negligence%20and%20poor%20maintenance%2C%20is%20now%20considered%20the%20largest%20offshore%20oil%20spill%20in%20US%20history.%20It%20started%20with%20a%20rupture" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/&amp;title=Gulf+of+Mexico+%28BP%29+Oil+Spill+Visualization" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/&amp;title=Gulf+of+Mexico+%28BP%29+Oil+Spill+Visualization" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/06/gulf-of-mexico-bp-oil-spill-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress 3.0 Released!</title>
		<link>http://nitendra.com/blog/2010/06/wordpress-3-0-released/</link>
		<comments>http://nitendra.com/blog/2010/06/wordpress-3-0-released/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 19:25:31 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=291</guid>
		<description><![CDATA[Wordpress, the blogging platform that powers my blog, has released its newest version &#8211; 3.0!
6 months of hard work from 218 contributors, wordpress 3.0 offers a new theme, a lighter interface, contextual help on every screen, 1217 bug fixes and feature enhancements, bulk updates for plugins, and so much more! Watch the video below for [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress, the blogging platform that powers my blog, has released its newest version &#8211; 3.0!</p>
<p>6 months of hard work from 218 contributors, wordpress 3.0 offers a new theme, a lighter interface, contextual help on every screen, 1217 bug fixes and feature enhancements, bulk updates for plugins, and so much more! Watch the video below for more info:</p>
<p><center><embed src="http://s0.videopress.com/player.swf?v=1.03" type="application/x-shockwave-flash" width="550" height="308" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=BQtfIEY1&amp;isDynamicSeeking=true&amp;site=wporg" title="Introducing WordPress 3.0 &quot;Thelonious&quot;" id="video0"></embed></center></p>
<p>Link to Official Notes:</p>
<p><a href="http://wordpress.org/development/2010/06/thelonious/">http://wordpress.org/development/2010/06/thelonious/</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+3.0+Released%21+-+http://b2l.me/7d6s8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/06/wordpress-3-0-released/&amp;t=Wordpress+3.0+Released%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/06/wordpress-3-0-released/&amp;title=Wordpress+3.0+Released%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/06/wordpress-3-0-released/&amp;title=Wordpress+3.0+Released%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/06/wordpress-3-0-released/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Wordpress+3.0+Released%21&amp;body=Link: http://nitendra.com/blog/2010/06/wordpress-3-0-released/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Wordpress%2C%20the%20blogging%20platform%20that%20powers%20my%20blog%2C%20has%20released%20its%20newest%20version%20-%203.0%21%0D%0A%0D%0A6%20months%20of%20hard%20work%20from%20218%20contributors%2C%20wordpress%203.0%20offers%20a%20new%20theme%2C%20a%20lighter%20interface%2C%20contextual%20help%20on%20every%20screen%2C%201217%20bug%20fixes%20and%20feature%20enhancements%2C%20bulk%20updates%20for%20plugins%2C%20and%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/06/wordpress-3-0-released/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/06/wordpress-3-0-released/&amp;title=Wordpress+3.0+Released%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/06/wordpress-3-0-released/&amp;title=Wordpress+3.0+Released%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/06/wordpress-3-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow World Cup Games &#8211; Live Updates</title>
		<link>http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/</link>
		<comments>http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 21:28:39 +0000</pubDate>
		<dc:creator>Niten</dc:creator>
				<category><![CDATA[Current Events]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://nitendra.com/blog/?p=306</guid>
		<description><![CDATA[Are you at your office and cannot watch the World Cup games live? Are you tired of missing out and getting the game scores spoiled for you?
Well, if so, here is the perfect website for you. Livescore is a website that auto-refreshes itself every few seconds with up-to-date happenings of every world cup match. Fouls, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://livescore.com"><img class="alignright size-full wp-image-312" style="border: 0pt none;" title="livescore.com" src="http://nitendra.com/blog/wp-content/uploads/2010/06/livescore2-e1277761348746.jpg" alt="" width="244" height="181" /></a>Are you at your office and cannot watch the World Cup games live? Are you tired of missing out and getting the game scores spoiled for you?</p>
<p>Well, if so, here is the perfect website for you. Livescore is a website that auto-refreshes itself every few seconds with up-to-date happenings of every world cup match. Fouls, Corners, Free-kicks, Substitutions, etc are all covered on this website by the minute. So if you can&#8217;t watch the video itself, this is the next best thing.</p>
<p>The link to the website: <a class="linkification-ext" title="Linkification: http://www.livescore.com" href="http://www.livescore.com">http://www.livescore.com</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Follow+World+Cup+Games+-+Live+Updates+-+http://b2l.me/7epvg&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/&amp;t=Follow+World+Cup+Games+-+Live+Updates" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/&amp;title=Follow+World+Cup+Games+-+Live+Updates" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/&amp;title=Follow+World+Cup+Games+-+Live+Updates" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Follow+World+Cup+Games+-+Live+Updates&amp;body=Link: http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Are%20you%20at%20your%20office%20and%20cannot%20watch%20the%20World%20Cup%20games%20live%3F%20Are%20you%20tired%20of%20missing%20out%20and%20getting%20the%20game%20scores%20spoiled%20for%20you%3F%0D%0A%0D%0AWell%2C%20if%20so%2C%20here%20is%20the%20perfect%20website%20for%20you.%20Livescore%20is%20a%20website%20that%20auto-refreshes%20itself%20every%20few%20seconds%20with%20up-to-date%20happenings%20of%20every%20wor" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/&amp;title=Follow+World+Cup+Games+-+Live+Updates" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/&amp;title=Follow+World+Cup+Games+-+Live+Updates" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://nitendra.com/blog/2010/06/follow-world-cup-games-live-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

