<?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; Technology</title>
	<atom:link href="http://dhanushka.net/home/index.php/category/technology/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>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>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>Put Facebook Chat in Firefox&#8217;s Sidebar [Chat]</title>
		<link>http://dhanushka.net/home/index.php/2009/12/put-facebook-chat-in-firefoxs-sidebar-chat/</link>
		<comments>http://dhanushka.net/home/index.php/2009/12/put-facebook-chat-in-firefoxs-sidebar-chat/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:52 +0000</pubDate>
		<dc:creator>dhanu</dc:creator>
				<category><![CDATA[Shared]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dhanushka.net/home/?p=130</guid>
		<description><![CDATA[
The Digital Inspiration blog suggests that Facebook&#8217;s new browser-based chat system, which we stood up against Gmail&#8217;s web chat yesterday, works well running inside a Firefox sidebar. To anchor it there, simply add this Facebook Chat popout URL from Bookmarks-&#62;Organize Bookmarks, and make sure &#34;Load this bookmark in the sidebar&#34; is checked. The intended two-column layout can make the sidebar a little intrusive into your actual browsing, but you can resize to a narrow strip and still get chat functionality, simply by clicking inside the sidebar to re-order things.
Put Facebook ...]]></description>
			<content:encoded><![CDATA[<p><img alt="facebook_sidebar_cropped.jpg" src="http://lifehacker.com/assets/resources/2008/04/facebook_sidebar_cropped.jpg" width="179" height="120" /><br />
The Digital Inspiration blog suggests that Facebook&#8217;s new browser-based chat system, which we <a href="http://lifehacker.com/383167/facebook-versus-gmail-web+based-chat">stood up against Gmail&#8217;s web chat</a> yesterday, works well running inside a Firefox sidebar. To anchor it there, simply add <a href="http://www.facebook.com/presence/popout.php">this Facebook Chat popout URL</a> from Bookmarks-&gt;Organize Bookmarks, and make sure &quot;Load this bookmark in the sidebar&quot; is checked. The intended two-column layout can make the sidebar a little intrusive into your actual browsing, but you can resize to a narrow strip and still get chat functionality, simply by clicking inside the sidebar to re-order things.</p>
<div><a href="http://www.labnol.org/software/browsers/run-facebook-chat-messenger-firefox-sidebar/3050/">Put Facebook Chat in Firefox Sidebar &amp; Talk from Any Web Page</a> [Digital Inspiration]</div>
</p>
<p>
      <a href="http://www.pheedo.com/click.phdo?s=4ff079589366076aa7bbd1f1e782d775"><img alt="" border="0" src="http://www.pheedo.com/img.phdo?s=4ff079589366076aa7bbd1f1e782d775" /></a><br />
  <img src="http://www.pheedo.com/feeds/tracker.php?i=4ff079589366076aa7bbd1f1e782d775" border="0" height="1" width="1" alt="" /></p>
<p><a href="http://feeds.gawker.com/~a/lifehacker/full?a=8YRJj4"><img src="http://feeds.gawker.com/~a/lifehacker/full?i=8YRJj4" border="0" /></a></p>
<div>
<a href="http://feeds.gawker.com/~f/lifehacker/full?a=BVl3OyG"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=BVl3OyG" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=ITMzhYG"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=ITMzhYG" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=1R0uR8g"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=1R0uR8g" border="0" /></a> <a href="http://feeds.gawker.com/~f/lifehacker/full?a=JtjgDmg"><img src="http://feeds.gawker.com/~f/lifehacker/full?i=JtjgDmg" border="0" /></a>
</div>
<p><img src="http://feeds.gawker.com/~r/lifehacker/full/~4/276873286" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dhanushka.net/home/index.php/2009/12/put-facebook-chat-in-firefoxs-sidebar-chat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
