<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dhanushka.net</title>
	<atom:link href="http://dhanushka.net/home/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://dhanushka.net/home</link>
	<description></description>
	<lastBuildDate>Sun, 23 May 2010 05:03:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Adding Lightbox feature to Omeka</title>
		<link>http://dhanushka.net/home/index.php/2009/12/adding-lightbox-feature-to-omeka/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/adding-lightbox-feature-to-omeka/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 21:06:15 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[My Space]]></category>
		<category><![CDATA[Omeka]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=165</guid>
		<description><![CDATA[The following article would show how to add lightbox feature to an Omeka theme.
Download lightbox and place the lightbox directory inside /themes/theme-name/common/ directory.
now open the /themes/theme-name/common/header.php in an editor and add the following code before 

&#60;!-- Start Lightbox includes --&#62;
&#60;link rel=&#34;stylesheet&#34; media=&#34;screen&#34; href=&#34;&#60;?php echo WEB_ROOT;?&#62;/themes/theme-name/common/lightbox/css/lightbox.css&#34; /&#62;
&#60;script type=&#34;text/javascript&#34; src=&#34;&#60;?php echo WEB_ROOT;?&#62;/themes/theme-name/common/lightbox/js/prototype.js&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34; src=&#34;&#60;?php echo WEB_ROOT;?&#62;/themes/theme-name/common/lightbox/js/scriptaculous.js?load=effects,builder&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34; src=&#34;&#60;?php echo WEB_ROOT;?&#62;/themes/theme-name/common/lightbox/js/lightbox.js&#34;&#62;&#60;/script&#62;
&#60;!-- End Lightbox includes --&#62;

Now the ground work is done and it&#8217;s time to add the lightbox functionality to the item show page. Open the Now Show.php page located in /themes/theme-name/items/ and replace ...]]></description>
			<content:encoded><![CDATA[<p>The following article would show how to add lightbox feature to an Omeka theme.</p>
<p>Download lightbox and place the lightbox directory inside /themes/theme-name/common/ directory.<br />
now open the /themes/theme-name/common/header.php in an editor and add the following code before </head></p>
<pre class="brush: html">
&lt;!-- Start Lightbox includes --&gt;
&lt;link rel=&quot;stylesheet&quot; media=&quot;screen&quot; href=&quot;&lt;?php echo WEB_ROOT;?&gt;/themes/theme-name/common/lightbox/css/lightbox.css&quot; /&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php echo WEB_ROOT;?&gt;/themes/theme-name/common/lightbox/js/prototype.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php echo WEB_ROOT;?&gt;/themes/theme-name/common/lightbox/js/scriptaculous.js?load=effects,builder&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php echo WEB_ROOT;?&gt;/themes/theme-name/common/lightbox/js/lightbox.js&quot;&gt;&lt;/script&gt;
&lt;!-- End Lightbox includes --&gt;
</pre>
<p>Now the ground work is done and it&#8217;s time to add the lightbox functionality to the item show page. Open the Now Show.php page located in /themes/theme-name/items/ and replace the following code</p>
<pre class="brush: php">
&lt;!-- The following returns all of the files associated with an item. --&gt;
&lt;div id=&quot;itemfiles&quot; class=&quot;element&quot;&gt;
	&lt;h3&gt;Files&lt;/h3&gt;
	&lt;div class=&quot;element-text&quot;&gt;&lt;?php echo display_files_for_item(); ?&gt;&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>with the code below</p>
<pre class="brush: php">
&lt;!-- The following returns all of the files associated with an item. --&gt;
&lt;div id=&quot;itemfiles&quot; class=&quot;side-element&quot;&gt;
	&lt;h3&gt;Files&lt;/h3&gt;
	&lt;div class=&quot;element-img&quot;&gt;
		&lt;!-- Create the image thumbnail with a Lightbox link --&gt;
		&lt;?php
		$item = get_current_item();
		$files = $item-&gt;getFiles();
		foreach($files as $file) {
			echo &#039;&lt;a href=&quot;&#039; . file_download_uri($file) . &#039;&quot;rel=&quot;lightbox&quot; title=&quot;&#039;.item(&#039;Dublin Core&#039;, &#039;Title&#039;).&#039;&quot; class=&quot;download-file&quot;&gt;&#039;;
			echo item_thumbnail();
			echo &#039;&lt;/a&gt;&#039;;
		}
		?&gt;
	&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>I developed this code to an Omeka system which is been used exclusivly for images, but if you have other artifacts such as PDFs then place a simple check like given below.</p>
<pre class="brush: php">
&lt;!-- The following returns all of the files associated with an item. --&gt;
&lt;div id=&quot;itemfiles&quot; class=&quot;side-element&quot;&gt;
	&lt;h3&gt;Files&lt;/h3&gt;
	&lt;div class=&quot;element-img&quot;&gt;
		&lt;!-- Create the image thumbnail with a Lightbox link --&gt;
		&lt;?php
		if (item_has_thumbnail()) {
			$item = get_current_item();
			$files = $item-&gt;getFiles();
			foreach($files as $file) {
				echo &#039;&lt;a href=&quot;&#039; . file_download_uri($file) . &#039;&quot;rel=&quot;lightbox&quot; title=&quot;&#039;.item(&#039;Dublin Core&#039;, &#039;Title&#039;).&#039;&quot; class=&quot;download-file&quot;&gt;&#039;;
				echo item_thumbnail();
				echo &#039;&lt;/a&gt;&#039;;
			}
		}
		else{
			echo display_files_for_item();
		}
		?&gt;
	&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>Now test it out and see. If the loading image and close button is not appering it might be due to relative path in lightbox not working. To fix it open the /themes/theme-name/common/lightbox/js/lightbox.js and locate the following piece of code around line 50.</p>
<pre class="brush: js">
fileLoadingImage:        &#039;images/loading.gif&#039;,
fileBottomNavCloseImage: &#039;images/closelabel.gif&#039;,
</pre>
<p>Now replace it with the following.</p>
<pre class="brush: js">
fileLoadingImage:        &#039;/omeka/themes/theme-name/common/lightbox/images/loading.gif&#039;,
fileBottomNavCloseImage: &#039;/omeka/themes/theme-name/common/lightbox/images/closelabel.gif&#039;,
</pre>
<p>I tested this code with Omeka 1.1 and Lightbox 2.04</p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/adding-lightbox-feature-to-omeka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Most Popular How-To Features of 2008 [Best Of 2008]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/most-popular-how-to-features-of-2008-best-of-2008/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/most-popular-how-to-features-of-2008-best-of-2008/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:53 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Shared]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=139</guid>
		<description><![CDATA[From classic topics like Windows tweaking and iPod how-tos to more recent favorites like the iPhone or Wii, our most popular how-to features of 2008 souped up your hardware and squeezed more from your PC.
We enjoy pointing our readers in the direction of cool software, web sites, and other various tips, but what we really love is writing up detailed how-to guides that walk you step-by-step through how to actually do something. Let&#8217;s take a closer look at the most popular how-to Lifehacker features of 2008:
Turn Your iPod Touch into ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://cache.gawker.com/assets/images/lifehacker/2008/12/pop-features.png" width="494" height="290" />From classic topics like Windows tweaking and iPod how-tos to more recent favorites like the iPhone or Wii, our most popular how-to features of 2008 souped up your hardware and squeezed more from your PC.</p>
<p>We enjoy pointing our readers in the direction of cool software, web sites, and other various tips, but what we <em>really</em> love is writing up detailed how-to guides that walk you step-by-step through how to actually do something. Let&#8217;s take a closer look at the most popular how-to Lifehacker features of 2008:</p>
<h3><a href="http://lifehacker.com/378511/turn-your-ipod-touch-into-an-iphone">Turn Your iPod Touch into an iPhone</a></h3>
<p><a href="http://lifehacker.com/378511/turn-your-ipod-touch-into-an-iphone"><img src="http://www.lifehacker.com/assets/resources/2008/04/iphone-itouch-head.png" /></a>iPod touch owners looking to get iPhone calling functionality out of their devices flocked to this guide for <a href="http://lifehacker.com/378511/turn-your-ipod-touch-into-an-iphone">turning your iPod touch into an iPhone</a>. It&#8217;s the kind of thing that could make you decide to <a href="http://lifehacker.com/399619/forget-the-iphone++the-ipod-touch-is-good-enough">forget the iPhone altogether and go with an iPod touch</a>.</p>
<h3><a href="http://lifehacker.com/387380/turn-your-point+and+shoot-into-a-super+camera">Turn Your Point-and-Shoot into a Super-Camera</a></h3>
<p><a href="http://lifehacker.com/387380/turn-your-point+and+shoot-into-a-super+camera"><img src="http://www.lifehacker.com/assets/resources/2008/05/chdk-head.png" /></a>If you&#8217;re using a consumer grade point-and-shoot Canon digital camera, you&#8217;ve got hardware in hand that can support advanced features way beyond what shipped in the box. With the help of a free, open source project called <a href="http://chdk.wikia.com/wiki/CHDK">CHDK</a>, you can <a href="http://lifehacker.com/387380/turn-your-point+and+shoot-into-a-super+camera">get features like RAW shooting mode, live RGB histograms, motion-detection, time-lapse, and even games on your existing camera</a>.</p>
<h3><a href="http://lifehacker.com/344765/turn-your-60-router-into-a-user+friendly-super+router-with-tomato">Turn Your $60 Router into a User-Friendly Super-Router with Tomato</a></h3>
<p><a href="http://lifehacker.com/344765/turn-your-60-router-into-a-user+friendly-super+router-with-tomato"><img src="http://www.lifehacker.com/assets/resources/2008/01/bandwidth-monitor-tomato-head.png" /></a>Tomato is an open-source router firmware that <a href="http://lifehacker.com/344765/turn-your-60-router-into-a-user+friendly-super+router-with-tomato">adds advanced functionality to your old $60 router</a>. What&#8217;s not to love? It&#8217;s free, it will often work on the router you already own, and it&#8217;s easy to use. For an alternative, check out how we <a href="http://lifehacker.com/software/router/hack-attack-turn-your-60-router-into-a-600-router-178132.php">turned your $60 router into a $600 router with DD-WRT</a> even further back.</p>
<h3><a href="http://lifehacker.com/398906/jailbreak-iphone-20-with-pwnagetool">Jailbreak iPhone 2.0 with PwnageTool</a></h3>
<p><a href="http://lifehacker.com/398906/jailbreak-iphone-20-with-pwnagetool"><img src="http://www.lifehacker.com/assets/resources/2008/07/pwnagetoolheader3.png" /></a>When the iPhone and iPod touch 2.0 software update hit devices this summer, users were thrilled that they could enjoy Apple-approved third-party apps on their hardware—but that doesn&#39;t mean they don&#39;t want to have their cake and eat it, too. Our guide to <a href="http://lifehacker.com/398906/jailbreak-iphone-20-with-pwnagetool">jailbreaking your iPhone running 2.0 software</a> walks you through how to jailbreak your device and install <a href="http://lifehacker.com/394683/iphone-apps-worth-jailbreaking-for">unsanctioned third-party apps worth jailbreaking for</a>.</p>
<h3><a href="http://lifehacker.com/370532/jailbreak-any-iphone-or-ipod-touch-in-45-seconds">Jailbreak Any iPhone or iPod Touch in 45 Seconds</a></h3>
<p><a href="http://lifehacker.com/370532/jailbreak-any-iphone-or-ipod-touch-in-45-seconds"><img src="http://www.lifehacker.com/assets/resources/2008/03/jailbreak-head.png" /></a>Before the release of the iPhone 2.0 software update and the PwnageTool, you still had your jailbreak needs. This guide walked you through <a href="http://lifehacker.com/370532/jailbreak-any-iphone-or-ipod-touch-in-45-seconds">how to jailbreak any pre-2.0 iPhone or iPod touch in a mere 45 seconds</a>.</p>
<h3><a href="http://lifehacker.com/386526/slipstream-service-pack-3-into-your-windows-xp-installation-cd">Slipstream Service Pack 3 into Your Windows XP Installation CD</a></h3>
<p><a href="http://lifehacker.com/386526/slipstream-service-pack-3-into-your-windows-xp-installation-cd"><img src="http://lifehacker.com/assets/resources/2008/05/splash_1.png" /></a>When you wipe your PC&#8217;s hard drive clean and reinstall Windows with that old installation disc, you don&#8217;t want to connect your fresh, unpatched and vulnerable system to the internet only to download 176 new updates from Microsoft. This guide showed you how to <a href="http://lifehacker.com/386526/slipstream-service-pack-3-into-your-windows-xp-installation-cd">slipstream the latest Windows Service Pack 3 into your XP install disc</a> so your fresh installation of Windows is also sporting the latest and greatest updates from Microsoft.</p>
<h3><a href="http://lifehacker.com/374376/trim-down-windows-to-the-bare-essentials">Trim Down Windows to the Bare Essentials</a></h3>
<p><a href="http://lifehacker.com/374376/trim-down-windows-to-the-bare-essentials"><img src="http://www.lifehacker.com/assets/resources/2008/03/thin-windows-head.png" /></a>When you&#8217;re installing Windows in a virtual machine or on old, slow hardware, you want the leanest, meanest and fastest-running configuration possible. This how-to guide walks you through <a href="http://lifehacker.com/374376/trim-down-windows-to-the-bare-essentials">how to create a slim, trim, and lightning fast version of Windows</a>.</p>
<h3><a href="http://lifehacker.com/389735/get-vistas-best-features-in-xp">Get Vista&#8217;s Best Features in XP</a></h3>
<p><a href="http://lifehacker.com/389735/get-vistas-best-features-in-xp"><img src="http://www.lifehacker.com/assets/resources/2008/05/vista-xp-head.png" /></a>Got a lust for Vista goodies but not for—well, <a href="http://lifehacker.com/362480/xp-or-vista">the rest of Vista</a>? This walkthrough will show you <a href="http://lifehacker.com/389735/get-vistas-best-features-in-xp">how to get Vista&#8217;s best features in XP</a>.</p>
<h3><a href="http://lifehacker.com/400581/hack-your-wii-for-homebrew-apps-and-dvd-playback">Hack Your Wii for Homebrew Apps and DVD Playback</a></h3>
<p><a href="http://lifehacker.com/400581/hack-your-wii-for-homebrew-apps-and-dvd-playback"><img src="http://lifehacker.com/assets/resources/2008/08/homebrew-channel-header1.png" /></a>Despite the fact that it ships with a DVD drive, for whatever godforsaken reason, the Nintendo Wii doesn&#8217;t support DVD playback. Not only will be be playing back DVDs after following <a href="http://lifehacker.com/400581/hack-your-wii-for-homebrew-apps-and-dvd-playback">this guide</a>, but you&#8217;ll also be able to run other homebrew applications, games, and even <a href="http://lifehacker.com/5080006/play-burned-game-backups-on-your-wii-without-a-modchip">play burned backups</a>—all without any hardware hacking or modchips.</p>
<h3><a href="http://lifehacker.com/371636/turn-your-pc-into-a-dvd-ripping-monster">Turn Your PC into a DVD Ripping Monster</a></h3>
<p><a href="http://lifehacker.com/371636/turn-your-pc-into-a-dvd-ripping-monster"><img src="http://www.lifehacker.com/assets/resources/2008/03/dvd-feat-head.png" /></a>Commercial DVDs are far too expensive to let scratches turn your video into a glorified coaster, but most people still don&#8217;t back up their DVD collection. After following <a href="http://lifehacker.com/371636/turn-your-pc-into-a-dvd-ripping-monster">this guide</a>, the ease with which you can rip full DVD backups to your hard drive will leave you with no excuse not to.</p>
<h3><a href="http://lifehacker.com/372633/protect-your-privacy-when-downloading">Protect Your Privacy When Downloading</a></h3>
<p><a href="http://lifehacker.com/372633/protect-your-privacy-when-downloading"><img src="http://cache.lifehacker.com/assets/resources/2008/03/bittorrent-privacy-head.png" /></a>Whether you&#8217;re downloading copyrighted material or not, no one likes to have their activities online monitored. This guide details <a href="http://lifehacker.com/372633/protect-your-privacy-when-downloading">how to protect your privacy online</a>.</p>
<h3><a href="http://lifehacker.com/398526/set-up-push-email-contacts-and-calendar-on-your-iphone-for-free">Set Up Push Email, Contacts, and Calendar on Your iPhone for Free</a></h3>
<p><a href="http://lifehacker.com/398526/set-up-push-email-contacts-and-calendar-on-your-iphone-for-free"><img src="http://www.lifehacker.com/assets/resources/2008/07/sync-iphone-head.png" /></a>If you don&#8217;t feel like shelling out $100 a year to get push email, contacts, and calendar on your iPhone, you can still get it all on your own. You just <a href="http://lifehacker.com/398526/set-up-push-email-contacts-and-calendar-on-your-iphone-for-free">need to know how</a>.</p>
<h3><a href="http://lifehacker.com/393084/how-to-recover-deleted-files-with-free-software">How to Recover Deleted Files with Free Software</a></h3>
<p><a href="http://lifehacker.com/393084/how-to-recover-deleted-files-with-free-software"><img src="http://www.lifehacker.com/assets/resources/2008/06/file-recovery-head.png" /></a>We&#8217;ve all been there at some point: You delete an important file, somehow it skips your Recycle Bin altogether, and for all practical purposes, it&#8217;s disappeared into the ether. Before you hit the big red panic button, this guide will walk you through <a href="http://lifehacker.com/393084/how-to-recover-deleted-files-with-free-software">how to recover deleted files from your hard drive with free software</a>.</p>
<h3><a href="http://lifehacker.com/367714/run-windows-apps-seamlessly-inside-linux">Run Windows Apps Seamlessly Inside Linux</a></h3>
<p><a href="http://lifehacker.com/367714/run-windows-apps-seamlessly-inside-linux"><img src="http://lifehacker.com/assets/resources/2008/03/vbox_feature_splash.jpg" /></a>You may love the Linux life, but there are those annoying times when—for whatever reason—it&#39;d be nice to fire up a Windows app. With a little know-how, you can <a href="http://lifehacker.com/367714/run-windows-apps-seamlessly-inside-linux">run Windows apps seamlessly inside Linux</a>.</p>
<h3><a href="http://lifehacker.com/397573/master-your-digital-media-with-vlc">Master Your Digital Media with VLC</a></h3>
<p><a href="http://lifehacker.com/397573/master-your-digital-media-with-vlc"><img src="http://www.lifehacker.com/assets/resources/2008/07/vlc-ninja.png" /></a><a href="http://www.videolan.org/vlc/">VLC</a> is far and away <a href="http://lifehacker.com/397135/five-best-desktop-media-players">the most popular desktop media player</a> among Lifehacker readers, and for good reason. Not only does VLC play nearly any file you throw at it, but it can also <a href="http://lifehacker.com/397573/master-your-digital-media-with-vlc">rip DVDs, convert videos for your iPod or iPhone</a>, and much more. <i>Photo by <a href="http://flickr.com/photos/grrphoto/152833988/">R&#8217;eyes</a></i>.</p>
<h3><a href="http://lifehacker.com/394046/copy-music-from-your-iphone-or-ipod-to-your-computer-for-free">Copy Music from Your iPhone or iPod to Your Computer for Free</a></h3>
<p><a href="http://lifehacker.com/394046/copy-music-from-your-iphone-or-ipod-to-your-computer-for-free"><img src="http://lifehacker.com/assets/resources/2008/05/ipod_copy_splash1.jpg" /></a>You may not need to do it every day, but it seems like everyone needs to pull music from an iPod or iPhone to their computer at some time or another. This handy little guide details <a href="http://lifehacker.com/394046/copy-music-from-your-iphone-or-ipod-to-your-computer-for-free">how to copy music from your iPhone or iPod to your computer for free</a>.</p>
<hr /> <a href="http://answers.polldaddy.com/poll/1188911/">Which is your favorite Lifehacker how-to feature of 2008?</a><br /> <span>( <a href="http://www.polldaddy.com">surveys</a>)</span>
<p>Got a favorite Lifehacker guide on or off this list that we covered in &#8217;08? Let&#8217;s hear about it in the comments.</p>
<p><a href="http://www.pheedo.com/click.phdo?s=d3c2ae1dbe23aac1bfb76040c5b205c7&amp;p=1"><img alt="" border="0" src="http://www.pheedo.com/img.phdo?s=d3c2ae1dbe23aac1bfb76040c5b205c7&amp;p=1" /></a><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=d3c2ae1dbe23aac1bfb76040c5b205c7" border="0" height="1" width="1" alt="" />
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=FZBBdkLL"><img src="http://feedproxy.google.com/~f/lifehacker/full?d=120" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=vw3n9EOf"><img src="http://feedproxy.google.com/~f/lifehacker/full?d=41" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=hHdjw4FD"><img src="http://feedproxy.google.com/~f/lifehacker/full?i=hHdjw4FD" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=45vGnJGN"><img src="http://feedproxy.google.com/~f/lifehacker/full?i=45vGnJGN" border="0" /></a>
</div>
<p><img src="http://feedproxy.google.com/~r/lifehacker/full/~4/lQyXx4Bp7NE" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/most-popular-how-to-features-of-2008-best-of-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best of the Best: The Hive Five Winners [Hive Five]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/best-of-the-best-the-hive-five-winners-hive-five/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/best-of-the-best-the-hive-five-winners-hive-five/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:53 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Shared]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=138</guid>
		<description><![CDATA[ Our Hive Five feature series answers the most frequently asked question we hear at Lifehacker: &#8220;What&#8217;s the best tool for the job?&#8221; In the past six months, we&#8217;ve covered the five best tools in a number of categories, from best instant messengers and DVD-ripping tools to anti-virus applications and BitTorrent clients. Each week, we ask our savvy readers to vote for the one tool they like best out of the top five; the winner represents the best of the best. Keep reading for a look back at the winners ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/hive-five-best-header.jpg" align="left" hspace="4" vspace="2" width="494" height="240" /><br /> Our Hive Five feature series answers the most frequently asked question we hear at Lifehacker: &#8220;What&#8217;s the best tool for the job?&#8221; In the past six months, we&#8217;ve covered the five best tools in a number of categories, from best <a href="http://lifehacker.com/375391/five-best-instant-messengers">instant messengers</a> and <a href="http://lifehacker.com/380702/five-best-dvd-ripping-tools">DVD-ripping tools</a> to <a href="http://lifehacker.com/395046/five-best-antivirus-applications">anti-virus applications</a> and <a href="http://lifehacker.com/5051416/five-best-bittorrent-applications">BitTorrent clients</a>. Each week, we ask our savvy readers to vote for the one tool they like best out of the top five; the winner represents the best of the best. Keep reading for a look back at the winners from each Hive Five.</p>
<p>We&#8217;ve tackled a whopping 26 Hive Five categories since the series&#8217; inception, and I&#8217;m just going to tackle them all from oldest to newest. Without further ado, here they are.</p>
<h3>Best Digital Photo Organizer: Picasa (Windows/Linux)</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/03/picasa.png" width="494" height="255" /> Readers love <a href="http://picasa.google.com/">Picasa</a>—the cross-platform photo management software from Google—for its ease-of-use and impressive feature set, which is particularly strong for free software. Gmail integration, simple editing tools, and <a href="http://picasaweb.google.com/">Picasa Web Albums</a> have also helped users quickly tweak and share their photo libraries with friends and family online. See more on <a href="http://lifehacker.com/software/technophilia/organize-your-digital-photos-with-picasa-267024.php">how to organize your digital photos with Picasa</a>. (See the <a href="http://lifehacker.com/373220/five-best-digital-photo-organizers">Hive Five Best Digital Photo Organizers</a> for more options.)</p>
<h3>Best Instant Messenger: Pidgin (Windows/Linux)</h3>
<p><img alt="pidgin-2.png" src="http://www.lifehacker.com/assets/resources/2008/04/pidgin-2.png" align="right" height="218" width="248" />Formerly known as Gaim, <a href="http://www.pidgin.im/">Pidgin</a> is a cross-platform, open-source IM client with a huge following on both Windows and Linux platforms, estimating over 3 million users in 2007. Much like Firefox, Pidgin is open and extensible, meaning you can add your own improved functionality and tools to Pidgin by simply installing a plug-in (like one of these <a href="http://lifehacker.com/356291/ten-must+have-plug+ins-to-power-up-pidgin">10 must-have Pidgin plug-ins</a>.) (See the <a href="http://lifehacker.com/375391/five-best-instant-messengers">Hive Five Best Instant Messengers</a> for more options.)</p>
<h3>Best GTD Application: Pen and Paper</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/04/moleskine.png" width="494" height="79" /><br /> We asked for your favorite GTD apps, but the nominations made it apparent that an overwhelming number of you are still rocking GTD with the tried-and-true pen and paper. Whether we&#8217;re talking the <a href="http://hipsterpda.com">Hipster PDA</a>, a <a href="http://www.moleskine.com/index_eng.php">Moleskine</a>, or just an old-school notebook to-do list, pen and paper is still in style when you&#8217;re ready to get things done. (If you think a software alternative might better suit your needs, check back with the <a href="http://lifehacker.com/378062/five-best-gtd-applications">Five Best GTD Applications</a> for more options.)</p>
<h3>Best DVD Ripping Tool: DVD Shrink (Windows)</h3>
<p><img src="http://cache.lifehacker.com/assets/resources/2008/02/dvd-shrink-encoding.png" width="463" height="184" /> Despite the fact that the freeware <a href="http://dvdshrink.org/">DVD Shrink</a> (<a href="http://www.softpedia.com/get/CD-DVD-Tools/CD-DVD-Rip-Other-Tools/DVD-Shrink.shtml">download</a>) hasn&#8217;t been in active development for years, this freeware decrypter, ripper, and compressor is still a favorite all-in-one stop for ripping and backing up DVDs. Its compression feature is what sets DVD Shrink apart, compressing 8GB dual-layer DVDs down to 4GB sizes that will fit on standard, single-layer DVD-Rs (i.e., the type of DVD most consumers can burn to). It&#8217;s even inspired us to write our very own DVD Shrink helper application, <a href="http://lifehacker.com/355281/dvd-rip-automates-one+click-dvd-ripping">DVD Rip</a>, which turns the already simple DVD Shrink process into a one-click ripping affair. (See the <a href="http://lifehacker.com/380702/five-best-dvd-ripping-tools">Hive Five Best DVD Ripping Tools</a> for more options.)</p>
<h3>Best Contact Management Application: Address Book (Mac OS X)</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/04/address-book1.png" width="494" height="215" /> Most folks who own a Mac look no further for a contact manager than Apple&#8217;s <a href="http://www.apple.com/macosx/features/300.html#addressbook">Address Book</a>. That&#8217;s because Address Book is easy to use, it integrates seamlessly with practically every other application on the Mac, and it comes free with your computer. Windows users who wish they had a similar built-in contacts solution may want to try out Vista&#8217;s new Windows Contacts application, which has a similar feel and comes free with Vista. (See the <a href="http://lifehacker.com/383371/best-contact-management-applications">Hive Five Best Contact Management Applications</a> for more options.)</p>
<h3>Best Text Editor: Notepad++ (Windows)</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/04/notepad++shot.png" width="494" height="221" /> <a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a> is the go-to text editor for many Windows users looking for something better than Notepad. It handles most of the advanced features of the rest, like syntax highlighting, code folding, and macros, but unlike most of the other GUI-based text editors featured, Notepad++ is completely free and open source. It may not be as sexy off-the-bat as other GUI editors, but it&#8217;s fully customizable, so you&#8217;re only limited by your time and imagination. As for its chops as a text editor, it&#8217;s huge following speaks for itself. (See the <a href="http://lifehacker.com/385929/best-text-editors">Hive Five Best Text Editors</a> for more options.)</p>
<h3>Best Online File Sharing Service: MediaFire</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/05/mediafire.png" width="494" height="190" /> Users love unlimited storage, and <a href="http://www.mediafire.com/">MediaFire</a> (<a href="http://lifehacker.com/software/file-sharing/share-any-size-file-with-mediafire-209772.php">original post</a>) offers just that. The service is free, offers unlimited disk space, and requires no sign-up to use any of the site&#8217;s features. The files you upload, however, can only be up to 100MB in size. (See the <a href="http://lifehacker.com/388284/best-online-file-sharing-services">Hive Five Best Online File Sharing Services</a> for more options.)</p>
<h3>Best RSS Newsreader: Google Reader</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/05/greader.png" width="494" height="191" /> Ever since Google launched the updated <a href="http://www.google.com/reader/view/">Google Reader</a> toward the end of 2006, users have flocked to it for its impressive speed and usability. The most obvious benefit of an online reader like Google Reader is that no matter whose computer you&#8217;re using, you can access your feeds from the same interface, with the same items read, unread, starred, and tagged, as long as you&#8217;ve got a browser handy. Aside from that, Google Reader really gains loyalty with its robust keyboard shortcuts, search, and tagging features. If you&#8217;re using Google Reader but you haven&#8217;t yet taken advantage of all it has to offer, it might be time you <a href="http://lifehacker.com/software/google-reader/hack-attack-getting-good-with-google-reader-233712.php">got good with Google Reader</a>. (See the <a href="http://lifehacker.com/390619/best-rss-newsreaders">Hive Five Best RSS Newsreaders</a> for more options.)</p>
<h3>Best Application Launcher: Launchy (Windows)</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/05/launchy.png" width="494" height="195" /> <a href="http://launchy.net/">Launchy</a> is best known for its lightning-fast indexing and searching. In its youth it was an application and document launcher only, but it now sports more interesting features and plug-ins, integrating with your bookmarks, the command line, and more. Some users still prefer Launchy 1.25&#8242;s lighter footprint, but it doesn&#8217;t seem to throw off their love of Launchy. If you&#8217;re a dedicated Launchy fan but you&#8217;re only using it for app launching, check out how you can <a href="http://lifehacker.com/software/hack-attack/take-launchy-beyond-application-launching-284127.php">take Launchy beyond application launching</a>. (See the <a href="http://lifehacker.com/392569/best-application-launchers">Hive Five Best Application Launchers</a> for more options.)</p>
<h3>Best Start Page: iGoogle</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/05/igoogle.png" width="494" height="281" /> Once a very limited, bare bones collection of links, <a href="http://www.google.com/ig">iGoogle</a> has grown into a fully customizable dashboard of tabs and web widgets. iGoogle can keep you on top of everything from the weather and your Gmail account to your to-dos and RSS feeds. Like any self-respecting start page, you can organize all of your widgets (which it calls gadgets) via drag-and-drop and add new gadgets from an enormous library. (See the <a href="http://lifehacker.com/393837/five-best-start-pages">Hive Five Best Start Pages</a> for more options.)</p>
<h3>Best Antivirus Application: AVG Anti-Virus</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/06/avg-free.png" width="494" height="189" /> The lightweight <a href="http://free.grisoft.com/">AVG Free</a> provides protection against the various nasties floating around the internet. Like many of the options in the Hive Five, AVG provides freeware (with limitations) and commercial versions of their software, but most users find AVG Free is all they need—though many users prefer versions prior to the most recent 8.0 release. (See the <a href="http://lifehacker.com/395046/five-best-antivirus-applications">Hive Five Best Antivirus Applications</a> for more options.)</p>
<h3>Best Photo Sharing Site: Flickr</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/06/flickr-hive-five.png" width="494" height="277" /><br /> <a href="http://flickr.com/">Flickr</a> was originally conceived in 2002 as a video game-screenshot sharing web site, but it quickly blossomed into a full-fledged photo sharing site with a bustling community. The now Yahoo-owned site offers free accounts with limitations placed on photo uploads and other features, while the $25/year Pro account promises unlimited uploads, storage, and sets. Flickr, like many of the others, also <a href="http://lifehacker.com/377598/flickr-adds-video">recently added video sharing</a> to their repertoire. (See the <a href="http://lifehacker.com/395900/five-best-photo-sharing-web-sites">Five Best Photo Sharing Web Sites</a> for more options.)</p>
<h3>Best Personal Finance Tool: Mint</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/06/mint.png" width="494" height="228" /> <a href="http://www.mint.com/">Mint</a> is a web-based personal finance software that&#8217;s made a splash over the last year because of its simple setup and easy to use budgeting tools. The service, which is completely free to use, automatically retrieves your latest financial data from your online financial institutions, then analyzes and integrates it with their service. Mint&#8217;s many budgeting tools, alerts, and charts help you manage your spending with ease, and it&#8217;s also just <a href="http://lifehacker.com/391295/mint-tracks-your-investment-portfolio">added investments</a>. It can&#8217;t do the most complex of budgeting, but Mint&#8217;s a favorite for people who can&#8217;t wrap their head around more feature-rich personal finance tools. (See the <a href="http://lifehacker.com/396507/five-best-personal-finance-tools">Hive Five Best Personal Finance Tools</a> for more options.)</p>
<h3>Best Desktop Media Player: VLC (All Platforms)</h3>
<p><img alt="vlc.png" src="http://www.lifehacker.com/assets/resources/2008/06/vlc.png" align="right" height="218" width="308" /><a href="http://www.videolan.org/vlc/">VLC</a> is the cross-platform Swiss Army knife of media players. It&#8217;s lightweight, open source, and can play virtually any file—audio or video—that you throw at it. If you&#8217;re really into VLC, you can even use it <a href="http://lifehacker.com/software/dvds/rip-dvds-with-vlc-230349.php">rip DVDs</a>, <a href="http://lifehacker.com/367558/fix-desynchronized-video-and-audio-with-vlc">fix out-of-sync audio and video</a>, and <a href="http://lifehacker.com/software/how-to/play-ripped-dvds-with-vlc-277843.php">play your ripped DVDs</a>. VLC has no media library tools, but you can create and save playlists. Either way, the slim, no-nonsense player has found a home on countless Windows, Mac, and Linux installs. (See the <a href="http://lifehacker.com/397135/five-best-desktop-media-players">Hive Five Best Desktop Media Players</a> for more options.)</p>
<h3>Best Windows Maintenance Tool: CCleaner</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/07/ccleaner.png" width="494" height="289" /> Any application called <a href="http://www.ccleaner.com/">CCleaner</a> where the first &#8216;C&#8217; stands for Crap has to be good, right? Okay, maybe not, but this one is, thoroughly cleaning out your web browser, Recycle Bin and temporary files, registry, unnecessary third-party application trash, and oh so much more. Running CCleaner on your system promises to free up space, keep your computer running smoothly, and protect your privacy. It&#8217;s also very fast and very easy to use. (See the <a href="http://lifehacker.com/397792/five-best-windows-maintenance-tools">Hive Five Best Windows Maintenence Tools</a> for more.)</p>
<h3>Best Windows Backup Tool: Carbonite</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/07/carbonite.png" width="494" height="297" /><br /> <a href="http://carbonite.com/">Carbonite</a> is an online backup solution similar to MozyHome. For $50 a year, Carbonite provides unlimited online backup and is another set-it-and-forget-it solution which offers off-site backup to remote servers. The biggest difference between Carbonite and Mozy is the price: Carbonite is $50 per year upfront compared to MozyHome&#8217;s $5 per month, which adds up to $60 a year but doesn&#8217;t lock you into a year. Carbonite does not offer a free version like MozyHome Free&#8217;s 2GBs, but there is a 15-day trial. For more user comparisons, check out our <a href="http://lifehacker.com/software/lifehacker-faceoff/online-backup-final-round-mozy-vs-carbonite-302597.php">Carbonite vs. Mozy faceoff</a>. (See the <a href="http://lifehacker.com/398229/five-best-windows-backup-tools">Hive Five Best Windows Backup Tools</a> for more options.)</p>
<h3>Best File Syncing Tool: Dropbox (All Platforms)</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/07/dropbox-hive.png" width="494" height="216" /> <a href="http://www.getdropbox.com/">Dropbox</a> is a free, cross-platform syncing app that boasts quick, instantaneous syncs and file versioning through your desktop and their web-based interface. Dropbox just <a href="http://lifehacker.com/5048398/dropbox-for-linux-adds-online-backup-to-desktop">left beta and added Linux support</a>, offering 2GB of storage space for free. Premium accounts will be available if you need more space than the free 2GB default. Currently Dropbox&#8217;s biggest drawback is that you can&#8217;t define sync folders, so you have to move everything you want to sync to the main Dropbox folder. (See the <a href="http://lifehacker.com/398696/five-best-file-syncing-tools">Hive Five Best File Syncing Tools</a> for more options.)</p>
<h3>Best Alternative File Manager: Total Commander</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/07/total-commander.png" width="494" height="182" /><br /> <a href="http://www.ghisler.com/">Total Commander</a> features side-by-side file-browsing panes, enhanced file search, built-in FTP, archive management, and file comparing tools. Previously known as Windows Commander, this application stands out for its extensibility, boasting a <a href="http://www.ghisler.com/addons.htm">sizable list of add-ons</a>. Total Commander is available as a month-long demo and costs $38 after that. If you&#8217;ve got a PocketPC, you can get the Total Commander goods for free with <a href="http://lifehacker.com/397771/total-commander-pocket-reins-in-your-mobile-files">previously mentioned Total Commander Pocket</a>. (See the <a href="http://lifehacker.com/399155/five-best-alternative-file-managers">Hive Five Best Alternative File Managers</a> for more options.)</p>
<h3>Best Note-Taking Tool: Pen and Paper</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/07/pen-and-paper.png" width="494" height="216" /><br /> Despite a multitude of high-tech note-taking tools, the classic pen and paper still holds a special place in many a note-taker&#8217;s heart. The low-tech gadgets readers prefer for pen-and-paper notes vary greatly. From classics like the Moleskine or simple notebook to the <a href="http://www.43folders.com/2004/09/03/introducing-the-hipster-pda">Hipster PDA</a> or Post-It notes, the dead-tree route is still the place many prefer to take their notes. If paper is your preference, check out how to <a href="http://lifehacker.com/software/note-taking/geek-to-live-take-great-notes-167307.php">customize your notebook to take great notes</a>. (See the <a href="http://lifehacker.com/399556/five-best-note+taking-tools">Hive Five Best Note-Taking Tools</a> for your software options.)</p>
<h3>Best To-Do List Manager: Pen and Paper</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/08/pen-and-paper.png" width="494" height="265" /></p>
<p> For hundreds of years prior to the computer, humankind has managed to-dos with a simple pen and paper, and for many it&#8217;s still the only way to go. There are countless methods for managing your to-do list on paper, and the beauty of this to-do manager is that it&#8217;s completely flexible—you&#8217;re only limited by your imagination. With that in mind, a classic, straightforward list with items you can cross off as you go has always been gratifying, and it&#8217;s the template that most software to-do lists follow to this day. <i>Photo by <a href="http://flickr.com/photos/fboyd/2310866391/">Florian</a></i>. (See the <a href="http://lifehacker.com/399985/five-best-to+do-list-managers">Hive Five Best To-Do List Managers</a> for your best software alternatives.)</p>
<h3>Best Desktop Search Application: Windows Search 4</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/08/windows-search.png" width="492" height="216" /><br /> Where file search was once the most useless &#8220;feature&#8221; built into a Windows XP PC, the new and improved <a href="http://www.microsoft.com/windows/products/winfamily/desktopsearch/default.mspx">Windows Search 4.0</a> is a fast, extensive desktop search tool from Microsoft. Windows Search comes baked into the Vista Start menu with Instant Search, but you can also install Windows Search on XP. Windows Search indexes files on your hard drive or remote file share along with emails and attachments. One little known feature that sets Windows Search apart: Support for natural language queries like &#8220;Email from Bill Gates sent yesterday.&#8221; Trick is, you&#8217;ve got to know <a href="http://mike.spaces.live.com/Blog/cns%21FBABF8E542F5D5DB%217837.entry">how to enable it</a>. (See the <a href="http://lifehacker.com/400365/five-best-desktop-search-applications">Hive Five Best Desktop Search Applications</a> for more.)</p>
<h3>Best FTP Client: Filezilla</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/08/filezilla.png" width="494" height="284" /><br /> <a href="http://filezilla-project.org/">FileZilla</a> is a free, open-source FTP client for Windows, Mac, and Linux. Due to its price tag (or lack thereof), cross-platform support, and ease of use, FileZilla is a go-to option for many users new to FTP. Users stick around because FileZilla is a fast, full-featured (it also has remote file editing), and reliable FTP client in constant development. There&#8217;s even a <a href="http://portableapps.com/apps/internet/filezilla_portable">portable version</a> you can toss on your thumb drive to use FileZilla on the go. Finally, if you&#8217;re a Windows user you can even use FileZilla to <a href="http://lifehacker.com/339887/build-a-home-ftp-server-with-filezilla">build your own home FTP server</a>. (See the <a href="http://lifehacker.com/5039956/five-best-ftp-clients">Hive Five Best FTP Clients</a> for more.)</p>
<h3>Best Password Manager: KeePass</h3>
<p><img src="http://www.lifehacker.com/assets/resources/2008/08/keepass-hive.png" width="494" height="226" /><br /> Desktop application <a href="http://keepass.info/">KeePass</a> is a free, open-source password manager with a robust and easy-to-use feature set. KeePass secures your passwords with a single master password and/or a key-file on your computer. KeePass is a Windows application, but an OS X- and Linux-compatible version—called <a href="http://www.keepassx.org/">KeePassX</a>—is available with slightly less polish than the Windows counterpart. For those of you who&#8217;d like to take your passwords with you, KeePass is available as a portable application and as PocketPC, Symbian, BlackBerry, and PalmOS ports. We&#8217;ve covered KeePass a fair amount, including how to <a href="http://lifehacker.com/software/top/geek-to-live--securely-track-your-passwords-184774.php">get started with KeePass</a>, <a href="http://lifehacker.com/software/keepass/how-to-import-saved-firefox-passwords-into-keepass-248702.php">import your Firefox passwords</a>, and <a href="http://lifehacker.com/software/encrypted-personal-database/track-software-licenses-with-keepass-270410.php">track software licenses</a>. KeePass doesn&#8217;t come with built-in browser integration, but you can invoke a global, auto-login keyboard shortcut (Ctrl+Alt+A by default) when KeePass is running in your system tray. (See the <a href="http://lifehacker.com/5042616/five-best-password-managers">Hive Five Best Password Managers</a> for more.)</p>
<h3>Best Download Manager: DownThemAll</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/downthemall.png" width="494" height="270" /><br /> Firefox extension <a href="http://www.downthemall.net/">DownThemAll</a> (dTa) is a powerful download manager with a stable of advanced features to enhance your download experience. As the name suggests, one marquee feature of dTa is the ability to download every image or linked file on a page in one fell swoop; if you don&#8217;t want every file, dTa has advanced filtering criteria to help you get exactly what you want. What&#8217;s more, dTa can also boost your download speeds up to 400% by splitting files into multi-part downloads. If you&#8217;re new to dTa, check out our guide to <a href="http://lifehacker.com/software/firefox/geek-to-live--supercharge-your-firefox-downloads-with-downthemall-239561.php">supercharging your Firefox downloads with DownThemAll</a>. (See the <a href="http://lifehacker.com/5045093/five-best-download-managers">Hive Five Best Download Managers</a> for more.)</p>
<h3>Best Calendar Application: Google Calendar</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/gcal.png" width="494" height="278" /><br /> Ever since it launched in April of 2006, <a href="http://www.google.com/calendar/">Google Calendar</a> has quickly built a reputation as the premier web-based calendar. GCal owes much of its popularity to its anywhere accessibility and for bringing the look and feel of a desktop calendar into the web browser. It&#8217;s fast, it&#8217;s reliable, and it&#8217;s <a href="http://lifehacker.com/5043156/google-calendar-gets-better-a-little-at-a-time">continually improving</a>. Even better: GCal <a href="http://lifehacker.com/399407/how-to-sync-any-desktop-calendar-with-google-calendar">can sync with virtually any desktop calendar</a>. (See the <a href="http://lifehacker.com/5048189/five-best-calendar-applications">Hive Five Best Calendar Applications</a> for more.)</p>
<h3>Best BitTorrent Application: uTorrent</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/utorrent.png" width="494" height="243" /><br /> <a href="http://www.utorrent.com/">uTorrent</a>&#8216;s first public release came three years ago today, having been developed with one goal in mind: To create a lightweight, efficient BitTorrent client. Once a popular independently developed app, uTorrent is now owned and operated by BitTorrent the company (not to be confused with the protocol). Despite a continued emphasis on keeping the application small, fast, and light, uTorrent is now loaded with features, including a personal favorite, <a href="http://lifehacker.com/software/hack-attack/remote-control-your-torrents-with-utorrents-webui-260393.php">built-in remote control</a>. (See the <a href="http://lifehacker.com/%3Cbr%20/%3EuTorrent's%20first%20public%20release%20came%20three%20years%20ago%20today,%20having%20been%20developed%20with%20one%20goal%20in%20mind:%20To%20create%20a%20lightweight,%20efficient%20BitTorrent%20client.%20Once%20a%20popular%20independently%20developed%20app,%20uTorrent%20is%20now%20owned%20and%20operated%20by%20BitTorrent%20the%20company%20(not%20to%20be%20confused%20with%20the%20protocol).%20Despite%20a%20continued%20emphasis%20on%20keeping%20the%20application%20small,%20fast,%20and%20light,%20uTorrent%20is%20now%20loaded%20with%20features,%20including%20a%20personal%20favorite,%20built-in%20remote%20control.">Hive Five Best BitTorrent Applications</a> for more.)</p>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=e2e8082be49cbb343ef4316650750581" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=e2e8082be49cbb343ef4316650750581" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/lifehacker/full?a=VKET9O"><img src="http://feeds.gawker.com/~a/lifehacker/full?i=VKET9O" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=lDKmL"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=lDKmL" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=toUtL"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=toUtL" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=Rd8Kl"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=Rd8Kl" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=HBIyl"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=HBIyl" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/lifehacker/full/~4/398931293" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/best-of-the-best-the-hive-five-winners-hive-five/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eight Best KeePass Plug-Ins to Master Your Passwords [Passwords]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/eight-best-keepass-plug-ins-to-master-your-passwords-passwords/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/eight-best-keepass-plug-ins-to-master-your-passwords-passwords/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:53 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Shared]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=137</guid>
		<description><![CDATA[ A good password management application makes your life easier and your identity monumentally more secure, and free application KeePass—the most popular password manager among Lifehacker readers—is the perfect place to start. We&#39;ve already walked you through getting started with KeePass, so let&#8217;s take a closer look at how to get the most from your password management with a few of the best KeePass tricks and plug-ins.
What You Already Know
In our first look at KeePass, we showed you how to set one master password to securely rule all of your ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/keepass-feature.png" align="left" hspace="4" vspace="2" width="494" height="240" /><br /> A good password management application makes your life easier and your identity monumentally more secure, and free application <a href="http://keepass.info/">KeePass</a>—the <a href="http://lifehacker.com/5042616/five-best-password-managers">most popular password manager among Lifehacker readers</a>—is the perfect place to start. We&#39;ve already walked you through <a href="http://lifehacker.com/software/feature/geek-to-live--securely-track-your-passwords-184774.php">getting started with KeePass</a>, so let&#8217;s take a closer look at how to get the most from your password management with a few of the best KeePass tricks and plug-ins.</p>
<h3>What You Already Know</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/keepass-first-feature.png" width="305" height="295" align="right" />In our <a href="http://lifehacker.com/software/feature/geek-to-live--securely-track-your-passwords-184774.php">first look at KeePass</a>, we showed you how to set one master password to securely rule all of your passwords. As long as you remember your master password, the rest are always at your fingertips. We also highlighted how KeePass can auto-generate strong passwords, one of the major strengths of any password management app worth its salt. (You don&#39;t have to remember the difficult passwords—just your master password.) You can even run KeePass—and most of the plug-ins below—from your thumb drive, so you can securely carry your passwords with you wherever you go.</p>
<p>That&#39;s what we&#39;ve already shown you. But KeePass isn&#39;t perfect; luckily—like Firefox—it&#39;s extensible. With the right plug-ins, you can make KeePass integrate more tightly with your browser of choice, automatically back up your database, increase security, and more.</p>
<p><em>NOTE: KeePass is Windows only, but a port of KeePass—called <a href="http://www.keepassx.org/">KeePassX</a>—is available for OS X and Linux. Unfortunately they don&#39;t work with the plug-ins below.</em></p>
<h3>Know Your Shortcuts</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/auto-type.png" width="238" height="175" align="right" />Before we talk plug-ins, I want to quickly highlight KeePass&#8217;s most important keyboard shortcut, which isn&#8217;t immediately obvious to new users. As long as KeePass is running, you can invoke the auto-type keyboard shortcut from <em>any</em> application to automatically fill in login information for the web site you&#8217;re visiting or other applications (like an instant messaging client) you&#8217;re currently viewing. The global auto-type shortcut is Ctrl+Alt+A by default, but you can change it to whatever you want by heading to the Advanced tab of the Options and clicking the Auto-Type button. As long as KeePass is running in your system tray, it will automatically type your login credentials where you need them (just make sure the login box has focus). The auto-type feature can be a touch buggy with certain web sites, but that&#8217;s where the plug-ins come in handy.</p>
<p><em>NOTE: To install most KeePass plug-ins, all you need to do is unzip the download and drag the plug-in files into your KeePass directory. This varies for some plug-ins, though, so be sure to check the included Readme files or other instructions.</em></p>
<h3>Integrate KeePass with Firefox</h3>
<p>KeePass works well with Firefox out of the blocks, but it could be better. Let&#8217;s take a look at two ways you can improve the way KeePass works with the &#8216;fox.</p>
<p>If you&#8217;ve been using Firefox to manage your passwords up until now, the first thing you&#8217;ll want to do is <b>import your Firefox passwords into KeePass</b>. We&#8217;ve shown you <a href="http://lifehacker.com/software/keepass/how-to-import-saved-firefox-passwords-into-keepass-248702.php">how to do this before</a>, but a new KeePass plug-in called <a href="http://www.mccreath.org.uk/Article/ClockWork-FireFox-to-KeePass-Converter_8.aspx">ClockWork&#8217;s Firefox to KeePass Importer</a> was since developed specifically for this purpose. All you need to do is install the <a href="http://www.mccreath.org.uk/Article/ClockWork-FireFox-to-KeePass-Converter_8.aspx">Firefox to Keepass Converter plug-in</a> and the <a href="http://keepass.info/plugins.html#xmlimport">KeePass XML Import plug-in</a>. It&#8217;s still a multi-step process, but it&#8217;s better than the old alternative and the developer has <a href="http://www.mccreath.org.uk/Article/ClockWork-FireFox-to-KeePass-Converter_8.aspx">detailed instructions</a>.</p>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/hostname-in-titlebar.png" width="494" height="209" /><br /> The other way you can make KeePass work better with Firefox isn&#8217;t necessarily pretty, but it&#8217;s incredibly useful. By default the auto-type feature I mentioned above can have a tough time determining whether or not it should type in passwords for anything but the domain you specified in the URL field. For example, if I hit Ctrl+Alt+A to auto-type my login for Lifehacker from our homepage, it&#8217;s works perfectly. On the other hand, if I try the same thing from an individual post, auto-type won&#8217;t recognize the page and won&#8217;t submit my username and password. The <a href="https://addons.mozilla.org/ga-IE/firefox/addon/7960">Hostname in Title Bar Firefox extension</a> automatically adds the root domain of the site you&#8217;re visiting to your Firefox window title so that KeePass can easily recognize and auto-type passwords no matter where you are on a site.</p>
<h3>Automatically Launch a Site and Log in From KeePass</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/launch-from-keepass1.png" width="305" height="93" align="right" />If you&#8217;re already looking at KeePass entry you want to log in to, you can double-click the URL in KeePass to launch your default browser and navigate to that site. Once you&#8217;re there, quickly firing off the Ctrl+Alt+A shortcut should make quick work of filling in the password. Wouldn&#8217;t it be easier, though, if KeePass automatically filled in that information for you? With the <a href="http://www.autoitscript.com/forum/index.php?showtopic=19403">KeeForm plug-in</a> installed, it can.</p>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/keeform-setup.png" width="493" height="105" /><br /> After you install this plug-in to the KeePass directory, you also need to paste:</p>
<div>KeeUrlOverride= cmd://&#8221;{APPDIR}\KeeForm.exe&#8221; &#8220;{URL}&#8221; &#8220;{USERNAME}&#8221; &#8220;{PASSWORD}&#8221; {ENTERFORM}</div>
<p>&#8230;to the end of the <code>KeePass.ini</code> file. KeeForm works like a charm, and the method it uses is even keylogger safe. Unfortunately there is one major downside: KeeForm supports Internet Explorer only. (I can&#8217;t help but think a quick AutoHotkey script could pull off the same functionality in Firefox if anyone&#8217;s looking for a small project.)</p>
<h3>Integrate KeePass with Internet Explorer</h3>
<p>While we&#8217;re on the subject of IE, KeePass provides a couple other useful integration plug-ins for those of you forced to use IE because of <a href="http://lifehacker.com/software/geek-to-live/geek-to-live-survive-it-lockdown-151919.php">IT lockdown</a> or those who—*gasp*—like it.</p>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/keepass-toolbar.png" width="305" height="170" align="right" />The best one is probably the <a href="http://keepass.info/plugins.html#toolbar">KeePass Toolbar plug-in</a>, which installs a toolbar in Internet Explorer that allows the two applications to communicate directly. That means any new username and password you type into IE will automatically be added to KeePass (provided an instance of KeePass is running in the background).</p>
<h3>Automatically Back Up Your Database</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/db_backup.png" width="494" height="218" /><br /> The great thing about KeePass is that you can securely export your database and use it with any installation of KeePass; all you need to remember is your master password. You can manually do this any time you want, but sometimes that&#8217;s not enough. (After all, what&#8217;s more important to have a good backup plan for than your passwords?) Luckily there are a couple of different backup plug-ins to ensure you never lose your passwords: <a href="http://home.hvc.rr.com/billrubin/HelpABP/">Another Backup Plugin</a> and <a href="http://keepass.info/plugins.html#dbbackup">DB_Backup</a>. I prefer DB_Backup, which automatically creates a new backup at a destination of your choice whenever you save a new password to KeePass.</p>
<h3>Boost Your KeePass Security with an On-Screen Keyboard</h3>
<p><img src="http://lifehacker.com/assets/images/lifehacker/2008/09/osk.png" width="280" height="280" align="right" />If you&#8217;re using KeePass to begin with, chances are you&#8217;ve got an eye for privacy and data security. When you use KeePass, all of your important passwords are encrypted in your database; that means you never have to enter them manually anywhere, which also means keyloggers can have a tough time grabbing those passwords. On the other hand, you have one master password, and you have to type that in to access any of your other passwords. If you&#8217;re feeling really paranoid about keyloggers, you could try the <a href="http://keepass.info/plugins.html#osk">On-Screen Keyboard plug-in</a>, which allows you to enter your password using your mouse and an on-screen keyboard. (If you&#8217;re looking something similar to put on your thumb drive, check out <a href="http://lifehacker.com/364143/avoid-keyloggers-with-neos-safekeys">previously mentioned Neo&#8217;s SafeKeys</a>.) After you install this plug-in, you may need to enable it in KeePass under Tools -&gt; Plug-ins. Some keyloggers will still take screenshots whenever you click your mouse, so it&#39;s not a foolproof solution, but it&#39;s still not a bad option to have, especially if you&#39;re running KeePass on a public computer off your thumb drive.</p>
<h3>Sync Your Passwords</h3>
<p>Probably the most exciting KeePass plug-in is <a href="http://sourceforge.net/projects/keepasssync">KeePassSync</a>, a tool that synchronizes your KeePass database between multiple computers over the internet. This feature is sort of the holy grail for an app like KeePass, but unfortunately it&#8217;s only available for KeePass 2, which is currently in alpha. I&#8217;d normally throw caution to the wind and go for it anyway, but the developers stress that KeePass 2 alpha is unstable, and subsequent releases could lose all of your passwords. That&#8217;s enough to throw me off a cool plug-in (barely), but this is one huge development to watch out for in the future of KeePass that should also increase your confidence in the direction that this free, open-source application is headed.</p>
<p><em>UPDATE:</em> As <a href="http://lifehacker.com/5046988/eight-best-keepass-plug+ins-to-master-your-passwords#c7669728">ian320 pointed out</a>, setting up your own KeePass password sync is a no-brainer with previously mentioned file sync applications like <a href="http://lifehacker.com/397778/dropbox-syncs-and-backs-up-files-between-computers-instantaneously">Dropbox</a> or any of the other <a href="http://lifehacker.com/398696/five-best-file-syncing-tools">best file syncing tools</a>.</p>
<hr />
<p>KeePass is an incredible tool for managing your passwords, and if you haven&#8217;t already found a favorite password manager, I strongly recommend giving it a try. If you&#8217;re already using KeePass, let&#8217;s hear more about your favorite plug-ins and tricks in the comments.</p>
<p><em><strong><a href="http://adampash.com/">Adam Pash</a></strong> is a senior editor for Lifehacker who believes password management shouldn&#8217;t take 30% of your brain&#8217;s memorization capacity. His special feature <a href="http://www.lifehacker.com/software/hack-attack/">Hack Attack</a> appears every Tuesday on Lifehacker. Subscribe to the <a href="http://www.lifehacker.com/software/hack-attack/index.xml">Hack Attack RSS feed</a> to get new installments in your newsreader.</em></p>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=50784e413314d4262b6f644b0d9866f8" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=50784e413314d4262b6f644b0d9866f8" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/lifehacker/full?a=0v4wfb"><img src="http://feeds.gawker.com/~a/lifehacker/full?i=0v4wfb" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=Xc39L"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=Xc39L" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=hPK2L"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=hPK2L" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=d2Vel"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=d2Vel" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=fVMSl"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=fVMSl" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/lifehacker/full/~4/387781187" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/eight-best-keepass-plug-ins-to-master-your-passwords-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demystify Car Repair Prices With RepairPal.com [Cars]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/demystify-car-repair-prices-with-repairpal-com-cars/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/demystify-car-repair-prices-with-repairpal-com-cars/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:52 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Shared]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=136</guid>
		<description><![CDATA[Now you never have to wonder if the mechanic is scamming you on repairs. RepairPal.com lets you punch in your make, model, year zip, and repair and then they&#8217;ll tell you the normal range of prices for it are. A graph shows the range of costs, broken down to whether you are going to an independent shop or a dealer. The source data, which the site has never been publicly available before now, goes back to 1990. A good resource for getting general numbers for what you can expect to ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://consumerist.com/assets/images/consumerist/2008/08/repairpal.jpg" />Now you never have to wonder if the mechanic is scamming you on repairs. RepairPal.com lets you punch in your make, model, year zip, and repair and then they&#8217;ll tell you the normal range of prices for it are. A graph shows the range of costs, broken down to whether you are going to an independent shop or a dealer. The source data, which the site has never been publicly available before now, goes back to 1990. A good resource for getting general numbers for what you can expect to pay for basic auto repairs. </p>
<p><a href="http://repairpal.com">RepairPal</a> [Official Site]</p>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=ccbb668d4a61b00986d29494e39cf4db" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=ccbb668d4a61b00986d29494e39cf4db" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/consumerist/full?a=n7jYx8"><img src="http://feeds.gawker.com/~a/consumerist/full?i=n7jYx8" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/consumerist/full?a=gStKJK"><img src="http://feeds.gawker.com/~f/consumerist/full?i=gStKJK" border="0" /></a> <a href="http://feeds.gawker.com/~f/consumerist/full?a=ZgReSk"><img src="http://feeds.gawker.com/~f/consumerist/full?i=ZgReSk" border="0" /></a> <a href="http://feeds.gawker.com/~f/consumerist/full?a=w6cRsK"><img src="http://feeds.gawker.com/~f/consumerist/full?i=w6cRsK" border="0" /></a> <a href="http://feeds.gawker.com/~f/consumerist/full?a=ZkPzQk"><img src="http://feeds.gawker.com/~f/consumerist/full?i=ZkPzQk" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/consumerist/full/~4/355688765" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/demystify-car-repair-prices-with-repairpal-com-cars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix a Scratched LCD Monitor [How To]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/fix-a-scratched-lcd-monitor-how-to/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/fix-a-scratched-lcd-monitor-how-to/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:52 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Shared]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=135</guid>
		<description><![CDATA[DIY weblog Hackosis details how to fix your scratched LCD monitor after a scarring encounter with a sharp object. The post offers two different methods for addressing the LCD scratches, from a temporary fix involving a little petroleum jelly to a more difficult but permanent solution that involves removing the scratch and re-lacquering your monitor. I&#8217;ve also heard the pencil eraser method works for simple scratches, though I haven&#8217;t tried it. If all this LCD talk has got you in the mood for more LCD maintenance, check out how to ...]]></description>
			<content:encoded><![CDATA[<p><img alt="lcds.png" src="http://www.lifehacker.com/assets/resources/2008/07/lcds.png" width="285" height="227" align="right" hspace="4" vspace="2" />DIY weblog Hackosis details how to fix your scratched LCD monitor after a scarring encounter with a sharp object. The post offers two different methods for addressing the LCD scratches, from a temporary fix involving a little petroleum jelly to a more difficult but permanent solution that involves removing the scratch and re-lacquering your monitor. I&#8217;ve also heard the <a href="http://www.wikihow.com/Fix-a-Scratch-on-an-LCD-Screen">pencil eraser method</a> works for simple scratches, though I haven&#8217;t tried it. If all this LCD talk has got you in the mood for more LCD maintenance, check out how to <a href="http://lifehacker.com/software/lcd/how-to-clean-an-lcd-monitor-179659.php">clean an LCD monitor</a>, <a href="http://lifehacker.com/software/lcds/fix-your-lcds-stuck-pixels-225395.php">fix your LCD&#8217;s stuck</a> or <a href="http://lifehacker.com/software/lcds/fix-your-lcds-dead-pixels-152062.php">dead pixels</a>, and <a href="http://lifehacker.com/software/lcds/remove-lcd-image-burnin-146469.php">remove LCD image burn-in</a>. <i>Photo by <a href="http://flickr.com/photos/liewcf/472777910/in/photostream/">liewcf</a></i>.<br /> 
<div><a href="http://www.hackosis.com/2008/07/23/diy-how-to-fix-a-scratched-lcd-monitor/">DIY: How To Fix A Scratched LCD Monitor</a> [Hackosis]</div>
</p>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=808be8859b9c6b6a92528b7156087609" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=808be8859b9c6b6a92528b7156087609" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/lifehacker/full?a=6bPTFa"><img src="http://feeds.gawker.com/~a/lifehacker/full?i=6bPTFa" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=0haX8J"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=0haX8J" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=I3LDkJ"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=I3LDkJ" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=1J19Pj"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=1J19Pj" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=stK8Bj"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=stK8Bj" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/lifehacker/full/~4/343998080" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/fix-a-scratched-lcd-monitor-how-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Things You Might Not Know About Your Credit Card [Credit Cards]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/10-things-you-might-not-know-about-your-credit-card-credit-cards/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/10-things-you-might-not-know-about-your-credit-card-credit-cards/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:52 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Shared]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=134</guid>
		<description><![CDATA[As you might imagine, we get a lot of questions about using credit cards. Based on those piles of emails we&#8217;ve put together a list of 10 things a lot of people don&#8217;t know about credit cards. Enjoy!  1) Unsigned Cards Are Not Valid And Merchants Can And Will Refuse Them You might think that everyone knows that you have to sign your credit card in order for it to be valid — after all — there&#39;s a panel on the back that says &#34;Not Valid Unless Signed,&#34; but ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://consumerist.com/assets/images/consumerist/2008/07/tendollarbullshit.jpg" />As you might imagine, we get a lot of questions about using credit cards. Based on those <em>piles of emails</em> we&#8217;ve put together a list of 10 things <em>a lot of people</em> don&#8217;t know about credit cards. Enjoy!<br /> <strong><br /> 1) Unsigned Cards Are Not Valid And Merchants Can And Will Refuse Them</strong><br /> You might think that everyone knows that you have to sign your credit card in order for it to be valid — after all — there&#39;s a panel on the back that says &quot;Not Valid Unless Signed,&quot; but you&#39;d be shocked at the number of angry emails we get from people who have tried to use an unsigned credit card with &quot;SEE ID&quot; or &quot;CHECK ID&quot; written on it and were turned away when they refused to sign their card.</p>
<p>Here&#8217;s what VISA says <em>should</em> happen when you present an unsigned card:</p>
<p>1) The merchant will ask for your government ID.<br /> 2) You will be asked to sign the card. If you sign it, the signature on the card will be compared to the signature on the government ID. If you refuse, the card will not be accepted.</p>
<p>Here&#8217;s VISA&#8217;s official statement on &#8220;See ID&#8221;:</p>
<blockquote><p>Some customers write “See ID” or “Ask for ID” in the signature panel, thinking that this is a deterrent against fraud or forgery; that is, if their signature is not on the card, a fraudster will not be able to forge it. In reality, criminals don’t take the time to practice signatures: they use cards as quickly as possible after a theft and prior to the accounts being blocked. They are actually counting on you not to look at the back of the card and compare signatures—they may even have access to counterfeit identification with a signature in their own handwriting. “See ID” or “Ask for ID” is not a valid substitute for a signature. The customer must sign the card in your presence, as stated above.</p>
</blockquote>
<p>Most merchants don&#39;t follow this policy, but some (most notoriously— the U.S. Postal Service), are quite strict.<br /> <strong><br /> 2) The Maximum Liability For Unauthorized Use Of A Credit Card* Is $50 According To Federal Law</strong><br /> The <a href="http://www.ftc.gov/bcp/conline/pubs/credit/fcb.shtm">Fair Credit Billing Act</a> protects you from suffering damages due to unauthorized use of your credit card. If you report a lost or stolen card before anyone uses it, you are not responsible for any charges. If you do not report it before an unauthorized use you are liable for a maximum of $50.</p>
<p>(*Credit cards only. Debit cards and ATM cards are covered under the <a href="http://www.federalreserve.gov/pubs/consumerhdbk/electronic.htm">Electronic Fund Transfer Act,</a> and your liability depends on how quickly you report the loss. Unlike credit cards, debit and ATM cards can have unlimited liability in certain circumstances.)</p>
<p><strong>3) Merchants Cannot Require You To Present ID, Unless Your Card Is Unsigned</strong><br /> Some consumers enjoy it when a clerk asks to see their ID. Others do not. In some states, it&#8217;s actually illegal for a store to record any additional information (such as an address or drivers license number) as a condition of processing a credit card transaction (unless the address is needed for shipping, of course.) For some reason this is always a hotly debated topic, so we&#8217;ll go right to VISA for the answer:</p>
<blockquote><p>Although Visa rules do not preclude merchants from asking for cardholder ID, merchants cannot make an ID a condition of acceptance. <strong>Therefore, merchants cannot refuse to complete a purchase transaction because a cardholder refuses to provide ID. Visa believes merchants should not ask for ID as part of their regular card acceptance procedures.</strong> Laws in several states also make it illegal for merchants to write a cardholder’s personal information, such as an address or phone number, on a sales receipt.</p>
</blockquote>
<p>We think that&#8217;s pretty clear. Don&#8217;t want to show your ID? Don&#8217;t.</p>
<p><strong>4) Merchants Cannot Require A Minimum Transaction Amount</strong><br /> It&#8217;s a violation of the credit card company&#8217;s merchant agreement to refuse a transaction because it is below the &#8220;minumum.&#8221;</p>
<p>VISA says:</p>
<blockquote><p>Imposing minimum or maximum purchase amounts in order to accept a Visa card transaction is a violation of the Visa rules.</p>
</blockquote>
<p>Mastercard says:</p>
<blockquote><p>A Merchant must not require, or indicate that it requires, a minimum or maximum Transaction amount to accept a valid and properly presented Card</p>
</blockquote>
<p><strong><br /> 5) Merchants Cannot Charge A Surcharge For Using A Credit Card, However, They Can Offer A &#8220;Cash Discount&#8221;</strong><br /> You may have noticed that gas stations are starting to offer a different, higher price for credit cards. This isn&#39;t technically allowed— unless it is marketed as a &quot;cash discount.&quot; In other words, if you fill up your car and find that you&#39;ve been charged more than advertised because you paid with a credit card — that&#39;s not allowed. If, however, you decide to pay with cash because you saw an advertised &quot;cash discount&quot; to the &quot;regular price&quot; — that&#39;s ok. A subtle distinction, but an important one.</p>
<p><em>(There is something called a &#8220;convenience fee&#8221; that some institutions are allowed to charge if they do not typically accept credit cards in their normal course of business. The example VISA gives is a utility company where the customary way is to pay by mail or in person. The rules for charging this fee are somewhat complicated and there are loopholes, etc.)</em></p>
<p><strong>6) Many Credit Cards Have Programs That Will Automatically Double The Manufacturer&#8217;s Warranty And Other Excellent Benefits</strong><br /> We get a lot of complaints that can be easily solved by the complainee&#8217;s credit card company. We&#8217;ve helped readers get laptops replaced out of warranty, and helped them get their money back when Best Buy sold them a box full of bathroom tile instead of a hard drive. Your card may come with extended warranty protection, 90 day accidental damage protection that includes vandalism, rental car insurance, road side assistance, baggage insurance, and return protection. You should be aware of what benefits your credit or debit card offers so that you remember to use them when you need them.<br /> <strong><br /> 7) Merchants Are Not Allowed To Make You Give Up Your Right To A Chargeback</strong><br /> You might see a receipt that has suspicious-looking waiver stating that you&#8217;re agreeing to give up your right to issue a chargeback against the merchant for any reason, no matter what, period. These waivers are the result of some crafty entrepreneurs selling sales-receipt paper with the waiver printed on it, claiming that it helps protect the merchant. It&#8217;s all nonsense and it isn&#8217;t allowed. If you see it, you should report the merchant.<br /> <strong><br /> <img src='http://dhanushka.net/home/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Merchants Are Not Allowed To Place A Hold For The Estimated Tip</strong><br /> Because so many consumers have instant access to their account information, merchants aren&#39;t allowed to place an &quot;authorization&quot; for an estimated tip. For example, if you go to dinner and the bill is $100 and you pay with a credit card, the restaurant might be tempted to &quot;authorize&quot; your card for $120—a 20% tip. If you choose to leave a 15% tip and then check your balance — it will appear that you have been overcharged. This apparently results in lots of angry customers, so the practice has been forbidden in VISA&#39;s merchant agreement.</p>
<p><strong>9) If Merchants Suspect You Of Fraud They Are Supposed To Call With A &#8220;Code 10&#8243;</strong><br /> If a merchant is suspicious of you, they are supposed to make a &#8220;Code 10&#8243; call. They are instructed to take your card, call in, and say “I have a Code 10 authorization request.&#8221; They will then be asked a series of questions that can be discreetly answered with either yes or no. The merchant bank will then authorize or deny the card. They are not supposed to threaten to call the police or try to detain you. Mastercard says that if the police need to be involved, the &#8220;Code 10&#8243; operator will call the police while the clerk waits on hold.</p>
<p><strong>10) If Merchants Break These Rules, You Can Report Them To The Credit Card Company</strong><br /> Here&#8217;s <a href="http://www.mastercard.com/us/personal/en/contactus/merchantviolations.html">Mastercard&#8217;s Merchant Violation form.</a> To report merchant violations to VISA, they ask that you report them to the financial institution that issued you your Visa card. You should be able to find the number your on Visa statement or on the back of your card.</p>
<p>(Photo: <a href="http://www.flickr.com/photos/maulleigh/450868827/">Maulleigh</a> )</p>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=b1b22f61b8f612cd9eae2fafd0ea38d3" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=b1b22f61b8f612cd9eae2fafd0ea38d3" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/consumerist/full?a=H1dBWu"><img src="http://feeds.gawker.com/~a/consumerist/full?i=H1dBWu" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/consumerist/full?a=heM3wJ"><img src="http://feeds.gawker.com/~f/consumerist/full?i=heM3wJ" border="0" /></a> <a href="http://feeds.gawker.com/~f/consumerist/full?a=ZjmFjj"><img src="http://feeds.gawker.com/~f/consumerist/full?i=ZjmFjj" border="0" /></a> <a href="http://feeds.gawker.com/~f/consumerist/full?a=SCRWvJ"><img src="http://feeds.gawker.com/~f/consumerist/full?i=SCRWvJ" border="0" /></a> <a href="http://feeds.gawker.com/~f/consumerist/full?a=BRUMLj"><img src="http://feeds.gawker.com/~f/consumerist/full?i=BRUMLj" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/consumerist/full/~4/331709097" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/10-things-you-might-not-know-about-your-credit-card-credit-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Better Fireworks Photos This Fourth of July [Digital Photography]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/get-better-fireworks-photos-this-fourth-of-july-digital-photography/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/get-better-fireworks-photos-this-fourth-of-july-digital-photography/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:52 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Shared]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=133</guid>
		<description><![CDATA[ When you snap pictures at the fireworks display on Friday, you&#8217;ll either wind up with immensely rewarding photos or frustration that makes you wish you&#8217;d left your camera at home and just enjoyed the show. The outcome has everything to do with the preparation and knowledge you take to the event. Before you go, arm yourself with a few tips and tricks that will prepare you to capture fireworks in all their brilliant glory. Photo by jonrawlinson.
 
Stabilize Your Camera
 Foremost, when photographing fireworks, stability is key. Like butterflies ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_131811.jpg" align="left" hspace="4" vspace="2" width="494" height="261" /><br /> When you snap pictures at the fireworks display on Friday, you&#8217;ll either wind up with immensely rewarding photos or frustration that makes you wish you&#8217;d left your camera at home and just enjoyed the show. The outcome has everything to do with the preparation and knowledge you take to the event. Before you go, arm yourself with a few tips and tricks that will prepare you to capture fireworks in all their brilliant glory. <em>Photo by <a href="http://www.flickr.com/photos/london/902817172/in/photostream/">jonrawlinson</a>.</em></p>
<p> <img alt="2008-07-01_135113.jpg" src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_135113.jpg" width="159" height="260" /></p>
<h3>Stabilize Your Camera</h3>
<p> Foremost, when photographing fireworks, stability is key. Like butterflies and lightening strikes, fireworks are fickle subjects. An absolutely stable shooting platform is a must. Whether you use a full fledged tripod or you clamp the camera onto a solid fence with a mount, the camera must be steady. Leaning against a tree or trying to grip the camera on the top of a post just won&#8217;t cut it. You can further increase the stability of your tripod by hanging weight from the cross brace. Without a stable platform to shoot from you are nearly guaranteed blurry photos. <em>Photo by <a href="http://www.flickr.com/photos/fabian_w/2536278320/">matter=energy</a>.</em>
<p> <img alt="2008-07-01_140840.jpg" src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_140840.jpg" width="150" height="166" align="right" /></p>
<h3>Shoot Hands-Free</h3>
<p> Right behind stabilizing the camera with a tripod or mount is keeping your hands off the camera while shooting. The most common way to go hands-free is a shutter release cable. Many modern digital cameras have the ability to get triggered by an infrared remote. If you have neither, check the manual of your camera to see if you set a shutter delay. Setting a delay on the shutter will achieve the same vibration-reducing effect as a remote release, but unfortunately it gives you less control over the timing of the exposure since you have to predict the best time to shoot by a few seconds. A cable or remote release is ideal.
<p> <img src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_152534.jpg" width="494" height="119" /></p>
<h3>Control Your Exposure</h3>
<p> The length of the exposure is pivotal to capturing fireworks. Fireworks are large bright distant light sources that &#8220;bloom&#8221; over the course of several seconds. To capture the the full effect of the firework&#8217;s burst it is necessary to use a longer exposure. One to four seconds is usually enough to capture the most beautiful moment of the bursts. Shorter than that and you end up with dark partial bursts, longer and you often end up with an over exposed picture without much focal interest. <em>Photo by <a href="http://www.flickr.com/photos/mandj98/2607128029/">mandj98</a>.</em>
<p> <img alt="2008-07-01_144007.jpg" src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_144007.jpg" width="150" height="174" align="left" /></p>
<h3>Location, Location, Location</h3>
<p> Firework displays draw large crowds, so it isn&#8217;t always possible to secure a perfect location to shoot from. Arriving early and scoping out the scene is well worth your time. You want to have as clean and unobstructed a view of the skyline as possible. Make sure to reference the skyline through the viewfinder of the camera to make sure you and the camera are seeing things the same way. Shooting from much higher or lower than the rest of the people watching the show can yield interesting results. If possible select a location that is upwind of the fireworks display. Fireworks generate enormous amounts of smoke and if you&#8217;re upwind your pictures will have a hazy quality like you were taking them through a fogged up window. The picture at left highlights the effect smoke can have on fireworks photography. <em>Photo by <a href="http://www.flickr.com/photos/hisgett/221420712/">ahisgett</a></em>.
<p></p>
<h3>Don&#8217;t Flash The Fireworks</h3>
<p> <img alt="2008-07-01_151442.jpg" src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_151442.jpg" width="300" height="265" align="right" /> Turn off your flash. If you can&#8217;t turn off the flash, black it out with electrical tape. If you&#8217;ve ever seen photographs taken from the 78th row at a rock concert with the flash left on, you know exactly how poorly low light long distance flash exposures turn out. If your camera doesn&#8217;t have a manual mode that allows you to turn off the flash, try out Landscape mode which almost universally turns off the flash to avoid washing out the foreground in landscape photography. The only exception to the no flash rule is when you <em>want</em> to expose the foreground to highlight objects or people. In the photo above, the young women in the corner are properly exposed because of a flash. Without the flash they would have been dark blurs against the background. <em>Photo by <a href="http://www.flickr.com/photos/jooon/2153022455/">Jon Åslund</a>.</em>
<p> <img alt="2008-07-01_161611.jpg" src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_161611.jpg" width="200" height="185" align="left" /></p>
<h3>Focus On Infinity</h3>
<p> Pre-focus the camera. Don&#8217;t let an overzealous auto-focusing system ruin good shots; the brightness of the fireworks and the haze of the smoke confuses many auto focus systems. Set the focus manually on the infinity setting to guarantee that the fireworks bursting on the skyline will be in focus. The only time the focus-to-infinity trick wouldn&#8217;t work is if you were close enough to the fireworks explosion to have bigger problems to worry about than blurry pictures! If your camera doesn&#8217;t allow manual focus, set it to landscape mode which will have the same effect. <em>Photo by <a href="http://www.flickr.com/photos/smanography/378865978/">Shermeee</a></em>.
<p> <img src="http://lifehacker.com/assets/resources/2008/07/isocompare1.jpg" width="494" height="86" /></p>
<h3>Cut Out Noise By Controlling ISO</h3>
<p> You don&#8217;t want the nice crisp black skyline to come out looking like a pixelated camera phone picture. If your camera allows you to do so, set the ISO setting as low as you can. Turn it off auto and set it to 50 or 100 if possible. Left to chance, your camera may well try to shoot the fireworks at 200, 400, or higher. Lower ISO, less noise.
<p> <img alt="2008-07-01_160346.jpg" src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_160346.jpg" width="200" height="86" align="left" /></p>
<h3>Handy Odds And Ends</h3>
<p> Have a small light handy for checking and altering settings on the camera and tripod without having to fumble in the dark. A small red LED key chain flashlight is perfect for this task. Red light is less disruptive to your night vision than white light.
<p> <img alt="2008-07-01_160012.jpg" src="http://lifehacker.com/assets/resources/2008/07/2008-07-01_160012.jpg" width="199" height="136" align="right" /> Once you&#8217;ve covered the basics of using a tripod, setting your exposure, and so forth the next best thing you can do to ensure capturing that magic moment is to shoot tons and tons of pictures. Make sure your memory cards are cleaned off and ready to go. Remember not to get too carried away early in the event, the grand finale of every fireworks show always yields large and colorful displays. <em>Photo by <a href="http://www.flickr.com/photos/sfmine79/706343156/">sfmine79</a>.</em></p>
<p> With the following tips under your belt, snapping some frame worthy fireworks photos should be no problem at all. If you have more tips to help your fellow readers make the most of their fireworks photography, share them in the comments below.</p>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=15a9e298b8093cc74b86c01629d53036" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=15a9e298b8093cc74b86c01629d53036" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/lifehacker/full?a=GJsUfF"><img src="http://feeds.gawker.com/~a/lifehacker/full?i=GJsUfF" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=j8oBFJ"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=j8oBFJ" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=THcUOJ"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=THcUOJ" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=hykrUj"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=hykrUj" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=aI3pBj"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=aI3pBj" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/lifehacker/full/~4/324774533" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/get-better-fireworks-photos-this-fourth-of-july-digital-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Vista&#8217;s Best Features in XP [Windows]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/get-vistas-best-features-in-xp-windows/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/get-vistas-best-features-in-xp-windows/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:52 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Shared]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=132</guid>
		<description><![CDATA[
Despite the fact that most of you prefer XP to Vista and would rather Microsoft extended XP&#8217;s shelf-life, several new and improved features available in Vista would be great to have in XP. This new functionality may not be enough to get you to switch to Vista, but that doesn&#8217;t mean you&#8217;re out of luck. Let&#8217;s take a look at a few ways you can incorporate Windows Vista&#8217;s best features into your current XP PC for free.
We&#8217;re going to focus on Vista&#8217;s small and large features that are missing from ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.lifehacker.com/assets/resources/2008/05/vista-xp-head.png" align="left" hspace="4" vspace="2" width="494" height="284" /><br />
Despite the fact that most of you <a href="http://lifehacker.com/362480/xp-or-vista">prefer XP to Vista</a> and would rather <a href="http://lifehacker.com/384068/should-microsoft-extend-xps-life">Microsoft extended XP&#8217;s shelf-life</a>, several new and improved features available in Vista would be great to have in XP. This new functionality may not be enough to get you to switch to Vista, but that doesn&#8217;t mean you&#8217;re out of luck. Let&#8217;s take a look at a few ways you can incorporate Windows Vista&#8217;s best features into your current XP PC for free.</p>
<p>We&#8217;re going to focus on Vista&#8217;s small and large features that are missing from XP, separated into three categories: applications, functional, and aesthetic (e.g., transparency is aesthetic, the new start menu search is functional). This list is not exhaustive, but it does cover <a href="http://lifehacker.com/389762/what-makes-vista-worth-it">the features readers feel make Vista worth it</a>.</p>
<h3>Bring Vista&#8217;s Best New and Improved Apps to XP</h3>
<p>First, aside from some of the small operating system improvements we&#8217;ll go into below, Vista also bundles up a few new and improved applications worth mentioning.</p>
<p><img alt="breadcrumbs.png" src="http://www.lifehacker.com/assets/resources/2008/05/breadcrumbs.png" width="250" height="139" align="right" /><strong>A Better Explorer:</strong> Windows Explorer is one of the most improved applications in Vista, thanks to added features like breadcrumb navigation, better file previews, and more. There are a few add-ons that add some of these better functional adjustments to Explorer, but in general XP users might want to consider replacing XP&#8217;s Explorer altogether with something like <a href="http://zabkat.com/x2lite.htm">Xplorer2</a> (<a href="http://lifehacker.com/software/geek-to-live/replace-windows-explorer-with-xplorer2-258730.php">original post</a>) or significantly beefing it up with a tool like <a href="http://members.at.infoseek.co.jp/Quizo/freeware/indexEn.html#qttab">QT TabBar</a> (<a href="http://lifehacker.com/software/featured-windows-download/add-tabs-to-windows-explorer-with-qt-tabbar-260926.php">original post</a>). You can also get that saucy breadcrumb navigation alone with <a href="http://minimalist.com/docs/ExplorerBreadcrumbs/">Explorer Breadcrumbs</a> (<a href="http://lifehacker.com/software/windows-explorer/download-of-the-day-explorer-breadcrumbs-windows-240965.php">original post</a>).</p>
<p><img alt="truecrypt.png" src="http://www.lifehacker.com/assets/resources/2008/05/truecrypt.png" width="196" height="164" align="left" /><strong>Encrypt Your Hard Drive:</strong> Some versions of Vista—toward the Ultimate end of the scale—come with a new drive encryption software called <a href="http://www.microsoft.com/windows/products/windowsvista/features/details/bitlocker.mspx">BitLocker</a> built in. If you&#8217;re keen on security and encryption but you want to stick with XP, check out the free, open source <a href="http://www.truecrypt.org/">TrueCrypt</a> (<a href="http://lifehacker.com/software/thumb-drive/onthefly-encryption-for-your-usb-flash-drive-154465.php">original post</a>). If you need a little help getting started, check out our <a href="http://lifehacker.com/software/top/geek-to-live--encrypt-your-data-178005.php">guide to encrypting data with TrueCrypt</a>.</p>
<p><img alt="snipping-tool.png" src="http://www.lifehacker.com/assets/resources/2008/05/snipping-tool.png" width="241" height="142" align="right" /><strong>Take Quick and Easy Screenshots:</strong> PrtScrn has been around <em>forever</em>, but it&#8217;s never been the most user-friendly way to get a screenshot. In Vista, Microsoft threw in a screenshot utility called the <a href="http://lifehacker.com/software/windows-vista/windows-vista-tip--take-screenshots-with-the-snipping-tool-228885.php">Snipping Tool</a>. Fact is, if better screenshots are important to you, there are gobs of excellent free screenshot apps available for XP like <a href="http://www.donationcoder.com/Software/Mouser/screenshotcaptor/index.html">Screenshot Captor</a> (<a href="http://lifehacker.com/software/featured-windows-download/take-and-annotate-screenshots-with-screenshot-captor-304548.php">original post)</a>, <a href="http://clip2net.com/">Clip2Net</a> (<a href="http://lifehacker.com/374472/share-files-and-screenshots-instantly-with-clip2net">original post</a>), and <a href="http://www.jingproject.com/">Jing</a> (<a href="http://lifehacker.com/software/featured-download/take-and-share-screenshots-and-screencasts-with-jing-project-279768.php">original post</a>), among many others.</p>
<h3>Bring Vista&#8217;s Best Functional Features to XP</h3>
<p><img alt="winflip.png" src="http://www.lifehacker.com/assets/resources/2008/05/winflip.png" width="250" height="179" align="right" /><strong>Task-Switching à la Flip 3D:</strong> Vista&#8217;s Flip 3D is like Alt-Tab on steroids, displaying full previews of each window as you move through it. To a large extent it&#8217;s eye candy, but it can also be really useful in finding the right window when you&#8217;re switching from your keyboard. Freeware applications like <a href="http://update.docs.kr/entry/Download-Shock-Aero3D-en">Shock Aero 3D</a> (<a href="http://lifehacker.com/351556/get-aero+like-task-switching-for-xp-with-shock-aero-3d">original post</a>) and <a href="http://tokyodownstairs.blogspot.com/2007/11/winflip.html">WinFlip</a> bring the same 3D shuffling (and then some, in the case of WinFlip) to to your XP desktop.</p>
<p><img alt="vistart.png" src="http://www.lifehacker.com/assets/resources/2008/05/vistart.png" width="261" height="97" align="right" /><strong>Integrated Start Menu Search and Launch:</strong> Dubbed <a href="http://www.microsoft.com/windows/products/windowsvista/features/details/instantsearch.mspx">Instant Search</a> by Microsoft, this new feature adds a search box to the Windows Start menu for quick searching and launching of documents and applications. If you want to port this same functionality to XP, you can do so with apps like <a href="http://www.lee-soft.com/vistart/">ViStart</a> (<a href="http://lifehacker.com/software/featured-windows-download/vista-start-menu-for-xp-with-vistart-272122.php">original post</a>) or <a href="http://www.vistastartmenu.com/">Vista Start Menu</a> (<a href="http://lifehacker.com/357552/keep-programs-close-at-hand-with-vista-start-menu">original post</a>)—an extraordinarily beefed up version of the Windows Start menu. Then again, if you&#39;re not stuck on the notion of a search-and-launch box built directly into the Start menu, you can&#39;t go wrong with <a href="http://launchy.net/">Launchy</a> or <a href="http://desktop.google.com/">Google Desktop Search</a>.</p>
<p><strong>Replace the Windows Sidebar:</strong> Third-party tools similar to <a href="http://www.microsoft.com/windows/products/windowsvista/features/details/sidebargadgets.mspx">Windows Sidebar and Gadgets</a> pre-dated Vista, so you can trade in desktop real estate for the same functionality with <a href="http://www.northglide.com/sideslide.html">SideSlide</a> (<a href="http://lifehacker.com/software/featured-windows-download/fully-customizable-sidebar-with-sideslide-319325.php">original post</a>) or the <a href="http://lifehacker.com/software/feature/technophilia-google-desktop-sidebar-and-gadgets-188548.php">Google Desktop Sidebar</a>.</p>
<p><img alt="xentient.png" src="http://www.lifehacker.com/assets/resources/2008/05/xentient.png" width="167" height="153" align="right" /><strong>Live Thumbnail Previews of Files:</strong> Vista does a nice job of providing thumbnail previews to most image files and even text files, and while XP does have similar functionality, it&#8217;s not as advanced as Vista&#8217;s. Freeware application <a href="http://www.xentient.com/products/thumbnails/">Xentient Thumbnails</a> (<a href="http://lifehacker.com/software/featured-windows-download/add-thumbnails-to-all-images-in-explorer-with-xentient-thumbnails-320481.php">original post</a>) creates live thumbnails for virtually all images, and if you want a more intimate look at the innards of text and other files without opening them, check out <a href="http://www.contextmagic.com/audiotag-editor/">InfoTag Magic</a> (<a href="http://lifehacker.com/348561/get-informative-file-tooltips-with-infotag-magic">original post</a>).</p>
<p><img alt="eboostr.png" src="http://www.lifehacker.com/assets/resources/2008/05/eboostr.png" width="225" height="150" align="right" /><strong>Speed Up Your System with a Thumb Drive:</strong> <a href="http://www.microsoft.com/windows/products/windowsvista/features/details/readyboost.mspx">Windows ReadyBoost</a> speeds up your performance by using a USB thumb drive as system memory, and while nothing beats an actual RAM upgrade, XP users can check out <a href="http://www.eboostr.com/">eBoostr</a> (<a href="http://lifehacker.com/352887/get-readyboost-speed-on-xp-with-eboostr">original post</a>) to bring the same functionality to XP.</p>
<p><img src="http://www.lifehacker.com/assets/resources/2008/02/better-rename.png" align="left" /><strong>Streamline Your File Renaming:</strong> Microsoft got smart in Vista and changed the behavior when you hit F2 to rename a file, selecting only the name of the file and leaving the extension alone. For a very simple integration of this feature into XP, check out the <a href="http://lifehacker.com/355580/mimic-vistas-file-rename-feature-in-xp">Better Rename</a> utility. Alternately, if you feel like adding this feature and beefing up Windows Explorer on top of that, you can get the same renaming behavior in <a href="http://zabkat.com/x2lite.htm">Xplorer2</a> (<a href="http://lifehacker.com/software/geek-to-live/replace-windows-explorer-with-xplorer2-258730.php">original post</a>) or <a href="http://members.at.infoseek.co.jp/Quizo/freeware/indexEn.html#qttab">QT TabBar</a> (<a href="http://lifehacker.com/software/featured-windows-download/add-tabs-to-windows-explorer-with-qt-tabbar-260926.php">original post</a>).</p>
<p><img alt="preview.png" src="http://www.lifehacker.com/assets/resources/2008/05/preview.png" width="250" height="191" align="right" /><strong>Taskbar Window Previews:</strong> If you like how Vista offers handy little thumbnail previews of windows when you hover over their taskbar item, freeware application <a href="http://www.chrisnsoft.com/visual-tooltip/">Visual Tooltip</a> (<a href="http://lifehacker.com/software/notag/add-vista+like-taskbar-window-previews-to-windows-xp-247170.php">original post</a>) brings the same goods to XP.</p>
<p></p>
<h3>Give XP that Vista Look</h3>
<p>
<img alt="aero.png" src="http://www.lifehacker.com/assets/resources/2008/05/aero.png" width="231" height="179" align="left" />Ultimately, despite all the little feature improvements Vista can throw your way, a new operating system&#39;s biggest selling point is often the eye candy—in Vista&#39;s case, Aero. There are a lot of tools available that can help you theme XP to look more like Vista, though often users of such applications see mixed results, so proceed at your own risk.</p>
<p>Probably the most comprehensive XP-to-Vista tweaker is the <a href="http://www.download.com/Vista-Transformation-Pack/3000-2106_4-10631175.html?cdlPid=10781793">Vista Transformation Pack</a>, which transforms everything from the Start menu and Control Panel to icons.</p>
<p>For a less full-on approach, you could try out skinning utility <a href="http://www.softpedia.com/get/System/OS-Enhancements/UXTheme-MultiPatcher.shtml">Uxtheme Patcher</a> with one of several themes from art web site deviantART (like <a href="http://dinghao51.deviantart.com/art/DDVista-5-0-51163080">this one</a> or <a href="http://fediafedia.deviantart.com/art/Vista-Live-Grey-pack-for-XP-72154840">this one</a>) to make XP look and feel more like Vista.</p>
<h3>Isn&#8217;t There More to It Than That?</h3>
<p>There are surely some under-the-hood changes in Vista that you won&#39;t get from these simple upgrades, but let&#39;s be honest: You care about the features, not the underlying code. And since you can get most of Vista&#39;s new features from the comfort of XP—and you can stick to XP as a quick, resource-light alternative to Vista—it looks like <a href="http://lifehacker.com/384068/should-microsoft-extend-xps-life">most of you won&#8217;t be changing horses anytime soon</a>.</p>
<hr />
If there&#8217;s a Vista feature or an XP app you love that wasn&#8217;t included in this list, let&#8217;s hear about it in the comments. While you&#8217;re getting the goods of Vista in XP, you may also want to take a look at how you can get the <a href="http://lifehacker.com/384919/get-firefoxs-best-features-in-internet-explorer">best of Firefox in Internet Explorer</a>.</p>
<p>
<em><strong><a href="http://adampash.com/">Adam Pash</a></strong> is a senior editor for Lifehacker who really only likes XP for its <a href="http://lifehacker.com/software/hack-attack/turn-your-windows-pc-into-a-media-center-powerhouse-on-the-cheap-298408.php">snazzy Media Center improvements</a>. His special feature <a href="http://www.lifehacker.com/software/hack-attack/">Hack Attack</a> appears every Tuesday on Lifehacker. Subscribe to the <a href="http://www.lifehacker.com/software/hack-attack/index.xml">Hack Attack RSS feed</a> to get new installments in your newsreader.</em></p>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=59247c222366ee5ae9373f901fea7516" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=59247c222366ee5ae9373f901fea7516" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/lifehacker/full?a=suBo55"><img src="http://feeds.gawker.com/~a/lifehacker/full?i=suBo55" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=EEXslH"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=EEXslH" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=LHePdH"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=LHePdH" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=12uH7h"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=12uH7h" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=G3LAWh"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=G3LAWh" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/lifehacker/full/~4/289548012" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/get-vistas-best-features-in-xp-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Thief-Proof Your Laptop [Laptops]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/how-to-thief-proof-your-laptop-laptops/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/how-to-thief-proof-your-laptop-laptops/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:52 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Shared]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=131</guid>
		<description><![CDATA[PC World magazine rounds up eight tips to stop thieves from stealing your laptop, the most obvious-yet-effective of which is simply locking it up. Apart from their suggestion that you encrypt your hard drive (we&#8217;d recommend the cross-platform TrueCrypt for that), all of their suggestions require you to throw down a bit of cash. If you&#8217;re not up to spending any money but you still want to beef up your laptop security, hit the jump for a look at a few no-cost solutions for guarding your laptop against thieves.

Windows freeware ...]]></description>
			<content:encoded><![CDATA[<p><img alt="laptop-lock.png" src="http://www.lifehacker.com/assets/resources/2008/05/laptop-lock.png" width="209" height="204" align="left" hspace="4" vspace="2" /><i>PC World</i> magazine rounds up eight tips to stop thieves from stealing your laptop, the most obvious-yet-effective of which is simply locking it up. Apart from their suggestion that you encrypt your hard drive (we&#8217;d <a href="http://lifehacker.com/software/top/geek-to-live--encrypt-your-data-178005.php">recommend the cross-platform TrueCrypt</a> for that), all of their suggestions require you to throw down a bit of cash. If you&#8217;re not up to spending any money but you still want to beef up your laptop security, hit the jump for a look at a few no-cost solutions for guarding your laptop against thieves.</p>
<ul>
<li><img alt="laptoplock.png" src="http://www.lifehacker.com/assets/resources/2008/05/laptoplock.png" width="180" height="172" align="right" />Windows freeware app <a href="http://www.thelaptoplock.com/">LaptopLock</a> integrates with the LaptopLock web site to <a href="http://lifehacker.com/software/hack-attack/secure-your-laptop-with-the-laptoplock-258435.php">bring added file security, stolen notifications, and tracking of your stolen laptop</a>. LaptopLock isn&#8217;t much of an alarm system, but you may be glad you installed it if your laptop is ever stolen.</li>
<li>Turn your motion-sensing MacBook into <a href="http://lifehacker.com/software/theft/hack-attack-turn-your-macbooks-isight-into-a-ftp-backed-up-security-camera-207605.php">an FTP-backed-up security camera using</a> MacBook alarm system <a href="https://sourceforge.net/projects/ialertu/">iAlertU</a> (<a href="http://lifehacker.com/software/security/download-of-the-day-ialertu-166241.php">original post</a>). </li>
<p>
<li><img alt="yawcam.png" src="http://www.lifehacker.com/assets/resources/2008/05/yawcam.png" width="180" height="172" align="right" />Turn your Windows laptop-with-webcam into a motion-sensing security camera with freeware application <a href="http://www.yawcam.com/">Yawcam</a> (<a href="http://lifehacker.com/software/featured-windows-download/turn-your-webcam-into-a-motion+sensing-security-camera-with-yawcam-320580.php">original post</a>).</li>
<li>Windows-only <a href="http://www.syfer.nl/">Laptop Alarm</a> (<a href="http://lifehacker.com/software/featured-windows-download/secure-your-laptop-with-laptop-alarm-284885.php">original post</a>) locks your computer and monitors for suspicious behavior, sounding an alarm if someone tries using or unplugging your computer, for example.</li>
</ul>
<p>If you&#39;ve got a good set of methods for protecting your laptop from thieves—both before and after a theft has taken place—let&#39;s hear about it in the comments.</p>
<div><a href="http://www.pcworld.com/article/id,145253-page,4-c,hardwaresecuritycomponents/article.html">Stop Thieves From Stealing Your Laptop</a> [PCWorld]</div>
<p>
  <img alt="" border="0" src="http://www.pheedo.com/img.phdo?i=61b0142e0614fabbb513d488149afae5" height="1" width="1" /><br />
<img src="http://www.pheedo.com/feeds/tracker.php?i=61b0142e0614fabbb513d488149afae5" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/lifehacker/full?a=hkJ51l"><img src="http://feeds.gawker.com/~a/lifehacker/full?i=hkJ51l" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=c0939H"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=c0939H" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=3lFUTH"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=3lFUTH" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=DtezNh"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=DtezNh" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=JP2P5h"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=JP2P5h" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/lifehacker/full/~4/284251128" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/how-to-thief-proof-your-laptop-laptops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
