<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sanjay Varanasi</title>
	<atom:link href="http://sanjayvaranasi.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sanjayvaranasi.wordpress.com</link>
	<description>This is my nation!</description>
	<lastBuildDate>Thu, 23 Feb 2012 04:13:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sanjayvaranasi.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sanjay Varanasi</title>
		<link>http://sanjayvaranasi.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sanjayvaranasi.wordpress.com/osd.xml" title="Sanjay Varanasi" />
	<atom:link rel='hub' href='http://sanjayvaranasi.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Incremental backup for free!</title>
		<link>http://sanjayvaranasi.wordpress.com/2011/10/23/incremental-backup-for-free/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2011/10/23/incremental-backup-for-free/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 09:59:25 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=391</guid>
		<description><![CDATA[I have a nice collection of music on my computer and have been wanting to back it up to my external drive for a very long time. However, my collection grows almost every week and I&#8217;d hate to have to &#8230; <a href="http://sanjayvaranasi.wordpress.com/2011/10/23/incremental-backup-for-free/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=391&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a nice collection of music on my computer and have been wanting to back it up to my external drive for a very long time. However, my collection grows almost every week and I&#8217;d hate to have to copy the entire 60+GB contents all over again to my backup drive. I wanted a piece of software that would do a &#8220;<a href="http://en.wikipedia.org/wiki/Incremental_backup" target="_blank">incremental backup</a>&#8220;.  Searching for a free and/or opensource solution led me nowhere until I realized I was using it all along and the solution was right under my nose. At work, we use <a href="http://en.wikipedia.org/wiki/Rsync" target="_blank">rsync</a> to get a variety of tasks done which includes incrementally copying data over to remote locations, all under a UNIX environment. So, would rsync work under Windows? I already knew about <a href="http://en.wikipedia.org/wiki/Cygwin" target="_blank">CygWin</a> so I got about searching installing RSync under Cygwin. <a href="http://www.gaztronics.net/rsync.php" target="_blank">Installation</a> was very simple and all it needed was checking &#8220;RSync&#8221; under the &#8220;Net&#8221; category during Cygwin setup. Those who already have Cygwin installed, fret not, you can run &#8220;setup.exe&#8221; as many times as needed to add/remove components.</p>
<p>Once that was done, I <a href="http://geekswithblogs.net/renso/archive/2009/10/21/how-to-set-the-windows-path-in-windows-7.aspx" target="_blank">set the PATH variable</a> on my machine to include C:\Cygwin\bin . This step lets you run the &#8220;rsync&#8221; command from outside the &#8220;bin&#8221; directory.</p>
<p>Now, I opened a Command Prompt and tried a copy from C:\xxxx\Music\ (source) to G:\ (desintation). Fail+Errors. (I won&#8217;t tell you what errors as I intend to keep this post simple.) I searched around a bit and found that Cygwin refers to each drive on your Windows machine as a unix folder. So your &#8220;C:\&#8221; drive would be &#8220;/cygdrive/c&#8221;. Your &#8220;G:\&#8221; drive would be &#8220;/cygdrive/g&#8221;. After this revelation, I modified my command and entered it as follows:</p>
<pre>rsync -av --delete /cygdrive/xxxx/Music/   /cygdrive/Music/</pre>
<p>RSync instantly started its work and my music started copying over to the new location.<br />
The &#8220;-a&#8221; option passed to the rsync command stands for <em>archive</em> &#8211; means it preserves permissions (owners, groups), times, symbolic links, and devices.<br />
The &#8220;-v&#8221; option stands for <em>verbose</em> &#8211; it prints on the screen what is being copied<br />
The &#8220;&#8211;delete&#8221; option deletes any files from the destination that no longer exist in the source. It is recommended you use this option unless you know what you&#8217;re doing.</p>
<p>During the copy I accidentally closed the Command Prompt. I was worried I might have messed up the copy. However, I opened up a new &#8220;cmd&#8221; window and ran the same command and the copy started right where it stopped and finished successfully.</p>
<p>This method of backing up might not be everyone&#8217;s cup of tea, especially for those not so technically inclined. I just wish someone would write a nice GUI wrapper for rsync so people could just choose a source and a destination and the rest could be taken care of by the software.</p>
<p>However, for now, I have placed this command in a <a href="http://www.makeuseof.com/tag/write-simple-batch-bat-file/" target="_blank">batch file</a> (.bat) on my desktop so I can run it whenever I have new music to be backed up. This saves me the trouble of dealing with the command prompt and typing in the command every time. Place a &#8220;pause&#8221; in the batch file so the command prompt window doesn&#8217;t exit after RSync is complete.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/391/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=391&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2011/10/23/incremental-backup-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>
	</item>
		<item>
		<title>Growing mango from seed</title>
		<link>http://sanjayvaranasi.wordpress.com/2011/07/22/growing-mango-from-seed/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2011/07/22/growing-mango-from-seed/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 05:02:04 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Go Green]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=383</guid>
		<description><![CDATA[It is astonishing how fast a mango can grow from seed (after germinating, that is). A few weeks ago, I was relishing a ripe mango when I had the idea of trying to get it to germinate. After I was &#8230; <a href="http://sanjayvaranasi.wordpress.com/2011/07/22/growing-mango-from-seed/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=383&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is astonishing how fast a mango can grow from seed (after germinating, that is). A few weeks ago, I was relishing a ripe mango when I had the idea of trying to get it to germinate. After I was done gorging on it, I kept the seed and let it dry out in the air outside my balcony for about 3-4 days (nothing calculated, pure randomness). Then I prepared a pot (a.k.a CD case) with a mixture of soil and compost, placed the seed upright, leaving equal amounts of soil at the bottom and the top. Note that I did not take the pit out of the seed. Then, I poured some water and forgot about it. The fact is I had at that time several pots with other seeds none of them labeled (I&#8217;m lazy and I like surprises). So, I kept watering this pot along with the others. A few weeks later, I sowed 3 seeds of the Morning Glory plant in the same pot not knowing what was cooking inside. At around the same time that one of the seeds of the Morning Glory germinated, I noticed another sapling emerging from the pot, with a bunch of purplish-red leaves already noticeable and a thick red stem ready to shoot out. A couple of days later, there it emerged in full glory, the mango sapling. I was tremendously happy to see it germinate, although I barely had any expectations when I sowed the seed. Remember how I got all excited with the Olive? It never germinated!</p>
<p>Fast forward 2 weeks and this is how the sapling stands today:<a href="http://sanjayvaranasi.files.wordpress.com/2011/07/img_1939.jpg"><img class="alignnone size-full wp-image-385" title="IMG_1939" src="http://sanjayvaranasi.files.wordpress.com/2011/07/img_1939.jpg?w=640&#038;h=987" alt="" width="640" height="987" /></a></p>
<p>This sapling has been growing fast, and how! Mother jokingly remarked if we could harvest it within the next few weeks. The plant has already surpassed, in height, <em>all </em> other plants in my collection (even the 1year old curry leaves plants). The morning glory stands beside it in the same pot, in awe of the speed of the mango.</p>
<p><a href="http://sanjayvaranasi.files.wordpress.com/2011/07/img_1938.jpg"><img class="alignnone size-full wp-image-384" title="IMG_1938" src="http://sanjayvaranasi.files.wordpress.com/2011/07/img_1938.jpg?w=640" alt=""   /></a></p>
<p>Notice how large the leaves have grown already. They&#8217;re already changing to the typical mango green from the red-brown that they were a few days back. I&#8217;m only worried that at this pace it would soon outgrow my CD case pot. Where do I take it next? Plant it in the ground somewhere or upgrade to a large pot? Does it make sense to continue growing a mango in a pot when it would (probably) be happier stretching its feet into the ground?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/383/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=383&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2011/07/22/growing-mango-from-seed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>

		<media:content url="http://sanjayvaranasi.files.wordpress.com/2011/07/img_1939.jpg" medium="image">
			<media:title type="html">IMG_1939</media:title>
		</media:content>

		<media:content url="http://sanjayvaranasi.files.wordpress.com/2011/07/img_1938.jpg" medium="image">
			<media:title type="html">IMG_1938</media:title>
		</media:content>
	</item>
		<item>
		<title>Is this the path to God?</title>
		<link>http://sanjayvaranasi.wordpress.com/2011/04/18/is-this-the-path-to-god/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2011/04/18/is-this-the-path-to-god/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 15:37:26 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Country Affairs]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=370</guid>
		<description><![CDATA[A temple priest to a bunch of devotees at a random temple: Which &#8216;darshan&#8217; would you like to prefer today: - Regular darshan of God&#8217;s idols from far away for Rs15/- in a very long queue? - Silver darshan from &#8230; <a href="http://sanjayvaranasi.wordpress.com/2011/04/18/is-this-the-path-to-god/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=370&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A temple priest to a bunch of devotees at a random temple:</p>
<p>Which &#8216;darshan&#8217; would you like to prefer today:<br />
- Regular darshan of God&#8217;s idols from far away for Rs15/- in a very long queue?<br />
- Silver darshan from 10 feet away for Rs50/- in a long queue?<br />
- Gold darshan from 3 feet away for Rs 100/- in a very short queue ?<br />
- Platinum darshan including touching idols&#8217; feet for Rs350/- and no queue at all?</p>
<p>One of the devotees says she earns Rs20/- per day and not able to afford to pay Rs15,  mumbles something and leaves. Another devotee says he&#8217;ll pay for the Regular darshan. Meanwhile a software engineer dressed in a Louis Phillipe shirt and a bluetooth headset on his ear, says he is willing to pay Rs100 and stand in the short queue and get with it &#8216;quick&#8217;. Meanwhile, a VIP (government servant) arrives at the temple in a fleet of cars and pushes his way himself into the temple while various &#8216;salams&#8217; are thrown at him by temple guards and priests.</p>
<p>There is yet another temple elsewhere in a residential colony. This temple only has one priest and has occasional devotees. While waiting for the next devotee, the priest continues to play remixed bhajans and songs at blaring decibel levels. People passing by the temple touch their heart with their right hand as a symbol of &#8216;devotion&#8217;. Meanwhile, a family arrives at the temple, removes their &#8216;dirty&#8217; footwear and starts praying. The priest blurts out a few mantras, jingles the bell, puts a dome on their head and eagerly waits for his tip. He pockets the money and returns to his seat waiting for more &#8216;devotees&#8217;.</p>
<p>Is this what you call religion, and is this what it has come to? I thought religion was founded as a means to connect with the spiritual and as a path of light for when all other ways seem to be dark. However, the mockery that has been made of religion these days just turns me off and the very idea of God and religion that people have come to create in their minds is just disgusting for a large part.</p>
<p>I question the government: Who gave you the right to segregate people based on their economical status at a temple?All along, I was taught that God sees no race, color, or bank balance. Why should government servants be given a VIP treatment? Are they above the commoners who elected them into power, or is it they have been chosen as special devotees by God Himself?</p>
<p>I question people, what makes you start praying something that was a block of clay or a shapeless stone just sometime ago? What makes you think for any moment that God might be present in these idols or places of worship that man made himself a few weeks, years or hundreds of years ago? What devotion is this that can be bought for a few Rupees and is forgotten the moment you step outside the temple? Have you ever wondered why man has been subject to this strange phenomenon called Religion?</p>
<p>I welcome criticism.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/370/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=370&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2011/04/18/is-this-the-path-to-god/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>
	</item>
		<item>
		<title>Growing olives from seed</title>
		<link>http://sanjayvaranasi.wordpress.com/2011/03/11/growing-olives-from-seed/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2011/03/11/growing-olives-from-seed/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 13:56:20 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Go Green]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=364</guid>
		<description><![CDATA[Olives, in India, are only present in the form of bottled &#38; pitted olives in brine solution. I felt it would nice and unique to have an olive plant growing in my apartment garden. So, I went online and ordered &#8230; <a href="http://sanjayvaranasi.wordpress.com/2011/03/11/growing-olives-from-seed/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=364&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Olives, in India, are only present in the form of bottled &amp; pitted olives in brine solution. I felt it would nice and unique to have an olive plant growing in my apartment garden. So, I went online and ordered for Olive seeds on Ebay. 10 seeds for about $5. I got them in 3 weeks along with a free gift. I was excited looking at the seeds and immediately got one pot out and prepared it with some nice wet brown soil. I only had ten and I had never planted olives before, so not wanting to lose to experimentation, I planted only one. And waited, and waited, and waited as my excitement turned into anxiety and finally after 2 months I gave up. I dug out the seed to find out nothing had happened to it. It was <em>just </em>as I had left it except that it had become muddy. All along these 2 months, I was occasionally reading about growing olives from seed and realized they had a hard shell that needed to be scoured. However I had no idea how much I had to scour until I started out on it.</p>
<p>I took a fresh seed and started with a little saw I had lying around. I began carefully, trying not to damage the seed. Then I picked up speed and then some, until at one point I couldn&#8217;t believe how deep I had already gone. Some more scouring later, I was able to see that the shell was giving away to a hollow inside. I started scouring along the seed and finally pried it open. What I saw shocked me, for inside, lay a tiny cumin sized dark seed. Then I glanced at the shell and boy was that thick! It took me 20 minutes of careful sawing to get rid of it.</p>
<p><a href="http://sanjayvaranasi.files.wordpress.com/2011/03/img_1488.jpg"><img class="alignnone size-full wp-image-365" title="IMG_1488" src="http://sanjayvaranasi.files.wordpress.com/2011/03/img_1488.jpg?w=640&#038;h=421" alt="" width="640" height="421" /></a></p>
<p>This is what I used to pry it open.</p>
<p><a href="http://sanjayvaranasi.files.wordpress.com/2011/03/img_1493.jpg"><img class="alignnone size-full wp-image-366" title="IMG_1493" src="http://sanjayvaranasi.files.wordpress.com/2011/03/img_1493.jpg?w=640&#038;h=268" alt="" width="640" height="268" /></a></p>
<p>I have sowed it in a coconut shell containing a mix of mud and used-tea leaves. A great way to reuse those shells and it has a natural hole at the bottom for drainage! Tea is supposed to be an excellent fertilizer. So, I&#8217;m back to the waiting game now. I hope I have a beautiful olive plant in a few weeks from now! On a side note, I wonder how these seeds ever propagated through all these centuries with such hard shells? Maybe they just waited for the odd elephant or dinosaur to come along and crush the shell away!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/364/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/364/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=364&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2011/03/11/growing-olives-from-seed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>

		<media:content url="http://sanjayvaranasi.files.wordpress.com/2011/03/img_1488.jpg" medium="image">
			<media:title type="html">IMG_1488</media:title>
		</media:content>

		<media:content url="http://sanjayvaranasi.files.wordpress.com/2011/03/img_1493.jpg" medium="image">
			<media:title type="html">IMG_1493</media:title>
		</media:content>
	</item>
		<item>
		<title>Greenlands junction needs help!</title>
		<link>http://sanjayvaranasi.wordpress.com/2010/12/18/greenlands-junction-needs-help/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2010/12/18/greenlands-junction-needs-help/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 18:18:16 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Country Affairs]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=353</guid>
		<description><![CDATA[Say &#8220;Peak Time&#8221; in the morning and the Greenlands junction is jammed half-way on the bridge, with traffic crawling like snails on the road on a lazy rainy day, dodging vehicles negotiating a right turn from the leftmost lane on &#8230; <a href="http://sanjayvaranasi.wordpress.com/2010/12/18/greenlands-junction-needs-help/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=353&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Say &#8220;Peak Time&#8221; in the morning and the Greenlands junction is jammed half-way on the bridge, with traffic crawling like snails on the road on a lazy rainy day, dodging vehicles negotiating a right turn from the leftmost lane on the flyover, and those coming from under the bridge/Lifestyle building heading towards Greenlands. Frankly, I&#8217;m tired of this sh*t. It is time folks @ GHMC think of a solution to this other than the police waving green wands frantically, trying to clear the jam. To be honest, right-turning traffic is not as heavy as things might make you think. It is more to do with the great-minds on the road cutting corners to get ahead into the turn. I&#8217;m no traffic engineer, but I&#8217;ve come up with a &#8216;solution&#8217; here to lock right-turners from trying various feats at the junction. It is totally open to criticism.</p>
<p><a href="http://sanjayvaranasi.files.wordpress.com/2010/12/greenlands_2.jpg"><img class="alignnone size-full wp-image-354" title="greenlands_2" src="http://sanjayvaranasi.files.wordpress.com/2010/12/greenlands_2.jpg?w=640&#038;h=938" alt="" width="640" height="938" /></a></p>
<p>In my solution:<br />
The two lanes under the Begumpet bridge at the LifeStyle barely have enough traffic to require two lanes. In my solution, this has been reduced to one normal lane and one Temporary Parking Lane (in criss-cross green marking, and can probably be painted green. <a href="http://www.team-bhp.com/forum/iipcache/139708.jpg" target="_blank">See this painted lane</a>), one that can be used by Autorikshaws/Taxis to drop off customers and car owners to stop for valet parking.</p>
<p>Barricades (dotted orange on white) have been proposed separating the Begumpet bridge from the LifeStyle road to prevent illegal turns at the end of the bridge. This is longer than the current concrete dividers. There still is no way you can prevent traffic from UmaNagar from cutting across lanes to turn right. One solution would be to extend the barricades all the way up until a point where they can no longer negotiate a right turn and would have to proceed to take a U-turn at the Somajiguda circle. Compromises need to be made.</p>
<p>Width of thoroughfare has been fixed at 4 lanes, 3 Lanes from the Begumpet flyover + one coming from LifeStyle road. &#8211; this is something I propose for the entire SP road stretch. 4 on each side of the road. More on this later.</p>
<p>Taking advantage of the space created by the Greenlands flyover, two turning lanes have been added for those turning right towards Greenlands. Again metal barricades are proposed to prevent people turning right form the other lanes. One of these lanes also acts as a U-Turn. The pocket for these turning lanes is actually quite long, judging from my physical examination of this area sometime back, allowing for a significant number of vehicles to fit in. This has been achieved by extending the stop line farther than present since the right turn from Greenlands towards Somajiguda is anyway disallowed.</p>
<p>People going straight from Somajiguda circle towards the Begumpet bridge have two lanes, one going straight ahead to UmaNagar (? not sure of the name), one going onto the bridge.</p>
<p>All unnecessarily paved road has been marked as Yellow (not including yellow median lines indicating opposite sides of the road). These extra spaces can be used to construct some much needed footpaths and are wide enough in most places for trees as well.</p>
<p>It is my firm belief that if three lanes on each side of the Begumpet bridge are enough to get traffic going smoothly, we wouldn&#8217;t need more than 4 consistent lanes on the road. My plan is to provide solutions for the entire SP Road stretch starting from St.Anns school until Somajiguda circle with 4 lanes on each side of the road.</p>
<p>This solution targets several issues at one go: Illegal u-turns, haphazard parking, lack of footpaths, wild-lane-changing behavior, inconsistent number of lanes (width of thoroughfare), and artificial bottlenecks at the right turn.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/353/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=353&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2010/12/18/greenlands-junction-needs-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>

		<media:content url="http://sanjayvaranasi.files.wordpress.com/2010/12/greenlands_2.jpg" medium="image">
			<media:title type="html">greenlands_2</media:title>
		</media:content>
	</item>
		<item>
		<title>Baava &#8211; A ridiculous movie. Not for the urban viewer.</title>
		<link>http://sanjayvaranasi.wordpress.com/2010/10/30/baava-a-ridiculous-movie-not-for-the-urban-viewer/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2010/10/30/baava-a-ridiculous-movie-not-for-the-urban-viewer/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 18:31:51 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=347</guid>
		<description><![CDATA[Just came back after watching Siddarth&#8217;s latest movie &#8211; Baava. I usually go to Siddarth&#8217;s movies blindly, without waiting for reviews, and this was no different especially as this was released more than a year after his previous Oy! Add &#8230; <a href="http://sanjayvaranasi.wordpress.com/2010/10/30/baava-a-ridiculous-movie-not-for-the-urban-viewer/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=347&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just came back after watching Siddarth&#8217;s latest movie &#8211; Baava. I usually go to Siddarth&#8217;s movies blindly, without waiting for reviews, and this was no different especially as this was released more than a year after his previous Oy! Add to that, I was watching a movie after nearly 5 months, a stark contrast to the 2 movies per week ME that I was until last year. So, I booked tickets online early in the week, and was eagerly waiting for the weekend. But, just 5 minutes into the film,  I knew I got stuck big time.</p>
<p>Right from the start, the script was loose, and the story never went anywhere. None of the characters in the movie had anything solid to perform. Nope, not even the hero. Siddarth himself did try to deliver his best, although it was clear that he was not able to involve himself into the shallowly written script. Emotions were thrown around in spots, with (forced) comedy performances by Sid&#8217;s sidekicks and a special appearance by Brahmanandam and Ali. Performances by Brahmanandam usually provide a round of relief in most useless movies, but the spoof written for him and Ali was also so poorly done nobody could spare a smile a few scenes later.</p>
<p>Music, by Chakri, was well below the bearable, except for the title &#8220;Baava&#8221; song (sung by Sid himself) which had decent beats. Background score was non-existent except for the odd &#8216;copied-from-another-movie&#8217; bit thrown at the audience once in a while.</p>
<p>There was very little utilization of Rajendra Prasad&#8217;s acting skills and his performance in this movie pales in comparison, wait, should not even be compared to his performance in any other movie of his. During the few minutes he is on the screen, he is adding &#8216;sentimental value&#8217; to the movie or is being humiliated by others. He and Sid did share decent chemistry on screen but again the script fails to make use of the same.</p>
<p>The new heroine Pranitha looks to have been subtly used to lure front row audiences of the Rs10 per ticket kind, although not as obviously as heroines are in other &#8216;mass&#8217; movies. Other performances are highly repetitive from a plethora of other movies and are forgettable.</p>
<p>This movie has nothing to offer for the educated, office going class found in multiplexes. Rather people were found (including us) laughing at all the crap this movie was dishing out, for we had nothing better to do in the movie hall. Tilting more towards the mass-movie angle, but still not completely, this movie might not be &#8216;paisa wasool&#8217; for the Rs10 hooters either. In short, Siddarth has picked a terrible movie and will be adding this to his  &#8220;Forgettable Movies&#8221; kitty along with Aata, which still was miles ahead of this shit. Never am I going to watch another movie without reading its reviews.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/347/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=347&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2010/10/30/baava-a-ridiculous-movie-not-for-the-urban-viewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 BSOD (E1K62x64.sys) issue with Intel 82577 Ethernet controller, solved</title>
		<link>http://sanjayvaranasi.wordpress.com/2010/10/24/windows-7-bsod-e1k62x64-sys-issue-with-intel-82577-ethernet-controller-solved/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2010/10/24/windows-7-bsod-e1k62x64-sys-issue-with-intel-82577-ethernet-controller-solved/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 07:03:53 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=341</guid>
		<description><![CDATA[A few days ago, a Windows 7 64 bit user came up with a &#8220;XP Downgrade&#8221; request citing blue screen issues with her Win7 installation. First, this issue which was apparently troubling the user for a few days was never &#8230; <a href="http://sanjayvaranasi.wordpress.com/2010/10/24/windows-7-bsod-e1k62x64-sys-issue-with-intel-82577-ethernet-controller-solved/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=341&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few days ago, a Windows 7 64 bit user came up with a &#8220;XP Downgrade&#8221; request citing blue screen issues with her Win7 installation. First, this issue which was apparently troubling the user for a few days was never reported. Second, IT doesn&#8217;t like being told what to do (keep this in mind you all). Throw us a issue and we&#8217;ll happily try fixing it. Tell us what to do and you&#8217;ll have us wasting your time even more. IT ego. Third, XP support being withdrawn soon, I just did not want to downgrade just to upgrade it a few months later along with the other XP users. Pain.</p>
<p>So, I downright refused to downgrade this user&#8217;s Win7 and started troubleshooting with my &#8216;experience&#8217;. We had received several complaints from Win7-64 users of Blue Screens caused due to Symantec Endpoint Protection&#8217;s older versions. Users suffered until Symantec came up with their SEP 11 RU6 which fixed the BSODs clean. Assuming the case here, I upgraded this machine&#8217;s SEP to the latest RU6 from RU5. Nope, that didn&#8217;t help. A case of blindly applying past solutions to the present.</p>
<p>Next time it BSOD&#8217;d, I noted down the file crashing the OS. It was a naughty file called &#8211; E1K62x64.sys. Did a little digging up on the Internet and was suggested that this is a case of out dated drivers for Intel&#8217;s 82577 Gigabit Ethernet Controller. So, out I went downloading drivers from Intel&#8217;s website. Uninstalled the older drivers and installed the &#8216;new&#8217; ones. Useless. Machine crashes again. Next, I tried the drivers from the OEM website, Dell here. Machine crashes. I returned the machine to the user, disappointed that I was not able to fix the issue.</p>
<p>Later in the day, I asked the user to leave the laptop with me before leaving for home. I returned to the error with renewed energy and after some serious web-digging, found the solution to the issue in the form of two posts in a single thread on Intel&#8217;s forum.</p>
<p>Apparently, this issue was being caused due to Intel missing out two lines (yes, two lines) from it&#8217;s driver file E1K62x64.inf causing Win7 to go crazy.</p>
<p>Here is the Intel forum post:</p>
<blockquote><p>The cause of the blue screen is a missing entry in the driver install  information file (INF). You could edit the file, uninstall the Intel(R)  Network Connections software, and then install again from a software  copy with the edited INF file.</p>
<p>Follow these steps.</p>
<ol>
<li>
<div>Make  a copy of the original software package before you do the other steps  so you can go back to the original file if you make a mistake.</div>
</li>
<li>
<div>Open your software package with WinZip* or a similar program.</div>
</li>
<li>
<div>In the PRO1000\Winx64\NDIS62 directory you will find the e1k62x64.inf file.</div>
</li>
<li>
<div>Open the file.</div>
</li>
<li>
<div>Find the [E10EA.HW] and [E10EB.HW] sections</div>
</li>
<li>
<div>Add this line to each of the above sections<br />
AddReg = MSI.reg</div>
</li>
<li>
<div>Save the file and install the drivers and software.</div>
</li>
</ol>
<p>The edited sections should look like this example when you are done.</p>
<p>[E10EA.HW]<br />
Include = machine.inf<br />
Needs = PciIoSpaceNotRequired<br />
AddReg = MSI.reg</p>
<p>[E10EB.HW]<br />
Include = machine.inf<br />
Needs = PciIoSpaceNotRequired<br />
AddReg = MSI.reg</p></blockquote>
<p>In case that just flew over your head, please read this post in addition to the info posted above for additional help: http://communities.intel.com/message/102600#102600</p>
<p>If you&#8217;ve been banging your head on the wall with this, I hope I am able to save both your time and trouble with this post. By the way, if you&#8217;re wondering how I recreated the BSOD with such ease, it is indeed simple. Initiate atleast two file transfers from a network share and open a youtube video in any browser. Crash for sure.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/341/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=341&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2010/10/24/windows-7-bsod-e1k62x64-sys-issue-with-intel-82577-ethernet-controller-solved/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>
	</item>
		<item>
		<title>Dignigied response to the Ayodhya verdict.</title>
		<link>http://sanjayvaranasi.wordpress.com/2010/10/03/dignigied-response-to-the-ayodhya-verdict/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2010/10/03/dignigied-response-to-the-ayodhya-verdict/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 04:27:44 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Country Affairs]]></category>

		<guid isPermaLink="false">http://sanjayvaranasi.wordpress.com/?p=337</guid>
		<description><![CDATA[On the Thursday of 30th Sep&#8217;10, the nation rose to a tension filled morning, not sure what trouble to expect to erupt at what time, with police and paramilitary literally locking down the nation in many sensitive area. At 4pm, &#8230; <a href="http://sanjayvaranasi.wordpress.com/2010/10/03/dignigied-response-to-the-ayodhya-verdict/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=337&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On the Thursday of 30th Sep&#8217;10, the nation rose to a tension filled morning, not sure what trouble to expect to erupt at what time, with police and paramilitary literally locking down the nation in many sensitive area. At 4pm, glued to the TV sets were thousands of households watching a bunch of irresponsible lawyers showing signs of victory and we were almost sure we&#8217;d be under curfew.</p>
<p>However to everyone&#8217;s surprise (and relief) there was not a single report of violence in the whole country, thanks to the late judgment, a more informed public, toned-down politicians, and requests for peace from various communities. Online communities, twitter comments were full of requests for peace, and suggestions on what would be best in the interest of the nation, with some recommending leaving the land totally barren, or constructing a memorial, and more. The latest news article reports about a Shia body offering 15 lakhs for the construction of a temple and requesting the Waqf board to not appeal in the SC. Hats off! This is indeed a very mature response to the verdict and goes to show that we are growing as a nation.</p>
<p>It&#8217;s my humble request to all fellow citizens of India to put down  ill-feelings  based on cast, religion, region and language and move ahead as a united nation. Let&#8217;s stop building religious structures and start building the nation!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=337&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2010/10/03/dignigied-response-to-the-ayodhya-verdict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>
	</item>
		<item>
		<title>Don&#8217;t make us work : GHMC</title>
		<link>http://sanjayvaranasi.wordpress.com/2010/07/21/dont-make-us-work-ghmc/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2010/07/21/dont-make-us-work-ghmc/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 15:23:10 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=289</guid>
		<description><![CDATA[In a response to one of the RTI applications I filed, GHMC subtly tell us they do not want to be made to work. A few weeks ago, I filed two complaints pertaining to the Secunderabad GHMC office, one about &#8230; <a href="http://sanjayvaranasi.wordpress.com/2010/07/21/dont-make-us-work-ghmc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=289&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In a response to one of the RTI applications I filed, GHMC subtly tell us they do not want to be made to work.</p>
<p>A few weeks ago, I filed two complaints pertaining to the Secunderabad GHMC office, one about broken traffic lights at Mettuguda (<a href="http://www.ghmc.gov.in/ghmcparishkruthi/grievance_historypublic.asp?reg_no=10ENG1694">10ENG1694</a>) which look like they were stoned to death; second about a breach in a divider at Rail Nilayam (<a href="http://www.ghmc.gov.in/ghmcparishkruthi/grievance_historypublic.asp?reg_no=10ENG1713">10ENG1713</a>) which causes painful traffic slowdowns every evening. While I do not have an image for the first grievance, here are pics depicting the second grievance:</p>
<p><a href="http://img841.imageshack.us/i/img0327o.jpg/" target="_blank"><img src="http://img841.imageshack.us/img841/928/img0327o.th.jpg" alt="" border="0" /></a></p>
<p>A typical example of too many layers of the road eventually reaching up to the height of the divider. And wonder of wonders, we have perennial potholes even after so many &#8216;layers&#8217;.</p>
<p><a href="http://img710.imageshack.us/i/img0330y.jpg/" target="_blank"><img src="http://img710.imageshack.us/img710/1192/img0330y.th.jpg" alt="" border="0" /></a></p>
<p>I can also smell the hands of the petrol pump owners here. This would have definitely done wonders to their business.</p>
<p>Here is the RTI application I had filed: <a href="http://sanjayvaranasi.files.wordpress.com/2010/07/rti-mettuguda1-1.doc">rti-mettuguda</a></p>
<p>And, here is the response from EE-Div-11 : <a href="http://sanjayvaranasi.files.wordpress.com/2010/07/rti-act1.doc">RTI Response</a></p>
<p>Here is the portion where they mention the list of officers associated with these grievances:</p>
<table width="634" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="63">
<p align="center"><strong>Sl.No.</strong></p>
</td>
<td width="166">
<p align="center"><strong>Name of the Officer</strong></p>
</td>
<td width="159">
<p align="center"><strong>Designation</strong></p>
</td>
<td width="133">
<p align="center"><strong>Cell No.</strong></p>
</td>
<td width="114">
<p align="center"><strong>Remarks</strong></p>
</td>
</tr>
<tr>
<td width="63">
<p align="center">1.</p>
</td>
<td width="166">
<p align="center">Sri. Venkateshwara Rao</p>
</td>
<td width="159">
<p align="center">E.E. Project Divn-2, GHMC,</p>
</td>
<td width="133">
<p align="center">9959912577</p>
</td>
<td rowspan="2" width="114">
<p align="center">Regarding Road Dividers</p>
</td>
</tr>
<tr>
<td width="63">
<p align="center">2.</p>
</td>
<td width="166">
<p align="center">Sri. Chandra Shaker</p>
</td>
<td width="159">
<p align="center">EE (Traffic) GHMC</p>
</td>
<td width="133">
<p align="center">9959442432</p>
</td>
</tr>
<tr>
<td width="63">
<p align="center">3.</p>
</td>
<td width="166">
<p align="center">Sri. Madhulety</p>
</td>
<td width="159">
<p align="center">EE (Elec) NZ, GHMC</p>
</td>
<td width="133">
<p align="center">9849054407</p>
</td>
<td width="114">
<p align="center">Traffic Light</p>
</td>
</tr>
<tr>
<td width="63">
<p align="center">4.</p>
</td>
<td width="166">
<p align="center">Sri. Upender Reddy</p>
</td>
<td width="159">
<p align="center">Inspector of Police (Traffic)</p>
</td>
<td width="133">
<p align="center">9490616016</p>
</td>
<td width="114">
<p align="center">Police Traffic</p>
</td>
</tr>
</tbody>
</table>
<p>Now you atleast know who to call with regards to the Tarnaka/Sangeet pothole riddled stretch.</p>
<p>Note, there is absolutely no mention about the work done in regards to these grievances anywhere, which simply implies that there was no work done, at all. The GHMC is mandated to provide information regarding the work (not) done, which they haven&#8217;t. I can hear GHMC say : &#8220;Aaw, don&#8217;t make me work, don&#8217;t make me move my body now, please let me continue sleeping&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=289&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2010/07/21/dont-make-us-work-ghmc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>

		<media:content url="http://img841.imageshack.us/img841/928/img0327o.th.jpg" medium="image" />

		<media:content url="http://img710.imageshack.us/img710/1192/img0330y.th.jpg" medium="image" />
	</item>
		<item>
		<title>GHMC redefines &quot;Rectified&quot; Part II. Fixes after RTI.</title>
		<link>http://sanjayvaranasi.wordpress.com/2010/06/29/ghmc-redefines-rectified-part-ii/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2010/06/29/ghmc-redefines-rectified-part-ii/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 18:31:12 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Country Affairs]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=273</guid>
		<description><![CDATA[Update2: GHMC fixes it. See last image in this post. Update: Filed an RTI as of today &#8211; 15th July 2010 regarding this. This should get you rolling on the floor, laughing. GHMC recently replaced seriously dysfunctional traffic lights at &#8230; <a href="http://sanjayvaranasi.wordpress.com/2010/06/29/ghmc-redefines-rectified-part-ii/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=273&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Update2: GHMC fixes it. See last image in this post.</strong><br />
<strong>Update: Filed an RTI as of today &#8211; 15th July 2010 regarding this.</strong></p>
<p>
<p>
This should get you rolling on the floor, laughing. GHMC recently replaced seriously dysfunctional traffic lights at the Jubilee Check post. However, one of the lights was installed in a way that it was blocked by Hyderabad Traffic Police&#8217;s own stand. See pic:</p>
<p>
<a href="http://img59.imageshack.us/i/checkpost.jpg/" target="_blank"><img src="http://img59.imageshack.us/img59/3310/checkpost.th.jpg" border="0" alt="" /></a></p>
<p>
On 4th June, I <a href="http://www.ghmc.gov.in/ghmcparishkruthi/grievance_historypublic.asp?reg_no=10ENG1614">filed a complaint</a> asking them to take care of it. A few days later, it read &#8220;Rectified&#8221; and when I checked it, I was shocked to see nothing had changed.</p>
<p>The best part comes when I looked at the signal yesterday and noticed this :</p>
<p>
<a target='_blank' href='http://img251.imageshack.us/i/jubilee2.jpg/'><img src='http://img251.imageshack.us/img251/7596/jubilee2.th.jpg' border='0' /></a></p>
<p>
Some genius actually let an advertiser put up a banner <em>exactly</em> in front of the traffic light, <em>completely</em> blocking the light now.</p>
<p>As a follow up to the great &#8216;job&#8217; done by GHMC, I have filed <em>another</em> <a href="http://www.ghmc.gov.in/ghmcparishkruthi/grievance_historypublic.asp?reg_no=10ENG1750">complaint just today</a>, and if no one decides to respond, or if some great GHMC worker again &#8220;fixes&#8221; it, I&#8217;ll have to use my secret weapon (Right to Information) to get the job done.</p>
<p>It&#8217;s funny how Indians have to <em>get</em> government workers to do the work they are<em> paid</em> for.</p>
<p>
Update2: After filing the RTI, GHMC fixes it:</p>
<p>
<a target='_blank' href='http://img80.imageshack.us/i/img0721sn.jpg/'><img src='http://img80.imageshack.us/img80/2296/img0721sn.th.jpg' border='0' /></a></p>
<p>
RTI works!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/273/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=273&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2010/06/29/ghmc-redefines-rectified-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d01d2c722e975c27682f2da0c10ae6db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hyd2vizag</media:title>
		</media:content>

		<media:content url="http://img59.imageshack.us/img59/3310/checkpost.th.jpg" medium="image" />

		<media:content url="http://img251.imageshack.us/img251/7596/jubilee2.th.jpg" medium="image" />

		<media:content url="http://img80.imageshack.us/img80/2296/img0721sn.th.jpg" medium="image" />
	</item>
	</channel>
</rss>
