<?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/"
	>

<channel>
	<title>Simple Thoughts - Java and Web Blog &#187; Tech Note</title>
	<atom:link href="http://tech.gaeatimes.com/index.php/category/tech-note/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.gaeatimes.com</link>
	<description>News and views from a Software Architect and Web Entrepreneur on Java, PHP and Web 2.0 Technologies.</description>
	<pubDate>Mon, 27 Dec 2010 14:38:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to parition a new drive before adding to RAID array in Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 14:37:18 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux Migration]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39424</guid>
		<description><![CDATA[Run the following command, after reading the notes below:
sfdisk -d /dev/sda &#124; sfdisk /dev/sdb

Notes:
1. This copies the parition information of sda to sdb. Be very careful with the drive letters, otherwise you might end up overriding the partition of a good drive with the partition from a new drive.
2. sda is the drive from which .... Source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/" title="How to parition a new drive before adding to RAID array in Linux">Gaea News Network</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to fully backup hard drive on Linux intelligently without using dd</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:14:55 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux Migration]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39434</guid>
		<description><![CDATA[dd, while an excellent tool to back drive / partition images, copies entire hard drive including unused blocks and even bad blocks (where possible). I have found another way to backup which not only creates an exact duplicate as far as operating system is concerned but also allows you to elongate and extract the remaining ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/">Read : How to fully backup hard drive on Linux intelligently without using dd</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-fully-backup-hard-drive-on-linux-intelligently-without-using-dd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to reduce space required by (Linux utility) dd created drive image</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:13:37 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux Migration]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39432</guid>
		<description><![CDATA[a. Use gzip
An example command:
dd if=/dev/hda1 bs=1k conv=sync,noerror &#124; gzip -c &#124; ssh -c blowfish user@hostname &#8220;dd of=filename.gz bs=1k&#8221;

Notes:
1. gzip ensures less storage requirement for the image
2. blowfish algorithm is used while transferring the data because it reduces overhead, which leads to faster transfer, for the SSL connection

b. Reduce storage space by zeroing unused blocks
dd .... Original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/">How to reduce space required by (Linux utility) dd created drive image</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to add a new partition to RAID array in Linux using mdadm</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:09:15 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39428</guid>
		<description><![CDATA[Behold the wonders of mdadm:
mdadm &#8211;manage /dev/md1 &#8211;add /dev/sdb2
Notes:
1. Replace md1 with the name of the raid array
2. Replace sdb2 with the name of the drive
 [..] <a href="http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/">Read the original article: here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-add-a-new-partition-to-raid-array-in-linux-using-mdadm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to check symbolic link in Java and why Apache common.io.FileUtils implementation is wrong</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 09:20:44 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Java Software]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39411</guid>
		<description><![CDATA[Checking for symbolic link (in supported platform) is a long time requirement of Java developers. 
Patrick @ onyxbits solved the problem using JNI which is a legitimate approach. However it is platform dependent and consequently you will have to provide precompiled binary for every supported platform.

Apache commons project used an interesting approach in an attempt .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/">Original article on Gaea Times at  &nbsp;: How to check symbolic link in Java and why Apache common.io.FileUtils implementation is wrong</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Set Up an Email Server on Local LAN?</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-set-up-an-email-server-on-local-lan/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-set-up-an-email-server-on-local-lan/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 23:09:25 +0000</pubDate>
		<dc:creator>Taragana</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Email Server]]></category>

		<category><![CDATA[Local LAN]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/index.php/archive/how-to-set-up-an-email-server-on-local-lan/</guid>
		<description><![CDATA[
more images

Now, let me brief you here what an email server does is to liberate users to filter, verify and authenticate emails before sending them to the designated recipients. IF it is a necessity for you to have a mail server on your own LAN then you can well achieve it, by installing the optional .... Original article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-set-up-an-email-server-on-local-lan/">How to Set Up an Email Server on Local LAN?</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-set-up-an-email-server-on-local-lan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8216;20 Things I Learned About Browsers and the Web&#8217; From Google</title>
		<link>http://tech.gaeatimes.com/index.php/archive/20-things-i-learned-about-browsers-and-the-web-from-google/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/20-things-i-learned-about-browsers-and-the-web-from-google/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 18:58:02 +0000</pubDate>
		<dc:creator>Taragana</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Book on Web]]></category>

		<category><![CDATA[Browser]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Web Literacy]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/index.php/archive/20-things-i-learned-about-browsers-and-the-web-from-google/</guid>
		<description><![CDATA[


Google&#8217;s attempt to spread browsers and the web literacy among the average people has paved way for a short book &#8216;20 Things I Learned About Browsers and the Web&#8217; , Google has released this interactive online book explaining concepts like, TCP/IP, HTML, browser extensions and malware.
Well this book contains step-by-step explanation of the web and .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/20-things-i-learned-about-browsers-and-the-web-from-google/">here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/20-things-i-learned-about-browsers-and-the-web-from-google/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Global SCVNGR Hunt is Powered By Google</title>
		<link>http://tech.gaeatimes.com/index.php/archive/global-scvngr-hunt-is-powered-by-google/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/global-scvngr-hunt-is-powered-by-google/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 20:12:12 +0000</pubDate>
		<dc:creator>Taragana</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Google API]]></category>

		<category><![CDATA[Google Places]]></category>

		<category><![CDATA[SCVNGR]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/index.php/archive/global-scvngr-hunt-is-powered-by-google/</guid>
		<description><![CDATA[
more images

Much to a lot of people&#8217;s interest, the real-world location-based game SCVNGR is indeed going global, thanks to Google Places application programming interface who is providing the aid. Well, there&#8217;s more to the story, Google Ventures has also dug up a second round of funding for SCVNGR &#8212; the mobile game. As a matter ... <a href="http://tech.gaeatimes.com/index.php/archive/global-scvngr-hunt-is-powered-by-google/">Read : Global SCVNGR Hunt is Powered By Google</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/global-scvngr-hunt-is-powered-by-google/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to fix: jre/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file - Java Error on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-fix-jrelibi386xawtlibmawtso-libxtstso6-cannot-open-shared-object-file-java-error-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-fix-jrelibi386xawtlibmawtso-libxtstso6-cannot-open-shared-object-file-java-error-on-linux/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 03:13:38 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Java Software]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[CentOS]]></category>

		<category><![CDATA[JDK 7]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=30452</guid>
		<description><![CDATA[I observed this error while trying to run a Java Awt based application. The typical error message in such situation is:

&#8230; jre/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory
You will most likely find, as I did, that libXtst.so.6 exists in your system and is in proper path but still libmawt.so is ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/how-to-fix-jrelibi386xawtlibmawtso-libxtstso6-cannot-open-shared-object-file-java-error-on-linux/" title="How to fix: jre/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file - Java Error on Linux">&raquo;&raquo;&raquo;</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-fix-jrelibi386xawtlibmawtso-libxtstso6-cannot-open-shared-object-file-java-error-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to disable IPv6 on CentOS 5.5</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 13:53:20 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Web Hosting]]></category>

		<category><![CDATA[CentOS]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=29823</guid>
		<description><![CDATA[The reason for this article is simple. The recommended method from CentOS wiki doesn&#8217;t work while the other method works. Here is what will disable IPv6 on CentOS Linux and also prevent the module from loading.

Edit /etc/sysconfig/network and set &#8220;NETWORKING_IPV6&#8243; to &#8220;no&#8221;

This still loads the module but IPv6 is administratively disabled. Run the next command ... Read this article on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/">How to disable IPv6 on CentOS 5.5</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-disable-ipv6-on-centos-55/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to remove / stop Software / mdadm Raid array on Linux - Cent OS</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-remove-stop-software-mdadm-raid-array-on-linux-cent-os/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-remove-stop-software-mdadm-raid-array-on-linux-cent-os/#comments</comments>
		<pubDate>Sat, 29 May 2010 16:21:33 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[mdadm]]></category>

		<category><![CDATA[RAID]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=27938</guid>
		<description><![CDATA[There are three steps to this. First you need to unmount the RAID array if it is mounted, then stop the RAID array and finally change your configuration to prevent it from reloading in future.



more images



more images

How to unmount RAID array
Let&#8217;s assume your RAID array is /dev/mdx which is currently mounted. You can unmount it ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-remove-stop-software-mdadm-raid-array-on-linux-cent-os/">Original article on  : How to remove / stop Software / mdadm Raid array on Linux - Cent OS</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-remove-stop-software-mdadm-raid-array-on-linux-cent-os/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Control Panel Equivalent on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 07:00:44 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Gnome Desktop]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux Migration]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Vista]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Windows 7]]></category>

		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=16886</guid>
		<description><![CDATA[Windows control panel is something we are all familiar with in Windows operating systems like Windows XP, Windows 2000, Windows Vista &#38; now Winfows 7. Unfortunately you may not have found a direct equivalent of Windows Control Panel which works in Linux systems like RHEL, Cent OS, Fedora, Ubuntu etc. Despair no more for the .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/">here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/windows-control-panel-equivalent-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to download &amp; install JDK 6</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-download-install-jdk-6/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-download-install-jdk-6/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 06:37:37 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[J2SE]]></category>

		<category><![CDATA[Java Software]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Sun]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[JDK 1.6]]></category>

		<category><![CDATA[JDK 6]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=15304</guid>
		<description><![CDATA[I never thought I would have to write this article. Downloading Java was the simplest thing possible. Just go to java.sun.com and download the JDK. Unfortunately Sun has (intentionally?) complicated the procedure to such an extent that it almost takes an expert to download the proper version of JDK and without any extra and often .... Source article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-download-install-jdk-6/">How to download &#038; install JDK 6</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-download-install-jdk-6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to find ethernet / MAC address on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 02:46:26 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Information Technology]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tech Note]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=15095</guid>
		<description><![CDATA[In Linux networking is easy, you just have to know how. We will discuss below how you can find your own machine&#8217;s MAC address for all the attached ethernet cards as well as MAC addresses on other machines in the network.

How to find Ethernet / MAC Address of ethernet cards in your machine
ifconfig -a
In the .... Original article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/">How to find ethernet / MAC address on Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-find-ethernet-mac-address-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to install nVidia Driver on CentOS</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 10:50:30 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[Fedora 7]]></category>

		<category><![CDATA[Fedora Core 6]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[CentOS]]></category>

		<category><![CDATA[Fedora]]></category>

		<category><![CDATA[rhel]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=14836</guid>
		<description><![CDATA[Before you read, here is a bit of warning: Do not install the nVidia driver that you can download from nVidia.com. The driver may install fine but may not work as you expect. You are much better of following the procedure below.

Now I could repeat stuff from other website or I could say it succintly. ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/">Original source on Gaea Times at  : How to install nVidia Driver on CentOS</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-nvidia-driver-on-centos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to auto-start synergyc in Fedora / CentOS / RHEL Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-auto-start-synergyc-in-fedora-centos-rhel-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-auto-start-synergyc-in-fedora-centos-rhel-linux/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 07:13:39 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Fedora 11]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[CentOS]]></category>

		<category><![CDATA[Fedora]]></category>

		<category><![CDATA[rhel]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=14833</guid>
		<description><![CDATA[You may find several instructions to autostart synergyc during login and after login. I had a hard time using them. Additionally I found the instructions to be redundant and based on incomplete inderstanding of how gdm works. The following is the simplest set of instructions you can find anywhere to autostart synergyc on Fedora / ... Read the original article on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-auto-start-synergyc-in-fedora-centos-rhel-linux/">How to auto-start synergyc in Fedora / CentOS / RHEL Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-auto-start-synergyc-in-fedora-centos-rhel-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Offer: Adobe Photoshop CS4 Extended (80% discount + free shipping!)</title>
		<link>http://tech.gaeatimes.com/index.php/archive/offer-adobe-photoshop-cs4-extended-80-discount-free-shipping/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/offer-adobe-photoshop-cs4-extended-80-discount-free-shipping/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 14:53:22 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Features]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Adobe Photoshop CS4 Extended]]></category>

		<category><![CDATA[Adobe Photoshop CS4 Extended Offer]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=14369</guid>
		<description><![CDATA[Adobe Photoshop CS4 Extended, the latest and the most sophisticated image editor software is coming out with a palpable discount of 80% and also with a free shipping. We generally refrain from such allurement, but this time its really that shareable. Just to give you a brief overview,

You can

Paint directly on 3D models
Access all the .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/offer-adobe-photoshop-cs4-extended-80-discount-free-shipping/">Offer: Adobe Photoshop CS4 Extended (80% discount + free shipping!)</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/offer-adobe-photoshop-cs4-extended-80-discount-free-shipping/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JDK 1.6 Compiler Optimization performance difference between IP address to long implementations</title>
		<link>http://tech.gaeatimes.com/index.php/archive/jdk-16-compiler-optimization-performance-difference-between-ip-address-to-long-implementations/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/jdk-16-compiler-optimization-performance-difference-between-ip-address-to-long-implementations/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 13:44:38 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Java Software]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[JDK 1.6]]></category>

		<category><![CDATA[JDK 1.6 compiler]]></category>

		<category><![CDATA[JDK 1.6 optimization]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=13352</guid>
		<description><![CDATA[Just to give all ya techies  some food for real geeky thoughts, here is a kind of an eye opener of how much JDK 1.6 compiler has optimized itself over the years. Our developers were working on a project that needed IP addresses to get simplified and be represented by numbers. Understandably it reduces .... <a href="http://tech.gaeatimes.com/index.php/archive/jdk-16-compiler-optimization-performance-difference-between-ip-address-to-long-implementations/">Source article on Gaea Times at  &nbsp;: JDK 1.6 Compiler Optimization performance difference between IP address to long implementations</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/jdk-16-compiler-optimization-performance-difference-between-ip-address-to-long-implementations/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Progressive Disclosure in API Design with example</title>
		<link>http://tech.gaeatimes.com/index.php/archive/progressive-disclosure-in-api-design-with-example/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/progressive-disclosure-in-api-design-with-example/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 12:56:44 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Information Technology]]></category>

		<category><![CDATA[J2EE]]></category>

		<category><![CDATA[J2ME]]></category>

		<category><![CDATA[J2SE]]></category>

		<category><![CDATA[JDBC]]></category>

		<category><![CDATA[JMS]]></category>

		<category><![CDATA[Java Software]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Db4o]]></category>

		<category><![CDATA[Progressive Disclosure]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=13349</guid>
		<description><![CDATA[You have probably heard about the progressive disclosure principle of UI design. In Progressive disclosure design you defer advanced or rarely used features to a secondary screen, making applications easier to learn and less error-prone. It has been successfully argued that the same principles can be and should be applied to API design, which are  [..] <a href="http://tech.gaeatimes.com/index.php/archive/progressive-disclosure-in-api-design-with-example/">Read the original article: here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/progressive-disclosure-in-api-design-with-example/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox 3.5.1 fixes serious security flaws</title>
		<link>http://tech.gaeatimes.com/index.php/archive/firefox-351-offers-tighter-security-than-before/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/firefox-351-offers-tighter-security-than-before/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 21:56:10 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Software Review]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Firefox 3.5.1]]></category>

		<category><![CDATA[firefox 3.5.1 download]]></category>

		<category><![CDATA[Mozilla Firefox]]></category>

		<category><![CDATA[mozilla firefox 3.5.1]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=12455</guid>
		<description><![CDATA[Mozillla releases Firefox 3.5.1 update version for Windows, Mac, and Linux on Tuesday. This new version claims a fix for critical security hole and available in more than 70 different languages.

Critical security hole:
Firefox 3.5 was released in a hope to build a better foundation for Web applications, but within a short period of time a .... <a href="http://tech.gaeatimes.com/index.php/archive/firefox-351-offers-tighter-security-than-before/">Source article &nbsp;: Firefox 3.5.1 fixes serious security flaws</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/firefox-351-offers-tighter-security-than-before/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An Interview with Indian Travel Search service 90di&#8217;s co-founder Khushnood Naqvi</title>
		<link>http://tech.gaeatimes.com/index.php/archive/an-interview-with-indian-travel-search-service-90dis-co-founder-khushnood-naqvi/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/an-interview-with-indian-travel-search-service-90dis-co-founder-khushnood-naqvi/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 13:55:18 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Interview]]></category>

		<category><![CDATA[Taragana]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[90di]]></category>

		<category><![CDATA[Bounce]]></category>

		<category><![CDATA[Decided]]></category>

		<category><![CDATA[enterpreneurs]]></category>

		<category><![CDATA[Friends]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Things]]></category>

		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=11635</guid>
		<description><![CDATA[From this day, Simple Thoughts is starting up a series of interviews with prominent entrepreneurs from India and all over the world. In our first endeavor, we managed to do a tête-à-tête with Khushnood Naqvi, co-founder of a very useful online travel search service, 90di. (Get more information for 90di). The main USP of 90di .... Source article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/an-interview-with-indian-travel-search-service-90dis-co-founder-khushnood-naqvi/">An Interview with Indian Travel Search service 90di&#8217;s co-founder Khushnood Naqvi</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/an-interview-with-indian-travel-search-service-90dis-co-founder-khushnood-naqvi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is Facebook killing Google softly? - A study</title>
		<link>http://tech.gaeatimes.com/index.php/archive/is-facebook-killing-google-softly-a-study/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/is-facebook-killing-google-softly-a-study/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 14:27:27 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[Featured Article]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[Social Networking]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web Services]]></category>

		<category><![CDATA[Facebook vs Google]]></category>

		<category><![CDATA[Google wave]]></category>

		<category><![CDATA[Perez hilton]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=11272</guid>
		<description><![CDATA[Before people feel obnoxious about the rather ambitious title this article ventures through, I must put you to peace by this self-quote:
Behind every successful machine, there is a human, always watching.
I know you are lost in the mazes of correlating it to the title but, a well researched article from Wired may help you realize ... <a href="http://tech.gaeatimes.com/index.php/archive/is-facebook-killing-google-softly-a-study/">Original article on  : Is Facebook killing Google softly? - A study</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/is-facebook-killing-google-softly-a-study/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google launches &#8216;Explore Google Search&#8217; (being weary of Bing?)</title>
		<link>http://tech.gaeatimes.com/index.php/archive/google-launches-explore-google-search-being-weary-of-bing/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/google-launches-explore-google-search-being-weary-of-bing/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:55:48 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Bing]]></category>

		<category><![CDATA[Google Search]]></category>

		<category><![CDATA[google search features]]></category>

		<category><![CDATA[Google vs bing]]></category>

		<category><![CDATA[So what]]></category>

		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=11084</guid>
		<description><![CDATA[Search is at the heart of everything we do. Our engineers work every day to solve the hardest search problems, and thus improve your online experience. Here&#8217;s a glimpse at what they do, the features they&#8217;ve built and the remarkable user stories that inspire our work

When you get such quotes right up, you know that ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/google-launches-explore-google-search-being-weary-of-bing/" title="Google launches &#8216;Explore Google Search&#8217; (being weary of Bing?)">>>></a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/google-launches-explore-google-search-being-weary-of-bing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows 7 Release Schedule</title>
		<link>http://tech.gaeatimes.com/index.php/archive/windows-7-release-schedule/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/windows-7-release-schedule/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 14:25:05 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Windows 7]]></category>

		<category><![CDATA[Microsoft windows 7 release]]></category>

		<category><![CDATA[Red carpet]]></category>

		<category><![CDATA[windows 7 release]]></category>

		<category><![CDATA[windows 7 release schedule]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=10243</guid>
		<description><![CDATA[The word is out. We broke it just when it came out of the horse&#8217;s mouth. Windows 7 has always been one of our primary targets in feeding you with all the news, views and releases. This time too, we won&#8217;t let you speculate what to do between June to October. Of course Microsoft has .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/windows-7-release-schedule/">Windows 7 Release Schedule</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/windows-7-release-schedule/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fluther accuses Jason Calacanis of content stealing</title>
		<link>http://tech.gaeatimes.com/index.php/archive/fluther-accuses-jason-calacanis-of-content-stealing/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/fluther-accuses-jason-calacanis-of-content-stealing/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 14:20:38 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Pro Blogging]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[content stealing]]></category>

		<category><![CDATA[ethical blogging]]></category>

		<category><![CDATA[Fact]]></category>

		<category><![CDATA[Jason Calacanis]]></category>

		<category><![CDATA[Jason calacanis thrashed]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=10167</guid>
		<description><![CDATA[The concept of internet plagiarism is a matter of concern and we all know that. While we had brought this issue into limelight almost a year before (Code of conducts for bloggers), a new and far more serious issue has stirred this debate once again. This time the person under allegation is none other than ... Read the original article on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/fluther-accuses-jason-calacanis-of-content-stealing/">Fluther accuses Jason Calacanis of content stealing</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/fluther-accuses-jason-calacanis-of-content-stealing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Wave: Vision of Web 3.0?</title>
		<link>http://tech.gaeatimes.com/index.php/archive/google-wave-vision-of-web-30/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/google-wave-vision-of-web-30/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:04:15 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Google wave]]></category>

		<category><![CDATA[google wave features]]></category>

		<category><![CDATA[google wave full story]]></category>

		<category><![CDATA[Google wave preview]]></category>

		<category><![CDATA[is google wave good enough]]></category>

		<category><![CDATA[Rasmussen]]></category>

		<category><![CDATA[What is google wave]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=10015</guid>
		<description><![CDATA[Google is constantly upgrading and improving itself looking at the future of web with their kinds. In their endeavour of doing so, the latest innovation they showed us on Google Developers&#8217; conference at San Fransisco, is Google Wave. According to them,
Google Wave is a product that helps users communicate and collaborate on the web.  .... <a href="http://tech.gaeatimes.com/index.php/archive/google-wave-vision-of-web-30/">Source &nbsp;: Google Wave: Vision of Web 3.0?</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/google-wave-vision-of-web-30/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Convert PDF Tables to Excel Format</title>
		<link>http://tech.gaeatimes.com/index.php/archive/convert-pdf-tables-to-excel-format/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/convert-pdf-tables-to-excel-format/#comments</comments>
		<pubDate>Tue, 19 May 2009 21:08:45 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Convert PDF tables to excel format]]></category>

		<category><![CDATA[Excel format]]></category>

		<category><![CDATA[microsoft excel]]></category>

		<category><![CDATA[PDF tables]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=9660</guid>
		<description><![CDATA[At times you need to reuse the table with tabulated data from PDF format. Simply, you can&#8217;t work on the PDF tables as you can do with Microsoft Excel. Now, it is an up hill task to edit the data manually to get it in excel format. What if you could get the PDF tables ... <a href="http://tech.gaeatimes.com/index.php/archive/convert-pdf-tables-to-excel-format/">Read the original article on Gaea Times at  : Convert PDF Tables to Excel Format</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/convert-pdf-tables-to-excel-format/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hosted Subversion Service: Advantages and Disadvantages</title>
		<link>http://tech.gaeatimes.com/index.php/archive/hosted-subversion-service-advantages-disadvantages/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/hosted-subversion-service-advantages-disadvantages/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 16:55:53 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Google Analytics]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Web Hosting]]></category>

		<category><![CDATA[Cases]]></category>

		<category><![CDATA[Eye]]></category>

		<category><![CDATA[hosted subversion service]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[Liability]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Subversion]]></category>

		<category><![CDATA[Take that]]></category>

		<category><![CDATA[The client]]></category>

		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=2821</guid>
		<description><![CDATA[Subversion is a highly popular version control system used worldwide. It succeeds CVS and aims to rectify its shortcomings. Subversion, like any other version control system, is used to maintain current and historical revisions of files such as source code, web pages, and documentation.
Hosted Subversion Service allows you to host your subversion server and data ... <a href="http://tech.gaeatimes.com/index.php/archive/hosted-subversion-service-advantages-disadvantages/">Read more : Hosted Subversion Service: Advantages and Disadvantages</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/hosted-subversion-service-advantages-disadvantages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows 8, How are you Shaping up?</title>
		<link>http://tech.gaeatimes.com/index.php/archive/windows-8-how-are-you-shaping-up/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/windows-8-how-are-you-shaping-up/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 17:06:29 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[CHESS]]></category>

		<category><![CDATA[Microsoft next os]]></category>

		<category><![CDATA[midori]]></category>

		<category><![CDATA[Windows 7 next]]></category>

		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=8276</guid>
		<description><![CDATA[After covering Windows 7 extensively, the quest to find what else is happening obviously took us to the question, Is Microsoft gonna rest now? But for what reason? May be the next version of Windows 7 will be a completely cloud based OS. But as it seems for now that Midori (Windows 8 codename) will ... <a href="http://tech.gaeatimes.com/index.php/archive/windows-8-how-are-you-shaping-up/">Read the original article on Gaea Times at  : Windows 8, How are you Shaping up?</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/windows-8-how-are-you-shaping-up/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu 9.10 : Karmic Koala - Complete Overview</title>
		<link>http://tech.gaeatimes.com/index.php/archive/ubuntu-910-karmic-koala-complete-overview/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/ubuntu-910-karmic-koala-complete-overview/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 18:00:44 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[ubuntu 9.10]]></category>

		<category><![CDATA[ubuntu 9.10 karmic koala]]></category>

		<category><![CDATA[ubuntu 9.10 overview]]></category>

		<category><![CDATA[ubuntu karmic koala features]]></category>

		<category><![CDATA[ubuntu latest version]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=8052</guid>
		<description><![CDATA[Ubuntu community has been graphically the richest distro in the entire Linux community. When we actually talked about Ubuntu 8.10, Intrepid Ibex, people went ga ga over the desktop theme above anything else. This time too, after the announcement of Ubuntu 9.04 (Jaunty Jackalope due for today), the community is buzzing up with the talks .... Source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/ubuntu-910-karmic-koala-complete-overview/">Ubuntu 9.10 : Karmic Koala - Complete Overview</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/ubuntu-910-karmic-koala-complete-overview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux Netbooks Return Rates are 4 Times Higher than Windows, but how Microsoft is Gonna Lose it Again</title>
		<link>http://tech.gaeatimes.com/index.php/archive/linux-netbooks-return-rates-are-4-times-higher-than-windows-but-how-microsoft-is-gonna-lose-it-again/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/linux-netbooks-return-rates-are-4-times-higher-than-windows-but-how-microsoft-is-gonna-lose-it-again/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 14:09:57 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Claim]]></category>

		<category><![CDATA[linux netbook]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Windows 7]]></category>

		<category><![CDATA[Windows 7 3 app limit]]></category>

		<category><![CDATA[Windows 7 on netbook]]></category>

		<category><![CDATA[windows netbooks are better than linux netbooks]]></category>

		<category><![CDATA[windows xp discount]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=7773</guid>
		<description><![CDATA[While such a claim has been rather emphatic from Microsoft&#8217;s point of view, but analysts predict that sales of netbooks will grow nearly 80% this year to 21 million units, while overall PC sales decline by 11.9%. And Microsoft is quite aware of that. WSJ reports that Windows XP at a discounted rate is already .... <a href="http://tech.gaeatimes.com/index.php/archive/linux-netbooks-return-rates-are-4-times-higher-than-windows-but-how-microsoft-is-gonna-lose-it-again/">Original article &nbsp;: Linux Netbooks Return Rates are 4 Times Higher than Windows, but how Microsoft is Gonna Lose it Again</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/linux-netbooks-return-rates-are-4-times-higher-than-windows-but-how-microsoft-is-gonna-lose-it-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google App Engine Support Java And How To Get An Early Invite Free</title>
		<link>http://tech.gaeatimes.com/index.php/archive/google-app-engine-support-java-and-how-to-get-an-early-invite-free/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/google-app-engine-support-java-and-how-to-get-an-early-invite-free/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 13:22:25 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[Java Software]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Python]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[eclipse]]></category>

		<category><![CDATA[Google app engine]]></category>

		<category><![CDATA[google java]]></category>

		<category><![CDATA[google supports java]]></category>

		<category><![CDATA[how to get a free access]]></category>

		<category><![CDATA[Servlet]]></category>

		<category><![CDATA[Servlets]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=7265</guid>
		<description><![CDATA[The breaking news today is Google App Engine has finally announced support for Java.  The Java environment provides a Java 6 JVM, a Java Servlets interface, and support for standard interfaces to the App Engine scalable datastore and services, such as JDO, JPA, JavaMail, and JCache. Standards support makes developing your application easy and ... <a href="http://tech.gaeatimes.com/index.php/archive/google-app-engine-support-java-and-how-to-get-an-early-invite-free/">Read more : Google App Engine Support Java And How To Get An Early Invite Free</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/google-app-engine-support-java-and-how-to-get-an-early-invite-free/feed/</wfw:commentRss>
		</item>
		<item>
		<title>NVIDIA Quadro to Define the Next generation of Graphics Display</title>
		<link>http://tech.gaeatimes.com/index.php/archive/nvidia-quadro-to-define-the-next-generation-of-graphics-display/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/nvidia-quadro-to-define-the-next-generation-of-graphics-display/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 19:41:01 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Video]]></category>

		<category><![CDATA[next gen graphics]]></category>

		<category><![CDATA[NVIDIA]]></category>

		<category><![CDATA[NVIDIA Quadro]]></category>

		<category><![CDATA[quadro]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6957</guid>
		<description><![CDATA[To help customers face the most challenging visual computing problems, NVIDIA has come with its set of Quadro(R) professional GPU solutions. This new lineup, with the flagship Quadro FX 5800, will surely set the path of next generation graphics card designs and their powers to show extremely rich in visual graphics easily. So let&#8217;s see ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/nvidia-quadro-to-define-the-next-generation-of-graphics-display/" title="NVIDIA Quadro to Define the Next generation of Graphics Display">>>></a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/nvidia-quadro-to-define-the-next-generation-of-graphics-display/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Script to kill Resource Hungry Processes and Save from System Hang</title>
		<link>http://tech.gaeatimes.com/index.php/archive/script-to-kill-resource-hungry-processes-and-save-from-system-hang/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/script-to-kill-resource-hungry-processes-and-save-from-system-hang/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 20:43:33 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Hacking]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[how not to get a machine hanged]]></category>

		<category><![CDATA[kill cpu hungry processes]]></category>

		<category><![CDATA[Say]]></category>

		<category><![CDATA[Script to kill CPU hungry processes]]></category>

		<category><![CDATA[Script to kill Resource Hungry Processes and Save from System Hang]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6746</guid>
		<description><![CDATA[I am sure even if you use Fedora or CentOS, you have had fair share of irritation caused by system hangs. Of course no one can doubt Microsoft Windows&#8217; supremacy in this event but still, any kind of system hang interrupt our whole process of working and thinking in a big way. What happens with ... Original source on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/script-to-kill-resource-hungry-processes-and-save-from-system-hang/">Script to kill Resource Hungry Processes and Save from System Hang</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/script-to-kill-resource-hungry-processes-and-save-from-system-hang/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configure Hotmail for POP3</title>
		<link>http://tech.gaeatimes.com/index.php/archive/configure-hotmail-for-pop3/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/configure-hotmail-for-pop3/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 14:22:01 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Configure Hotmail for POP3]]></category>

		<category><![CDATA[hotmail]]></category>

		<category><![CDATA[hotmail pop3 configuration]]></category>

		<category><![CDATA[how to configure hotmail for pop3]]></category>

		<category><![CDATA[Pop]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6842</guid>
		<description><![CDATA[Hotmail, unlike others, never had a POP3 access in the first place. Well, you can&#8217;t blame Microsoft for leaving behind some of the most important features behind while concetrating on the ones which we DO NOT WANT. But what is POP3 if you ask, It is a protocol that allows almost any e-mail software program ... <a href="http://tech.gaeatimes.com/index.php/archive/configure-hotmail-for-pop3/">Read this article on Gaea Times at  : Configure Hotmail for POP3</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/configure-hotmail-for-pop3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Docs Adds Drawing Feature</title>
		<link>http://tech.gaeatimes.com/index.php/archive/google-docs-adds-drawing-feature/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/google-docs-adds-drawing-feature/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 19:06:13 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Web Services]]></category>

		<category><![CDATA[draw from google docs]]></category>

		<category><![CDATA[Express]]></category>

		<category><![CDATA[Google Docs]]></category>

		<category><![CDATA[google docs insert drawing]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6753</guid>
		<description><![CDATA[Google refuses to stop these days. After upgrading GMail and Google search, its now time for an amazing and yet simple feature for Google Docs, insert drawing. With it you can now create and insert drawings directly into your Google documents, spreadsheets and presentations. The tool, just like Google&#8217;s other products, is very easy to ... Original source on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/google-docs-adds-drawing-feature/">Google Docs Adds Drawing Feature</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/google-docs-adds-drawing-feature/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Compile Java Source within Java Program</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-compile-java-source-within-java-program/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-compile-java-source-within-java-program/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 16:47:21 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Java Software]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[compile java program]]></category>

		<category><![CDATA[compile java source within java program]]></category>

		<category><![CDATA[java program]]></category>

		<category><![CDATA[run java program from another java]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6738</guid>
		<description><![CDATA[This small trick will tell you how you can compile a java source file from another java file on the go. You do not need to run it on a different page and compile it there and then get back to this program. This will be immensely helpful for a program that has some dynamic .... Source article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-compile-java-source-within-java-program/">How to Compile Java Source within Java Program</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-compile-java-source-within-java-program/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Stop Crashing / Hanging of php-cgi / spawn-fcgi with nginx / lighttpd</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-stop-crashing-hanging-of-php-cgi-spawn-fcgi-with-nginx-lighttpd/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-stop-crashing-hanging-of-php-cgi-spawn-fcgi-with-nginx-lighttpd/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 18:06:09 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[How to prevent your server from crashing]]></category>

		<category><![CDATA[How to Stop Crashing/Hanging of php-cgi / spawn-fcgi with nginx or light httpd]]></category>

		<category><![CDATA[light httpd]]></category>

		<category><![CDATA[PHP fcgi]]></category>

		<category><![CDATA[spaw-fcgi]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6627</guid>
		<description><![CDATA[One of the frequently complained problems while using nginx or lighttpd, two popular and rapidly growing web servers which are faster and lighter alternatives to big daddy Apache web server, with php (through fastcgi interface) is that the pool of php-cgi which ultimately serves the php pages seems to hang frequently and without any apparent ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-stop-crashing-hanging-of-php-cgi-spawn-fcgi-with-nginx-lighttpd/">Read this article on Gaea Times at  : How to Stop Crashing / Hanging of php-cgi / spawn-fcgi with nginx / lighttpd</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-stop-crashing-hanging-of-php-cgi-spawn-fcgi-with-nginx-lighttpd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Boomarklet to make any web page editable</title>
		<link>http://tech.gaeatimes.com/index.php/archive/boomarklet-to-make-any-web-page-editable/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/boomarklet-to-make-any-web-page-editable/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 11:59:48 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Open Source Software]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6229</guid>
		<description><![CDATA[Imagine you had a way to edit any web page instantly in the browser itself to experiment with the look and layout or copy some code?

Here is a Firefox bookmarklet to make any web page editable [Edit] in the browser itself. Just drag it to your bookmarks and you are ready to use it. Whenever .... <a href="http://tech.gaeatimes.com/index.php/archive/boomarklet-to-make-any-web-page-editable/">Source &nbsp;: Boomarklet to make any web page editable</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/boomarklet-to-make-any-web-page-editable/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Stop Firefox From Blocking Sites Suspected of Forgery or Attack</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-stop-firefox-from-blocking-sites-suspected-of-forgery-or-attack/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-stop-firefox-from-blocking-sites-suspected-of-forgery-or-attack/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 23:05:27 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[Browser]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Headline News]]></category>

		<category><![CDATA[How To]]></category>

		<category><![CDATA[Tech Note]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Firefox 3]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=6223</guid>
		<description><![CDATA[Firefox 3 onwards has a nice feature which warns you of sites which are suspected of forgery or attacks (through trojans, malware etc.). Unfortunately the feature is too intrusive and warns you repeatedly, nags you to death is a better phrase to describe it, even when you have confirmed that the site is genuine. If .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-stop-firefox-from-blocking-sites-suspected-of-forgery-or-attack/">Source &nbsp;: How To Stop Firefox From Blocking Sites Suspected of Forgery or Attack</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-stop-firefox-from-blocking-sites-suspected-of-forgery-or-attack/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

