<?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>Lucid Tips &#187; freeware</title>
	<atom:link href="http://www.lucidtips.com/category/freeware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lucidtips.com</link>
	<description>Easily understood tips that make your computing experience easier</description>
	<lastBuildDate>Mon, 15 Jun 2009 14:43:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VirtualBox &#8211; virtualization alternative to VMWare</title>
		<link>http://www.lucidtips.com/2009/05/30/virtualbox-virtualization-alternative-to-vmware/</link>
		<comments>http://www.lucidtips.com/2009/05/30/virtualbox-virtualization-alternative-to-vmware/#comments</comments>
		<pubDate>Sun, 31 May 2009 00:21:24 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=278</guid>
		<description><![CDATA[My post on Installing VMWare Server (and Windows XP) on Ubuntu gets a lot of hits. There is another open source virtualization software from Sun that I really like &#8211; VirtualBox. I personally prefer VirtualBox over VMWare. Installation is a breeze in comparison to VMWare. Binaries are available for a variety of Linux distributions in [...]]]></description>
			<content:encoded><![CDATA[<p>My post on <a title="Installing VMWare Server (and Windows XP) on Ubuntu" href="http://www.lucidtips.com/2009/01/20/installing-vmware-server-and-windows-xp-on-ubuntu/" target="_blank">Installing VMWare Server (and Windows XP) on Ubuntu</a> gets a lot of hits. There is another open source virtualization software from Sun that I really like &#8211; <a href="http://www.virtualbox.org" target="_blank">VirtualBox</a>. I personally prefer VirtualBox over VMWare. Installation is a breeze in comparison to VMWare. <a href="http://www.virtualbox.org/wiki/Downloads" target="_blank">Binaries</a> are available for a variety of Linux distributions in addition to Windows, OS X, Solaris and openSolaris hosts.</p>
<p><strong><span style="text-decoration: underline;">Disclaimer</span></strong>: These steps have worked for me and have been tested on Compaq nc6000 running Ubuntu 9.04 (Jaunty Jackalope). YMMV. I am not responsible for loss of data or damage to computers.</p>
<h2>Installation:</h2>
<p>Install Dynamic Kernel Module Support (dkms) Framework</p>
<p>Although this step is optional it is recommended to install the dkms package it will ensure that VirtualBox host kernel modules are properly updated if the Linux kernel version changes.</p>
<pre>sudo apt-get install dkms</pre>
<p>Next edit /etc/apt/sources.list file and add the following line</p>
<pre>deb http://download.virtualbox.org/virtualbox/debian jaunty non-free</pre>
<p>Before we proceed with the VirtualBox installation we need to add Sun&#8217;s public key for apt-secure</p>
<pre>wget -q http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc -O- | sudo apt-key add -</pre>
<p>Retrieve new lists of packages</p>
<pre>sudo apt-get update</pre>
<p>We are now ready to install VirtualBox</p>
<pre>apt-get install virtualbox-2.2</pre>
<p>After the installation comples you can start VirtualBox by clicking Start-&gt;System Tools-&gt;Sun VirtualBox or press Alt-F2 and run the command VirtualBox.</p>
<p><a href="https://help.ubuntu.com/community/VirtualBox" target="_blank">Ubuntu Community Documentation</a> has good information on VirtualBox. Refer to <a href="https://help.ubuntu.com/community/VirtualBox/FirstVM" target="_blank">FirstVM</a> section for detailed instructions on creating guest operating systems.</p>
<p>Good luck!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2009/05/30/virtualbox-virtualization-alternative-to-vmware/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Setting up a Linux based software load balancer</title>
		<link>http://www.lucidtips.com/2008/08/24/setting-up-a-linux-based-software-load-balancer/</link>
		<comments>http://www.lucidtips.com/2008/08/24/setting-up-a-linux-based-software-load-balancer/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 17:32:13 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[balance]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[load balance]]></category>
		<category><![CDATA[pen]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=99</guid>
		<description><![CDATA[As the name suggest Load Balancing is simply spreading the work load between two or more backend servers. Load Balancing can be used for any kind of server &#8211; HTTP, SMTP, POP/IMAP, DB. There are several open source software load balancers available but for the purpose of this post we will look at Pen and [...]]]></description>
			<content:encoded><![CDATA[<p>As the name suggest Load Balancing is simply spreading the work load between two or more backend servers. Load Balancing can be used for any kind of server &#8211; HTTP, SMTP, POP/IMAP, DB. There are several open source software load balancers available but for the purpose of this post we will look at Pen and Balance.</p>
<p><strong><span style="text-decoration: underline;">Disclaimer</span></strong>: These steps have worked for me and have been tested on Compaq Evo N610c running Ubuntu 8.04 LTS (Hardy Heron). YMMV. I am not responsible for loss of data or damage to computers.</p>
<p>The packages for both Pen and Balance are available for Ubuntu (both packages are available for OpenSUSE as well). You do not need both Balance and Pen. Either one of them will work. I have included instructions for both so you can test them yourselves and decide which works best.</p>
<h3>Installing Balance on Ubuntu</h3>
<p>Balance is simple but powerful generic tcp proxy with round robin load balancing and failover mechanisms. It is Open Source Software and released under GPL licensing terms. <a href="http://www.inlab.de/" target="_blank">Inlab Software</a> the developers of Balance also have a commercial version called <a href="http://www.inlab.de/balanceng/index.html" target="_blank">BalanceNG<sup>®</sup></a></p>
<p>To install Balance run the following command (see <a href="http://picasaweb.google.com/lucidtips/SettingUpALinuxBasedSoftwareLoadBalancer/photo#5237406065447956050" target="_blank">screenshot</a>)</p>
<pre>sudo apt-get install balance</pre>
<h3>Using Balance</h3>
<p>It is very easy to use Balance. The syntax is</p>
<pre>balance port host1 host2</pre>
<p>So if you wanted to setup load balancing for two machines that run Apache the command would be</p>
<pre>sudo balance -df 80 192.168.1.105 192.168.1.108</pre>
<p>The -df tells Balance to display debugging and tracing information messages on the screen and to stay in the foreground. Note we need to run using sudo because we are trying to access ports lower than 1024. (see <a href="http://picasaweb.google.com/lucidtips/SettingUpALinuxBasedSoftwareLoadBalancer/photo#5237406070047784386" target="_blank">screenshot</a>)</p>
<p>To use failover mechanism the you need to specify the failover host</p>
<pre>sudo balance -df 80 192.168.1.105 192.168.1.108 ! 192.168.1.110</pre>
<p>See <a href="http://www.inlab.de/balance.pdf" target="_blank">Balance Manual</a> for more information</p>
<h3>Installing Pen on Ubuntu</h3>
<p>To install Pen the command is (see <a href="http://picasaweb.google.com/lucidtips/SettingUpALinuxBasedSoftwareLoadBalancer/photo#5237406065027756178" target="_blank">screenshot</a>)</p>
<pre>sudo apt-get install pen</pre>
<h3>Using Pen</h3>
<p>Pen usage syntax is very similar to Balance</p>
<pre>pen port host1 host2</pre>
<p>To setup load balancing for two machines that run Apache the command would be</p>
<pre>sudo pen -df 80 192.168.1.105 192.168.1.108</pre>
<p>The -df displays debugging and tracing information messages on the screen and stay in the foreground. Note we need to run using sudo because we are trying to access ports lower than 1024. (See <a href="http://picasaweb.google.com/lucidtips/SettingUpALinuxBasedSoftwareLoadBalancer/photo#5237406068653772690" target="_blank">screenshot</a>)</p>
<p>See <a href="http://siag.nu/pen/" target="_blank">Pen web site</a> for more information</p>
<p>Though Load Balancing as listed above is not suitable for Production systems it certainly is helpful if you are developing software and want to test how it would behave behind a load balancer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/08/24/setting-up-a-linux-based-software-load-balancer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unix Utils on Windows</title>
		<link>http://www.lucidtips.com/2008/06/07/unix-utils-on-windows/</link>
		<comments>http://www.lucidtips.com/2008/06/07/unix-utils-on-windows/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 17:29:52 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[unxutils]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=47</guid>
		<description><![CDATA[Ask any Linux/Unix administrator if they could perform their daily tasks without &#8216;grep&#8217; and their answer would be an emphatic NO!!!. Windows lacks many of the unix commands/utilities that are very simple yet highly efficient. Luckily there is a collection of GNU Unix-like utilities that are available for Windows.
UnxUtils is not an emulator like Cygwin. [...]]]></description>
			<content:encoded><![CDATA[<p>Ask any Linux/Unix administrator if they could perform their daily tasks without &#8216;grep&#8217; and their answer would be an emphatic NO!!!. Windows lacks many of the unix commands/utilities that are very simple yet highly efficient. Luckily there is a collection of GNU Unix-like utilities that are available for Windows.</p>
<p>UnxUtils is not an emulator like Cygwin. It is a freeware collection of approx 120 different executables that  are only dependent on Microsoft C-runtime (msvcrt.dll).</p>
<ol>
<li>Download <a href="http://www.weihenstephan.de/~syring/win32/UnxUtils.zip" target="_blank">UnxUtils.zip</a></li>
<li>Extract to a C:\UnxUtils (may I recommend <a title="Swiss Army Knife of compression tools" href="http://www.lucidtips.com/2008/02/09/swiss-army-knife-of-compression-tools/" target="_blank">7-zip</a>).</li>
<li>Download <a href="http://www.weihenstephan.de/~syring/win32/UnxUpdates.zip" target="_blank">UnxUpdates.zip</a></li>
<li>Extract to C:\UnxUtils\usr\local\wbin</li>
</ol>
<p>All the executables are located in C:\UnxUtils\usr\local\wbin folder so to make usage easier add &#8220;C:\UnxUtils\usr\local\wbin&#8221; to your PATH variable.</p>
<ol>
<li>Click Start</li>
<li>Right click &#8220;My Computer&#8221; and select Properties</li>
<li>Click on &#8220;Advanced&#8221; tab</li>
<li>Click on &#8220;Environment Variables&#8221; (see <a href="http://picasaweb.google.com/lucidtips/UnixUtilsOnWindows/photo#5208508924986809922" target="_blank">screenshot</a>)</li>
<li>Under &#8220;System Variables&#8221; select &#8220;Path&#8221; and then click &#8220;Edit&#8221; (see <a href="http://picasaweb.google.com/lucidtips/UnixUtilsOnWindows/photo#5208508929307904450" target="_blank">screenshot</a>)</li>
<li>Append &#8220;;C:\UnxUtils\usr\local\wbin&#8221; to the end of Variable value. Note the semi-colon before C:\ (see <a href="http://picasaweb.google.com/lucidtips/UnixUtilsOnWindows/photo#5208508934904049554" target="_blank">screenshot</a>)</li>
<li>Click OK. You will be returned to &#8220;Environment Variables&#8221; window.</li>
<li>Click OK. You will be returned to &#8220;System Properties&#8221; window.</li>
<li>Click OK</li>
</ol>
<p>You should now be able to use UnxUtils. To give it a test open command prompt and run the following command. You should see a screen similar to one below.</p>
<pre>ls -l c:/ | grep -i win</pre>
<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/06/unix-utils-on-windows_04.png"><img class="alignnone size-medium wp-image-48" title="unix-utils-on-windows_04" src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/06/unix-utils-on-windows_04-300x148.png" alt="UnxUtils" width="300" height="148" /></a></p>
<p>UnxUtils also includes a shell which can be handy if you want to do some shell scripting. To start the shell run c:\UnxUtils\bin\sh.exe (see <a href="http://picasaweb.google.com/lucidtips/UnixUtilsOnWindows/photo#5208508939409881346" target="_blank">screenshot</a>) If you are frequently using the shell it is easier to create a shortcut on the desktop or quick launch bar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/06/07/unix-utils-on-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Live Cricket, Soccer and more using SopCast</title>
		<link>http://www.lucidtips.com/2008/04/05/live-cricket-soccer-and-more-using-sopcast/</link>
		<comments>http://www.lucidtips.com/2008/04/05/live-cricket-soccer-and-more-using-sopcast/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 01:36:19 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[cricket]]></category>
		<category><![CDATA[live tv]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[soccer]]></category>
		<category><![CDATA[sopcast]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/2008/04/05/live-cricket-soccer-and-more-using-sopcast/</guid>
		<description><![CDATA[Do you miss watching live cricket or UEFA soccer? Are Sports packages on Cable/Satellite TV too expensive? Don&#8217;t worry be happy because in comes Peer-to-Peer TV (P2PTV) to the rescue. As the name suggests P2PTV leverages Peer-to-Peer technology to distribute audio/video. The first question someone would have is how is the quality? The answer is [...]]]></description>
			<content:encoded><![CDATA[<p>Do you miss watching live cricket or UEFA soccer? Are Sports packages on Cable/Satellite TV too expensive? Don&#8217;t worry be happy because in comes Peer-to-Peer TV (P2PTV) to the rescue. As the name suggests P2PTV leverages Peer-to-Peer technology to distribute audio/video. The first question someone would have is how is the quality? The answer is its very good and the secret lies in the P2P technology. Every user who is downloading the video stream is also simultaneous uploading the same video stream hence contributing to the overall bandwidth.</p>
<p>There are many P2PTV software available but the oldest and most popular amongst the lot is SopCast.</p>
<div class="alignright"><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/04/sopcast_live_cricket.png" title="Live Cricket using SopCast"><img src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/04/sopcast_live_cricket.thumbnail.png" alt="Live Cricket using SopCast" /></a></div>
<p>SopCast is freeware and can run on both Windows and Linux. Windows setup is very straight forward. Simply download the zip file, unzip it,  run the setup file and follow on screen instructions (see <a href="http://picasaweb.google.com/lucidtips/LiveCricketSoccerAndMoreUsingSopCast" target="_blank">installation screenshots</a>). This will install 4 components &#8211; SopPlayer (for viewing), SopServer (for broadcasting &#8211; yes you can broadcast too!!!), VoD and WebPlayer (for viewing in the browser). Double click the SopCast icon and you are on your way. If you are using Windows firewall you need to unblock &#8220;SopCast Adver&#8221; and &#8220;SopCast Main Application&#8221; (see <a href="http://picasaweb.google.com/lucidtips/LiveCricketSoccerAndMoreUsingSopCast/photo#5185260757048548322" target="_blank">screenshot</a>). Click on Channels tab and double click the channel you wish to view.</p>
<p>Linux setup is a little more involved and Ubuntu-Unleashed has a good blog on <a href="http://www.ubuntu-unleashed.com/2008/02/howto-watch-p2p-tv-with-sopcast-with.html" target="_blank" title="Howto: Watch P2P Tv with SopCast with Ubuntu Gutsy">how to setup SopCast on Ubuntu Gusty Gibon</a>.</p>
<p>Happy viewing <img src='http://www.lucidtips.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><font color="#ff0000"><strong><u>Disclaimer</u></strong><strong>:</strong> This blog entry only provides information on P2P TV and is not responsible for content being broadcast and copyright violations.</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/04/05/live-cricket-soccer-and-more-using-sopcast/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Secure browsing using VMWare Browser Appliance</title>
		<link>http://www.lucidtips.com/2008/03/29/secure-browsing-using-vmware-browser-appliance/</link>
		<comments>http://www.lucidtips.com/2008/03/29/secure-browsing-using-vmware-browser-appliance/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 05:04:50 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[adware]]></category>
		<category><![CDATA[appliance]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[browsing]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[sypware]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/2008/03/29/secure-browsing-using-vmware-browser-appliance/</guid>
		<description><![CDATA[Every time we browse the Internet we are risking exposing ourselves to numerous risks &#8211; there are adware, spyware, malware and viruses out there that could infect your computer. Unix/Linux are more secure compared to Windows but at this time most home users run Windows..
FireFox is more secure compared to Internet Explorer and there are [...]]]></description>
			<content:encoded><![CDATA[<p>Every time we browse the Internet we are risking exposing ourselves to numerous risks &#8211; there are adware, spyware, malware and viruses out there that could infect your computer. Unix/Linux are more secure compared to Windows but at this time most home users run Windows..</p>
<p>FireFox is more secure compared to Internet Explorer and there are also numerous add-ons for FireFox that can further secure it and protect your privacy. However there is always a risk and this week we see how to protect yourself using VMWare Browser Appliance.</p>
<div class="alignleft"><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/03/vmware_browser_appliance.png" title="VMWare Browser Appliance"><img src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/03/vmware_browser_appliance.thumbnail.png" alt="VMWare Browser Appliance" border="0" /></a></div>
<p>The Browser Appliance from VMWare is a virtual machine running a minimal installation of Ubuntu Linux v5.10. It comes prebundled with FireFox v1.07 and v1.50. Yes these are older versions but you can install the latest version of FireFox (see <a target="_blank" href="http://picasaweb.google.com/lucidtips/SecureBrowsingUsingVMWareBrowserAppliance/photo#5182670432207559458" title="FireFox upgraded to 2.0.0.13 in VMWare Browser Appliance">screenshot</a>). Using Browser Appliance allows users to securely browse while the virtual machine isolation mechanism protects against adware, spyware and other malware . It also helps protect personal information because it can be configured to automatically reset itself after every use so no personal information is ever stored permanently.</p>
<p>Both VMWare Player and VMWare Browser Applicance are free for download and use. Install, setup and usage is very easy.</p>
<p>Step 1: <a href="http://www.vmware.com/products/player/">Download</a> and install VMWare Player (see <a target="_blank" href="http://picasaweb.google.com/lucidtips/SecureBrowsingUsingVMWareBrowserAppliance" title="VMWare Player installation screenshots">installation screenshots</a>)</p>
<p>Step 2: <a target="_blank" href="http://www.vmware.com/appliances/directory/browserapp.html">Download</a> and unzip Browser Appliance (may I recommend <a target="_blank" href="http://www.lucidtips.com/2008/02/09/swiss-army-knife-of-compression-tools/" title="Blog entry: Swiss Army Knife of compression tools">7-Zip</a>). Do not delete the downloaded file because it comes in handy if you want to reset the appliance.</p>
<p>Step 3: Read <a target="_blank" href="http://www.vmware.com/pdf/bavm_getting_started_100.pdf" title="Browser Appliance Getting Started Guide">Getting Started Guide</a></p>
<p>Step 4: Start VMWare Player and load the Browser Appliance file.</p>
<p>Step 5: Enjoy safe browsing</p>
<p>What I like best is if you mess up the appliance, simply delete the directory that has the Browser Appliance files. There is no uninstall required. Unzip the file downloaded in Step 2 and start all over again. How cool is that!!!</p>
<p>I did all my testing on an old laptop &#8211; 500 MHz, 192 MB RAM, Windows XP SP2. It was slow but sure did work <img src='http://www.lucidtips.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Mike Healan has written a very <a target="_blank" href="http://www.spywareinfo.com/articles/vmware/baintro.php" title="Surf The Web In Complete Safety">good article</a> on VMWare Browser Appliance at SpywareInfo.com It has details on how to upgrade FireFox, how to share files between Browser Appliance and your desktop etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/03/29/secure-browsing-using-vmware-browser-appliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decrapify your PC</title>
		<link>http://www.lucidtips.com/2008/02/23/decrapify-your-pc/</link>
		<comments>http://www.lucidtips.com/2008/02/23/decrapify-your-pc/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 15:00:36 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=11</guid>
		<description><![CDATA[The new PCs today from all major manufacturers come preloaded with a bunch of trialware. In addition to being annoying and clutering the desktop these trialware also slow down your computer.
The PC Decrapifier helps you uninstall these unwanted trailware (What it can remove). Using it is a very simple 4 step process.
1. Download the single [...]]]></description>
			<content:encoded><![CDATA[<p>The new PCs today from all major manufacturers come preloaded with a bunch of trialware. In addition to being annoying and clutering the desktop these trialware also slow down your computer.</p>
<p><a target="_blank" href="http://www.pcdecrapifier.com">The PC Decrapifier</a> helps you uninstall these unwanted trailware (<a target="_blank" href="http://http://www.pcdecrapifier.com/apps">What it can remove</a>). Using it is a very simple 4 step process.</p>
<p>1. <a target="_blank" href="http://www.pcdecrapifier.com/files/PC-Decrapifier-1.8.8.exe">Download </a>the single executable file (there is no install process)<br />
2. Execute the file<br />
3. Create a Restore Point (in case you notice something wrong after the uninstall)<br />
4. Select items to uninstall</p>
<p>The PC Decrapifier is free for personal use. A $5 donation subscription (not required to run the program) allows you to get future releases before other public users. Commercial subscription is also available.</p>
<p><img src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/02/pcdecrapifier.jpg" alt="The PC Decrapifier" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/02/23/decrapify-your-pc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pop your WebMail</title>
		<link>http://www.lucidtips.com/2008/02/16/pop-your-webmail/</link>
		<comments>http://www.lucidtips.com/2008/02/16/pop-your-webmail/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 17:07:16 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[webmail]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=7</guid>
		<description><![CDATA[Ever feel frustrated that you cannot use your favorite email application to access your WebMail? FreePOPs might help you.
FreePOPs is a small utility that allows you to use email applications like Outlook, Outlook Express, Eudora, and Evolution to download email from most famous WebMail like Hotmail, GMail, Yahoo, Mail.com etc. It also is very handy [...]]]></description>
			<content:encoded><![CDATA[<p>Ever feel frustrated that you cannot use your favorite email application to access your WebMail? FreePOPs might help you.</p>
<p><a target="_blank" href="http://www.freepops.org/en/">FreePOPs</a> is a small utility that allows you to use email applications like Outlook, Outlook Express, Eudora, and Evolution to download email from most famous WebMail like Hotmail, GMail, Yahoo, Mail.com etc. It also is very handy if you are behind a firewall that closes port 110. FreePOPs allows you to tunnel through using proxy server to read your mail.</p>
<p>FreePOPs is freeware and runs on Windows, Linux and Mac OS. There are other similar utilities like <a target="_blank" href="http://mrpostman.sourceforge.net/">MrPostman</a> (freeware), <a target="_blank" href="http://www.jmasoftware.com/english/products/web2pop/index.html">Web2POP</a> (paid) that I have used in the past. In last one and half year of usage FreePOPs has been impressive. There are frequent plugin updates which can easily be installed using the FreePOPs Updater. If you are adventurous FreePOPs also supports writing your custom plugin.</p>
<p>Note: FreePOPs only allows downloading mail. The <a target="_blank" href="http://www.freepops.org/en/faq.shtml">FAQs</a> provide good information on alternatives to <a target="_blank" href="http://www.freepops.org/en/smtp.shtml">send email</a> like using your ISPs SMTP server or installing a tiny SMTP server on your machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/02/16/pop-your-webmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swiss Army Knife of compression tools</title>
		<link>http://www.lucidtips.com/2008/02/09/swiss-army-knife-of-compression-tools/</link>
		<comments>http://www.lucidtips.com/2008/02/09/swiss-army-knife-of-compression-tools/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 07:29:50 +0000</pubDate>
		<dc:creator>lucidTipster</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[compression]]></category>

		<guid isPermaLink="false">http://www.lucidtips.com/?p=5</guid>
		<description><![CDATA[If you work on multiple operating systems like me you would have run into a situation where you might need to open a Linux/Unix compressed file on Windows machine. The default zip handler that is built into Windows XP/Vista does not support TAR or GZ formats and the most popular Windows compression utility WinZip does [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/02/7zipfilemanager.png" title="7-Zip File Manager"></a>If you work on multiple operating systems like me you would have run into a situation where you might need to open a Linux/Unix compressed file on Windows machine. The default zip handler that is built into Windows XP/Vista does not support TAR or GZ formats and the most popular Windows compression utility WinZip does not support it either.</p>
<p>7-Zip is a nifty utility from <a target="_blank" href="http://www.7-zip.org/">7-Zip.org</a> that supports packing and unpacking of ZIP, GZIP, BZIP2 and TAR files.</p>
<p>If you are working on RAR, CAB, ISO, ARJ, LZH, CHM, MSI, WIM, Z, CPIO, RPM, DEB and NSIS then with the current version you can only unpack these files. In addition to these popular compression formats 7-Zip also has its own 7z format which has a very high compression ratio. Other cool features include Integration with Windows Shell, Powerful File Manager and Localizations for 69 languages</p>
<p>7-Zip works in Windows 98/ME/NT/2000/XP/Vista and is free for home and commercial use. Unofficial Linux ports are also available for <a target="_blank" href="http://www.7-zip.org/download.html">download</a>.</p>
<p> <a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/02/7zipfilemanager.png" title="7-Zip File Manager"><img src="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/02/7zipfilemanager.png" alt="7-Zip File Manager" /></a><a href="http://www.lucidtips.com/wordpress/wp-content/uploads/2008/02/7zipfilemanager.png" title="7-Zip File Manager"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidtips.com/2008/02/09/swiss-army-knife-of-compression-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
