<?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 &#187; Tech.</title>
	<atom:link href="http://sanjayvaranasi.wordpress.com/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://sanjayvaranasi.wordpress.com</link>
	<description>This is my nation!</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:02:18 +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 &#187; Tech.</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>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>Squeezing every Watt from your electricity bill.</title>
		<link>http://sanjayvaranasi.wordpress.com/2010/03/01/squeezing-every-watt-from-your-electricity-bill/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2010/03/01/squeezing-every-watt-from-your-electricity-bill/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 11:50:41 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Country Affairs]]></category>
		<category><![CDATA[Go Green]]></category>
		<category><![CDATA[Tech.]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[air conditioners]]></category>
		<category><![CDATA[bathroom]]></category>
		<category><![CDATA[BEE]]></category>
		<category><![CDATA[bharat]]></category>
		<category><![CDATA[CFLs]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[cooler]]></category>
		<category><![CDATA[devices]]></category>
		<category><![CDATA[efficient]]></category>
		<category><![CDATA[electricity]]></category>
		<category><![CDATA[energy]]></category>
		<category><![CDATA[fans]]></category>
		<category><![CDATA[heat]]></category>
		<category><![CDATA[heater]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[irons]]></category>
		<category><![CDATA[kitchen]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[summer]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=254</guid>
		<description><![CDATA[Summer is fast approaching, and we are all gearing up for power cuts for multiple hours. This is exactly when we also start running fans at full speed, water coolers, and air conditioners for several hours a day. While you &#8230; <a href="http://sanjayvaranasi.wordpress.com/2010/03/01/squeezing-every-watt-from-your-electricity-bill/">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=254&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Summer is fast approaching, and we are all gearing up for power cuts for multiple hours. This is exactly when we also start running fans at full speed, water coolers, and air conditioners for several hours a day. While you get ready for huge electricity bills, here&#8217;s what you can do to reduce that pain on the wallet:</p>
<p>1. Stop using your water heater. Have a bath in the evening when water is at its highest temperature due to the afternoon sun. Let me assure you, you won&#8217;t notice a difference in body freshness the next day.</p>
<p>2. Insulate windows and doors, especially those facing the sun, and if possible add glass glazing. Glass glazing lets light in, while putting the heat out. An alternative is to add window tints, those that reflect sun away.</p>
<p>God didn&#8217;t create the Sun for nothing. Use the sun&#8217;s light to the maximum extent possible but make sure to keep the heat out. When building a house design it keeping in view to maximise daylight.</p>
<p>3. Add heavy drapes or curtains of a light color to prevent any sunlight in during the day.</p>
<p>4. Close all doors and windows when the sun rises. Open up all possible doors and windows after the sun sets to let the air in the house cool down.</p>
<p>5. Lighting: Replace all bulbs in the house with Compact Fluorescent lights. Modern CFLs also come in yellow so you don&#8217;t have to compromise on that. Install 5W CFLs in bathrooms, because, believe me, they are bright enough for the job. For night lamps, don&#8217;t make the mistake of buying the so called Zero Watt bulbs, as most often they draw around 10-15W. Get a 1W LED bulb available at many electrical stores nowadays. These are nearly as bright as their bulb counterparts at a fraction of the drawn power.</p>
<p>Your job is only half done. Make sure you switch off any and every light when not using that room. Contrary to what rumors say, modern CFLs don&#8217;t lose their life with regular on/off cycles.</p>
<p>Turn off unnecessary lights. Avoid lighting the entire room and more for simple tasks. Do you need three 25W CFLs to watch TV? Use targeted lighting when working at a desk or on a kitchen platform or for a sink/basin. LED based target lights are very popular and save big on electricity and pay for themselves very quickly. Get a USB LED light for your laptop and avoid lighting up the entire room when working on your laptop.</p>
<p>6. Traditional PCs consume 200W &#8211; 300W during regular use along with a monitor. Laptops consume around 35-50W for the same processing power, and are also mobile. Get a second hand laptop if a new one seems expensive. For those that don&#8217;t require extensive processing power, an option is to go for Net-Tops that are stingy on electricity use.</p>
<p>If buying something is not an option for you, make sure you apply aggressive power settings on your PC like switching off the monitor when idle, powering down hard disks and switching into standby mode after a set time. Reduce the brightness on your CRT monitor to decrease power drawn. Switch off monitor when not at your desk. Shutdown the PC when not using it. Standby mode also keeps drawing some power from the outlet.</p>
<p>7. Completely switch off all devices like your TV, Set-top box, DVD Player, Music systems, microwaves, airconditioners, cellphone chargers, etc when not in use. Turning them off, and leaving them in <a href="http://en.wikipedia.org/wiki/Standby_power">Standby Mode</a> without flipping the switch will continue to drain power and burn a hole in your pocket. Standby losses of one device can be as much as 10-15W (according to WikiPedia), and sometimes more. Beware.</p>
<p>8. In the summer, if only using a fan, do not start it with a full blast. Instead, start from the least speed setting and slowly increase it to a comfortable setting. If using an evaporative cooler, get a modern energy-efficient branded appliance as these are optimized for effective utilization of both electricity and water. Non-branded coolers tend to draw very high electricity, thus reducing the cost benefit over an air conditioner.</p>
<p>If using an air conditioner, make sure to follow points 2,3 &amp; 4. It helps to cool down the house by opening doors and windows before switching on the air-con so there is lesser hot air for the air-con to cool, thus reducing load and the electricity consumption. Most Indians are used to heat and hot summers, then why freeze yourself at 22&#8242;C ? Instead, take off your rugs and increase the temperature to 26&#8242; or 27&#8242;C and use the ceiling fan or a targeted table fan to  remove hot air pockets around you. Remember, you only want to keep your body cool but you are cooling the entire room, furniture and appliances for this purpose. Air conditioning is the most inefficient way to keep cool. Just remind yourself that your ancestors lived without it for centuries, and didn&#8217;t go extinct.</p>
<p>9. Avoid stuffing your refrigerator with items that don&#8217;t need refrigeration. Some of us throw in everything at a refrigerator, ranging from ketchup, flours, dry masalas and powders. Don&#8217;t store half of your kitchen in the fridge. An over stuffed fridge runs at reduced efficiency.</p>
<p>Get the right sized refrigerator. Remember, a frost-free fridge needs more electricity to keep the freezer frost-free. Avoid repetitive opening of the fridge door. Avoid opening the door and then wondering what to take out. Use a clay-pot to cool your water and reduce that extra bit of load on the compressor. Water from clay pots are reportedly tastier. New clay-pots also come with a fitted tap to improve hygiene.</p>
<p>9. Buy energy efficient devices. The Indian government has come up with the BEE ratings that define the energy consumption of that particular appliance using a 5-star system. It is mandatory for several appliances to carry the rating. Energy-efficient devices may be expensive, but pay for themselves in the long run in electricity savings.</p>
<p>10. LCD monitors typically consume 1/5th of a comparable CRT monitor and newer devices also feature better viewing angles.<br />
Get a steam iron instead of a regular iron so you achieve a similar ironing experience using lesser heat.<br />
Use exhaust fans and chimneys to keep kitchen and bathroom heat off the house.</p>
<p>Energy efficiency shoots two birds in one shot. You not only pay lesser, every unit of electricity you save helps light another home somewhere  else in the country. Report electricity thefts to your nearest electricity distributor, and spread the message of power saving to your friends. As proof, throw them a party using some of the energy savings. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=254&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2010/03/01/squeezing-every-watt-from-your-electricity-bill/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>Getting Serious: Ubuntu Certification</title>
		<link>http://sanjayvaranasi.wordpress.com/2009/11/25/getting-serious-ubuntu-certification/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2009/11/25/getting-serious-ubuntu-certification/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 01:39:42 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=232</guid>
		<description><![CDATA[A few months back, I resolved to myself to be Ubuntu Certified by my next birthday (3rd September). To be Ubuntu certified, you would need to clear three exams: LPI 101, LPI 102 and Ubuntu 199. These can be taken &#8230; <a href="http://sanjayvaranasi.wordpress.com/2009/11/25/getting-serious-ubuntu-certification/">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=232&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few months back, I resolved to myself to be Ubuntu Certified by my next birthday (3rd September). To be Ubuntu certified, you would need to clear three exams: LPI 101, LPI 102 and Ubuntu 199. These can be taken in any order, but you need to clear them all in order to be certified by Ubuntu.I plan on taking them in order. Exam 101, 102 and finally 199.</p>
<p>Now, 2-1/2 months down, I have made progress, albeit little. Apart from collecting valuable websites, and guides, I have also covered Command-Line tools and Text-stream processing. I have also read a bit about managing software using Yum and Yast since I was not familiar with those package management tools before.</p>
<p>I have installed SuSe 11.1 and also plan on installing Fedora 11. My idea is to work with these Linux distributions and learn more about them in the process. Notice I&#8217;m installing an older version of both the Operating Systems so I get a chance to learn the upgrade process. My final aim is to get a working system with all drivers, codecs and updated packages at the end of this effort.</p>
<p>However, I&#8217;ve been going slow due to several reasons. I had to finish my requirements with the university, work on my resume and more. But, I&#8217;m getting serious about this now. I had a goal and I need to start working on it. I plan on doing so, one topic at a time. I&#8217;m starting with topics from <a href="http://www.lpi.org/eng/certification/the_lpic_program/lpic_1/exam_101_detailed_objectives" target="_blank">LPI 101 objectives</a>. I shall be updating this blog regularly, and whenever I complete a (sub)topic. If I happen to stumble upon good online resources, I will be posting them along with the update.</p>
<p>Wish me luck in my endeavor.  May the countdown begin!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=232&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2009/11/25/getting-serious-ubuntu-certification/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>Media player(s) hits brakes on Linux&#039;s trip to the deskop</title>
		<link>http://sanjayvaranasi.wordpress.com/2009/10/30/ubuntu-on-the-desktop-media-player-hassles/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2009/10/30/ubuntu-on-the-desktop-media-player-hassles/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 02:19:46 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=219</guid>
		<description><![CDATA[While the entire open-source world is all praise for the development happening with FOSS these days, and of how Linux will &#8216;take on the desktop&#8217; market (every) next year, I have a few reasons of my own for not making &#8230; <a href="http://sanjayvaranasi.wordpress.com/2009/10/30/ubuntu-on-the-desktop-media-player-hassles/">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=219&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While the entire open-source world is all praise for the development happening with FOSS these days, and of how Linux will &#8216;take on the desktop&#8217; market (every) next year, I have a few reasons of my own for not making the complete switch to Ubuntu on my laptop. In this post, I shall talk about sound: music and video players. It is true that a media-player can make or break a user&#8217;s choice to switch. My issues:</p>
<p>1. Equalizer: Does anybody using Linux never feel the need for an equalizer? Why isn&#8217;t there a system equalizer? I&#8217;m not sure how hard it is to code one, but when Canonical had enough resources and developer-time to deliver all the features that make Ubuntu so great, I&#8217;m sure it could allot some resources towards creating a system equalizer. Canonical, do you not get it? They should have included <a href="http://brainstorm.ubuntu.com/idea/1334/" target="_blank">this idea</a> with the 100 paper-cuts development program.</p>
<p>2. Proper Media player: And I mean &#8216;proper&#8217;. Windows Media Player, though criticized for God-knows-what, plays a lot of formats, with appropriate codecs, and it has a darn-good equalizer and a bass boost! Right now, Ubuntu has Movie Player for videos, Rhythmbox for music. Inconsistent. Have ONE media player, that actually works. And its not like these players play every format by default. They are worse than WMP for that matter, as you have to install  proprietary codecs (including MP3 support)  for formats you intend to play. Note: I KNOW its simple to install proprietary codec support on Ubuntu, but its not like its any harder on Windows. And, again coming back to the point, there is no darn equalizer integrated into either of these players (Totem MP/Rhythmbox).</p>
<p>But hey, Linux is all about choice! Right. List of players I tried:</p>
<p>Exaile:<br />
Pros : Enqueues Files, has mini-view and taskbar icon<br />
Cons: No Equalizer in the latest 0.31 version. Why would &#8216;development&#8217; remove features?</p>
<p>Songbird:<br />
Pros: Has library support, equalizer, and more<br />
Cons: You cannot select a file and say &#8216;Play with Songbird&#8217;, nor Enqueue files.</p>
<p>AmaroK:<br />
Pros: None<br />
Cons: Its v2.0. Nothing works. Doesn&#8217;t even play.<br />
Its a KDE app. Lots of KDE libs needed.</p>
<p>Listen:<br />
Pros: Enqueues files.<br />
Cons: Takes too long to start. Also, I fiddled with some settings and it never showed up again,<br />
though it played files from terminal. Strange.</p>
<p>VLC:<br />
Pros: Lots of formats supported<br />
Cons: Buggy. Some videos open up multiple (blank) video windows and some open up (blank) video windows during play.<br />
Equalizer cannot be saved. Each file opens in a new window, no matter what setting I choose in preferences.</p>
<p>To sum it up, none of these players qualify, even with my minimal player requirements:<br />
-Equalizer<br />
-Minimize to tray<br />
-Enqueue files on double-click<br />
&#8230; and thats it! I don&#8217;t need libraries, or FM support or device support or anything else!</p>
<p>Aren&#8217;t these supposed to be basic qualities of a &#8216;proper&#8217; media player? Well, with the Windows 7 launch, its full-on war from Microsoft, and in order to make Linux win, Canonical must listen to the community&#8217;s cries and must come up with a unique, all-in-one media player that can finally end the hours of time users spend in search of an ideal media-player.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>Update: </strong>Tried Banshee after reading some positive reviews. It has a good equalizer, minimizes to tray and enqueues files on double-click. There however, is an issue with the way queues are handled. Everytime I enqueue a file, it gets sorted into the currently playing queue. So, if for some reason the song I enqueue sorts itself above the currently playing song, it never plays.<br />
Nevertheless, I&#8217;ve switched to Banshee, it being the closest match to my requirements. Verdict: Half-Pass.</p>
<p><strong>Update2:</strong> Banshee now satisfies all my requirements. I had to turn off the sort feature to prevent files from sorting themselves into the queue. However, I wasn&#8217;t able to follow the <a href="http://banshee-project.org/support/guide/track-list/" target="_blank">instructions from banshee&#8217;s website </a>. What I ended up doing was adding the Date Added column which specifies when the file was added to the queue and using this column to sort the queue. You could then hide the column once you&#8217;re done setting it up. Now files added up onto the queue as FIFO and not in any sorted order. The next issue was of the player popping up (stealing focus) each time a file was enqueued. To this, I used the &#8216;&#8211;no-present&#8217; option and got rid of the menace.</p>
<p>I&#8217;m not an expert, neither a beginner. If it took me so long to figure out how to turn-off or on some feature, I can&#8217;t imagine the plight of new users. Ideally, these should have been options under Edit&gt;Preferences. Where is the usability?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/219/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=219&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2009/10/30/ubuntu-on-the-desktop-media-player-hassles/feed/</wfw:commentRss>
		<slash:comments>2</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>Hindustan Unilever Pure (bullsh) iT</title>
		<link>http://sanjayvaranasi.wordpress.com/2009/09/28/hindustan-unilever-pure-bullsh-it/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2009/09/28/hindustan-unilever-pure-bullsh-it/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 07:40:05 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Country Affairs]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech.]]></category>
		<category><![CDATA[bullshit]]></category>
		<category><![CDATA[care]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[helpline]]></category>
		<category><![CDATA[hindustan]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[pathetic]]></category>
		<category><![CDATA[pure]]></category>
		<category><![CDATA[pure it]]></category>
		<category><![CDATA[pureit]]></category>
		<category><![CDATA[purifier]]></category>
		<category><![CDATA[purify]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[unilever]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=192</guid>
		<description><![CDATA[UPDATE &#8211; 9th Oct &#8217;09 : A visit from PureIt sales guy, and a promise of replacement. UPDATE2 &#8211; 16th Oct&#8217;09 : Another visit from PureIt. We received a complete replacement of the battery kit, for free. A consumer battle &#8230; <a href="http://sanjayvaranasi.wordpress.com/2009/09/28/hindustan-unilever-pure-bullsh-it/">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=192&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>UPDATE &#8211; 9th Oct &#8217;09 : A visit from PureIt sales guy, and a promise of replacement.</p>
<p>UPDATE2 &#8211; 16th Oct&#8217;09 : Another visit from PureIt. We received a complete replacement of the battery kit, for free.</p>
<p>A consumer battle WON!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Read these words of caution before you decide to buy Hindustan Unilever&#8217;s water purification product &#8211; PureIt.</p>
<p>We bought our PureIT water purifier around 3 and 1/2 months back, a month after I came back to India. A sales rep had promptly landed at the door within a few hours of us asking for the demo. He went on to demo the features of the purifier and we were told that PureIt&#8217;s main mechanism worked on a :</p>
<p><a href="http://www.pureitwater.com/about/xrayvision.asp" target="_blank">Mesh+Battery kit combination  &#8211; The kit consists of </a></p>
<p>(i) a cloth like mesh (called Unique Microfibre Mesh) right at the top to collect large particles when you pour water into the purifier. This is largely a pain to maintain since it gets clogged up very easily. The rep had told us we would have to clean it up by turning it inside out and rubbing it slightly, every couple of weeks. You have to do this more frequently else you&#8217;ll be pouring water at the rate of a drop every second. Imagine yourself standing with the water container for 5 minutes just to pour water into the purifier.</p>
<p>(ii) A black, brittle dome of carbon (called Unique Compact Carbon Trap) immediately below the mesh(middle chamber) supposedly removes other bacteria, dirt and parasites. If you watch closely, you&#8217;d be able to see small particles of this very carbon crap floating around during the first few  uses. We scratched it slightly in front of the rep and scratched off some carbon with that. To that, the rep added that the first round of water dished out must be thrown away.</p>
<p>(iii) a Chlorinator (called the Unique Germkill  Processor) at the middle chamber which also houses the battery indicator(more on this advanced feature later). If you stand close enough to the purifier, you&#8217;d be able to smell the chlorine strongly. I see no reason for further chlorinating water that was already treated with chlorine by the water supply board.</p>
<p>(iv) Unique Polisher at the bottom(lower chamber) apparently removes odor and more impurities from water. This seems to work since we&#8217;ve never tasted any odor with water dished out by this purifier. But the fact that a couple of litres of water are lost in this hidden area raises doubts if this area is being used as a sediment area for particles not purified by the stages before and probably also for those added by the carbon trap. Add to that, you may never be able to clean this hidden storage area.</p>
<p>(v) Unique Battery Life Indicator indicates if this battery kit needs replacement. It works by displaying a white powder like substance that (should) slowly turns red as the battery&#8217;s life nears its end. For us, it worked as mentioned for the first 3 months, during which I saw the indicator 1/4th red. But then, the indicator quickened its reddening and changed to a complete red within a span of around 15 days.</p>
<p><a href="http://www.pureitwater.com/about/technical_specifications.asp">From their website</a>:</p>
<p><em>The &#8216;Germkill Battery Kit&#8217;<sup>TM</sup> has been designed to give typically 1500 litres of water at a water temperature of 25°C, in moderate humidity conditions.</em></p>
<p><em></em>Now, why should humidity affect water purification? If humidity were to kill the purifier, isn&#8217;t water humid enough to do so? Anyways, the city of Hyderabad is seldom humid. And we had almost no rains this year either.</p>
<p>Advanced Auto Switch Off &#8211; is so advanced, we had to wipe off our floor a couple of times before we could understand what the problem was. Apparently, this advanced mechanism works by cutting off supply of water to the lower chamber. Yes that works. The problem is that water continues to flow to the middle chamber from the top and with nowhere else to go, water leaks out by overflowing from the middle chamber storage. Very advanced indeed.</p>
<p>Kudos to Hindustan Unilever for their &#8216;Unique&#8217; naming, their overuse of TMs and their advanced mechanism. We tried calling PureIt to lodge a complaint. The response to this complaint was a call from another sales rep asking if we wanted a new battery kit (Rs.500). We say no and that we want someone to resolve our issue. Rep disconnects immediately. Other responses to our calls include : &#8220;Please give us one day, we will resolve this issue&#8221;; &#8220;No, please don&#8217;t use the email facility, we will look into this issue immediately&#8221;; another call from sales rep for battery replacement; &#8220;It depends on the usage&#8221;(favorite line); &#8220;Do you keep it beside the fridge, or do you use it under the sun&#8221;?; and so on.</p>
<p>-Near a fridge? The demo representative never told us that. Anyway, its not beside the fridge.<br />
-Under the sun? No seriously, who would do anything like that?<br />
-Depends on usage? Okay, for two persons, (one at office), do you expect the usage to be (1500 litres/105) 14 litres per day? We don&#8217;t use this water for cooking or any other purpose other than for drinking. We boil 3 litres per day after  PureIt stopped working.</p>
<p>If this ain&#8217;t enough, you should take a look at the <a href="http://www.pureitwater.com/safety_Challenge/PureitSafetyChallenge02.aspx?red=2" target="_blank">One Crore Challenge</a>. It is the most ridiculous challenge ever. Give it a <a href="http://www.pureitwater.com/safety_Challenge/PureitSafetyChallenge02.aspx?red=2" target="_blank">read</a>.</p>
<p><em>Hindustan Unilever Limited (HUL) agrees to pay <span style="color:#ff0000;">Rs 1 crore</span> to any claimant who can bring to it any<span style="color:#ff0000;"> Indian commercially manufactured</span> and marketed in-home drinking water treatment unit (water purifier) which, after passing through the<span style="color:#ff0000;"> defined process</span> of the Challenge, and under these terms and conditions, has all the features specified below, which HUL believes only the Pureit water purifier has: &#8230;&#8230;.<br />
</em></p>
<p>If you were even remotely considering buying this expensive piece of junk, this post should have warned you sufficiently against it. Bad mechanism, poor customer care, misinformation and false promises make up for a pathetic product. PureIt? No. Pure  Bullshit.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=192&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2009/09/28/hindustan-unilever-pure-bullsh-it/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>
	</item>
		<item>
		<title>Ubuntu Certification Exam discounts</title>
		<link>http://sanjayvaranasi.wordpress.com/2009/09/26/ubuntu-certification-exam-discounts/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2009/09/26/ubuntu-certification-exam-discounts/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 12:57:14 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[certified]]></category>
		<category><![CDATA[discount]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[LPI]]></category>
		<category><![CDATA[Prometric]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vue]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=189</guid>
		<description><![CDATA[Ubuntu is currently giving out discounts on exams for those willing to get Ubuntu certified. Two vouchers are given out, one for LPI exams 101 and 102 &#8211; a near 20% discount, and another one for Ubuntu exam 199 &#8211; &#8230; <a href="http://sanjayvaranasi.wordpress.com/2009/09/26/ubuntu-certification-exam-discounts/">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=189&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntu.com/training/exams" target="_blank"> Ubuntu is currently giving out discounts on exams</a> for those willing to get Ubuntu certified. Two vouchers are given out, one for LPI exams 101 and 102 &#8211; a near 20% discount, and another one for Ubuntu exam 199 &#8211; a near 23% discount. You get to choose between a Prometric or a Vue center for your exam(s) and you don&#8217;t have to book right away. These vouchers are good for one entire year, so that is 12 months of solid preparation allowed.</p>
<p>But, apparently these discounts are not forever so <a href="https://forms.canonical.com/trainingregistration/">go grab them</a> if you&#8217;re willing to get certified. I got my vouchers a few days back and I&#8217;m happy I&#8217;ve taken my first step towards certification. Next, start preparation!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/189/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=189&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2009/09/26/ubuntu-certification-exam-discounts/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>Ubuntu certification by next birthday</title>
		<link>http://sanjayvaranasi.wordpress.com/2009/09/07/ubuntu-certification-by-next-birthday/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2009/09/07/ubuntu-certification-by-next-birthday/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 20:02:08 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=170</guid>
		<description><![CDATA[As a challenge to myself, I have decided to be Ubuntu certified by my next birthday. That gives me almost one year, to study, practice and take the three tests that comprise Ubuntu Certification &#8211; Linux Professional Institute Exams 101 &#8230; <a href="http://sanjayvaranasi.wordpress.com/2009/09/07/ubuntu-certification-by-next-birthday/">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=170&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As a challenge to myself, I have decided to be Ubuntu certified by my next birthday. That gives me almost one year, to study, practice and take the three tests that comprise Ubuntu Certification &#8211; Linux Professional Institute Exams 101 and 102 and the Ubuntu exam. Stay tuned to the blog for updates on my progress, if you&#8217;re interested.</p>
<p>For all updates on my progress see <a title="Ubuntu Certification Category" href="http://vsanjay.com/category/ubuntu-certification" target="_self">Ubuntu-Certification</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=170&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2009/09/07/ubuntu-certification-by-next-birthday/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>TVS Victor &#8211; A review on 5 yrs of ownership</title>
		<link>http://sanjayvaranasi.wordpress.com/2009/05/20/tvs-victor-a-review-on-5-yrs-of-ownership/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2009/05/20/tvs-victor-a-review-on-5-yrs-of-ownership/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:51:06 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=136</guid>
		<description><![CDATA[This June, my TVS Victor will complete 5 years of service, so I thought a review would help those wanting to buy a used TVS Victor (you can&#8217;t buy new since TVS has phased out its production), and will help &#8230; <a href="http://sanjayvaranasi.wordpress.com/2009/05/20/tvs-victor-a-review-on-5-yrs-of-ownership/">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=136&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This June, my TVS Victor will complete 5 years of service, so I thought a review would help those wanting to buy a used TVS Victor (you can&#8217;t buy new since TVS has phased out its production), and will help some of you owning this vehicle decide the right time to sell it off. The TVS Victor is made to seem like a very reliable and efficient bike, providing &#8220;More smiles per hour&#8221; as Sachin would have liked to tell us in those ads. I would agree to a certain level that the bike is reliable. But so is every other non-computer-chip operated 4stroke, 100cc carb. engine. What differentiates one bike from the other, is the point.</p>
<p>The Victor is a 110cc carb. 4 stroke engine with 4 gears and with regular spoke wheels and drum brakes. On first looks, it doesn&#8217;t look a stunner, but you tend to get used to the looks and you start liking it with every passing day. The seats are plush and quite comfortable and the &#8216;pleather&#8217; has lasted through these five years with not a wrinkle or tear. Alas, the comfort factor lasts only for a few minutes, as I discovered on longer rides, when my bum really starts to ache and pain to the point where I have to shift my position on the seat once every few minutes. Not good. The bike&#8217;s handling is average, as long as you don&#8217;t try gymnastics when you are maneuvering through a turn. Keeping the bike straight, I found out that the brakes work very well and the tires hold up without skidding or throwing you over. Unfortunately, the same doesn&#8217;t hold true for bends and curves as understood from my fall at 10kmph on a slight turn. Rides on my bike have never been the same again. Braking, like mentioned before, holds up quite well and has triggered many a question from pillion riders if I had disc brakes. Once,my bike had to come to a complete stop from 50kmph since some wise guy had decided to cross that road at that ultimate moment. I braked and kept the handle steady and that was all I required to stay alive and on the bike.</p>
<p>The ride quality of this machine is heavily dependent on its engine. The TVS Victor&#8217;s engine is not a very smooth running one, what with terrible vibrations at 45kmph and then at around 70kmph in its 4th gear.</p>
<p>On trips longer than 10 minutes, you really start to feel your fingers feeling numb from the vibrations reaching the handlebar from the engine, especially if you are riding at cruise speeds of around 40-45kmph in the city. This bike either has a terrible problem, or has been mounted on some terrible engine mounts since I am yet to see any bike vibrate so badly. The suspension, on this bike speaks quality and has never given me any trouble. All the attention it needed was the one change of fork oil at its regular interval. The shock absorbers in the rear and the front really do their job in absorbing the cruel road conditions in India and hold up even at high speeds. One complaint, again, is of the poor handling during turns, which might be partly because of the suspension, but I cannot be sure. The ride position of this bike is that of a regular city bike for rides under 20min. Any ride lasting longer will surely get your spine asking for rest and over time, a deserving massage.</p>
<p>I have ridden bikes comparable to the Victor &#8211; Hero Honda&#8217;s Splendor and the Passion, Bajaj&#8217;s Platina and Yamaha&#8217;s Libero and found all other bikes to be far smoother and to have much better handling than the TVS Victor. The Libero was one bike that impressed me the most with its ultra-smooth engine and the sweet purrs of the engine with every gear shift. Surely, a Yamaha bike.</p>
<p>Now, the economy. &#8216;Mileage kitna detaa hain?&#8217; &#8211; is a typical question on the mouths of every Indian even if the bike in context were a Hayabusa. The Victor definitely lives upto expectations, but what else can you expect from a puny 110cc, if not some decent fuel economy? In the first two years, whenever I calculated, I observed very high fuel economy, in the range of 75-83 kmpl, 83 being the highest that I ever noted, during the second year. Over time, and as I moved to a bigger city with messy stop-n-go traffic, the fuel economy started to drop down to the levels of 60-65 kmpl, with 45 being the lowest when the vehicle was due for a service. There is nothing more evil for fuel-economy watchers than dirty air-filter and older oil. Other factors which come into play are air-pressure, amount of braking, excessive acceleration, pollutants/oxygen availability in the air, and more. The list will exhaust you.</p>
<p>Quality of service, parts, and of the vehicle. The dealer where I bought my bike provided excellent service, and always made me a happy customer. There was another authorized TVS service shop nearby that also provided good customer service, and reliable vehicle repair. But that was Warangal. Come Hyderabad, and all I get are small, crampy service stations with technicians that look similar to those at the road-side repair shop. Not impressed.</p>
<p>The bike, in its first 3 years was a pleasure to ride, with minimum repairs and repairs came cheap. Soon enough, the vehicle started showing its age, with the plastic loosening at many a place, the one under the seat being the most irritating. The rear-view mirrors lose their rubber protectors, and the plastic turns an ugly grey from a beautiful black. The small storage space under the battery is protected by a cover with lock and key. This lock had to be replaced twice since it gets broken so very easily. The key, when it goes into the ignition and is turned on, cannot be usually removed without having to switch off the engine. Now, thats gone kaput too, since I can now ride the bike without the keys in the keyslot. Just turn the key to Ignition and pull it out. The tires on this bike held up their threads for a very long time, and I&#8217;m impressed with the quality of these TVS tires. I finally had to replace my rear tire before last year&#8217;s monsoon since I wouldn&#8217;t trust old tires on our country&#8217;s awesome &#8216;roads-to-be&#8217; in the monsoons. The wheels, on the other hand, are a painful pair in the ass. I have had to true these wheels umpteen number of times, and these tend to bend and go out of shape with the slightest of the potholes our roads have to offer. Each time, I have to shell out something around Rs.50/- only to have to go back a few potholes later.  Poor quality. The battery from Amco-Yuasa is an impressive battery that lasted these 5 long years without the slightest glitch ever. The battery finally declared its demise after the past few months of non-use. The ball bearings at the fork and the front wheel also showed their age or rather their inability to handle high quality Indian roads since they had to replaced recently for a whopping Rs800/-.</p>
<p>Overall, the Victor is a sweet bike, meant for the ultimately delicate, mileage seeking, back-breaking-ready driver who might forego his right to better quality for a lower initial price and reliability, something which this bike ain&#8217;t got! I&#8217;d strongly suggest that you don&#8217;t buy a used Victor if its more than a couple of years old, and if you own one, then I recommend you sell it by the end of its 3rd or utmost 4th year and get one of &#8216;em new computer-controlled Bajaj bikes since they offer better value for money for the same fuel-economy and for similarly priced after-market parts and service.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=136&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2009/05/20/tvs-victor-a-review-on-5-yrs-of-ownership/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>
	</item>
		<item>
		<title>Time for Less &#8211; A Review of the Casio F91W-1 Classic Wrist Watch.</title>
		<link>http://sanjayvaranasi.wordpress.com/2009/03/15/time-for-less/</link>
		<comments>http://sanjayvaranasi.wordpress.com/2009/03/15/time-for-less/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 08:12:13 +0000</pubDate>
		<dc:creator>Sanjay V</dc:creator>
				<category><![CDATA[Tech.]]></category>

		<guid isPermaLink="false">http://vsanjay.com/?p=134</guid>
		<description><![CDATA[I rarely write reviews and it is only when I find a quality product that I do. This is a review for the Casio F91W-1 watch &#8211; an ideal watch for those simply looking to keep time, but are also &#8230; <a href="http://sanjayvaranasi.wordpress.com/2009/03/15/time-for-less/">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=134&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I rarely write reviews and it is only when I find a quality product that I do. This is a review for the Casio<strong> </strong><strong>F91W-1</strong> watch &#8211; an ideal watch for those simply looking to keep time, but are also looking for a durable watch. I purchased this watch nearly 6 months ago from Amazon for $11. I was ideally looking for a digital watch that I could wear round the clock without worrying about water getting into it, or it being scratched. I found what I was looking for. The watch&#8217;s scratch proof plastic was put to test during these months of rough use in an environment that requires moving around large objects, and dealing with sharp edges and doors. I also wear it when I&#8217;m sleeping so I don&#8217;t have to fumble for my cellphone for time if I wake up in the wee hours of the night. Its also got a very useful yellow-green LED light that lets you see time in the dark. While this little light isn&#8217;t the brightest or the best, it does its job well of letting you keep time. I&#8217;ve read that this watch used to sport a regular bulb until a few years ago when it was replaced with an LED. Might save battery. But who cares, since its said that people have hardly had to replace the battery on theirs. According to reviews on Amazon, there are some who&#8217;ve used the watch for 10+ years not having to bother about batteries.</p>
<p>To summarise, this watch is a simple digital time keeper with extreme durability, reliability, and a battery that you&#8217;ll never have to worry about. For those looking for a better looking glow light in their watch, Casio also has a Illuminator &#8211; F105W &#8211; 1A. This is a slightly modified version of the classic F91W-1. My friend bought this a couple of days after I bought my Classic. Apparently, he was looking for something simple too. He keeps making fun of my rather boring LED and tries to show off his blue illuminator. I have to admit that it does look cool while still retaining its classic casio look.</p>
<p>Here are links to both these watches on Amazon:</p>
<p><a href="http://www.amazon.com/gp/product/B000GAWSDG?ie=UTF8&amp;tag=sanjavaran-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B000GAWSDG"><img src="https://images-na.ssl-images-amazon.com/images/I/41B5N8GFR9L._SL160_.jpg" alt="Casio Men's Classic Black Digital Resin Strap Watch #F91W-1" width="152" height="160" /></a></p>
<p><a id="static_txt_preview" name="evtst|a|B000GAWSDG" href="http://www.amazon.com/gp/product/B000GAWSDG?ie=UTF8&amp;tag=sanjavaran-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B000GAWSDG">&lt;- Casio Men&#8217;s Classic Black Digital Resin Strap Watch #F91W-1</a></p>
<p><a href="http://www.amazon.com/gp/product/B000GB1RAU?ie=UTF8&amp;tag=sanjavaran-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B000GB1RAU"><img src="https://images-na.ssl-images-amazon.com/images/I/51f-n44YofL._SL160_.jpg" alt="Casio Men's Illuminator Digital Watch #F105W-1A " width="97" height="160" /></a></p>
<p><a href="http://www.amazon.com/gp/product/B000GB1RAU?ie=UTF8&amp;tag=sanjavaran-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B000GB1RAU">&lt;-Casio Men&#8217;s Illuminator Digital Watch #F105W-1A </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanjayvaranasi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanjayvaranasi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanjayvaranasi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanjayvaranasi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanjayvaranasi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanjayvaranasi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanjayvaranasi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanjayvaranasi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanjayvaranasi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanjayvaranasi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanjayvaranasi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanjayvaranasi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanjayvaranasi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanjayvaranasi.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanjayvaranasi.wordpress.com&amp;blog=15612908&amp;post=134&amp;subd=sanjayvaranasi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanjayvaranasi.wordpress.com/2009/03/15/time-for-less/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="https://images-na.ssl-images-amazon.com/images/I/41B5N8GFR9L._SL160_.jpg" medium="image">
			<media:title type="html">Casio Men&#039;s Classic Black Digital Resin Strap Watch #F91W-1</media:title>
		</media:content>

		<media:content url="https://images-na.ssl-images-amazon.com/images/I/51f-n44YofL._SL160_.jpg" medium="image">
			<media:title type="html">Casio Men&#039;s Illuminator Digital Watch #F105W-1A </media:title>
		</media:content>
	</item>
	</channel>
</rss>
