<?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 &#187; Featured</title>
	<atom:link href="http://dhanushka.net/home/index.php/category/featured/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>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>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>
		<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>
	</channel>
</rss>
