<?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; Open Source Software</title>
	<atom:link href="http://tech.gaeatimes.com/index.php/category/open-source-software/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 .... Original source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-parition-a-new-drive-before-adding-to-raid-array-in-linux/">How to parition a new drive before adding to RAID array in Linux</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/">Original source on Gaea Times at  : 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 ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/how-to-reduce-space-required-by-linux-utility-dd-created-drive-image/" title="How to reduce space required by (Linux utility) dd created drive image">&raquo;&raquo;&raquo;</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 more : How to add a new partition to RAID array in Linux using mdadm</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 remove a drive from RAID array in Linux using mdadm</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-remove-a-drive-from-raid-array-in-linux-using-mdadm/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-remove-a-drive-from-raid-array-in-linux-using-mdadm/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:04:00 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

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

		<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>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39422</guid>
		<description><![CDATA[Sometimes a little code is worth a thousand words, no?
mdadm &#8211;manage /dev/md1 &#8211;remove /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-remove-a-drive-from-raid-array-in-linux-using-mdadm/">Original source &nbsp;: How to remove a drive from RAID array in Linux using mdadm</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-remove-a-drive-from-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 ... Original article on  : <a href="http://tech.gaeatimes.com/index.php/archive/how-to-check-symbolic-link-in-java-and-why-apache-commoniofileutils-implementation-is-wrong/">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>Chrome OS Sports Cloud Computing Architechture</title>
		<link>http://tech.gaeatimes.com/index.php/archive/chrome-os-sports-cloud-computing-architechture/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/chrome-os-sports-cloud-computing-architechture/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 22:05:59 +0000</pubDate>
		<dc:creator>Taragana</dc:creator>
		
		<category><![CDATA[Android]]></category>

		<category><![CDATA[Cloud Computing]]></category>

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

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

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

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

		<category><![CDATA[cloud computing]]></category>

		<category><![CDATA[Operating System]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/index.php/archive/chrome-os-sports-cloud-computing-architechture/</guid>
		<description><![CDATA[
more images

Google is all excited about it&#8217;s latest buzz &#8212; The Chrome Operating System, so are we all. The interesting fact that came into light recently is that Google Chrome OS for netbooks and PCs will offer a new, cloud-based operating system architecture.
Well, it was at a recent conference, that Google CEO Eric Schmid himself .... Original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/chrome-os-sports-cloud-computing-architechture/">Chrome OS Sports Cloud Computing Architechture</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/chrome-os-sports-cloud-computing-architechture/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Indian IT Spend is Expected to Reach $72 Bn by 2011: Gartner</title>
		<link>http://tech.gaeatimes.com/index.php/archive/indian-it-spend-is-expected-to-reach-72-bn-by-2011gartner/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/indian-it-spend-is-expected-to-reach-72-bn-by-2011gartner/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 08:30:13 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Country]]></category>

		<category><![CDATA[Enterprise Software and Services]]></category>

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

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

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

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

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

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

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

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

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

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

		<category><![CDATA[System Integration]]></category>

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39289</guid>
		<description><![CDATA[ According to Gartner, India&#8217;s IT spend will reach at $71.9 Bn milestone by the year 2011 which is a 10.3 percent increase from 2010 spending of $65.23 bn.  The study further said that hardware is the fastest growing segment with a growth of 20.4 percent through 2014. IT services is projected to grow with ... Original source on Gaea Times at  : <a href="http://tech.gaeatimes.com/index.php/archive/indian-it-spend-is-expected-to-reach-72-bn-by-2011gartner/">Indian IT Spend is Expected to Reach $72 Bn by 2011: Gartner</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/indian-it-spend-is-expected-to-reach-72-bn-by-2011gartner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Do You Think Facebook Can Defeat Google to Win the Net</title>
		<link>http://tech.gaeatimes.com/index.php/archive/do-you-think-facebook-can-defeat-google-to-win-the-net/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/do-you-think-facebook-can-defeat-google-to-win-the-net/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 16:17:25 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Facebook]]></category>

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

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

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

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

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

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

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

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

		<category><![CDATA[Online Ad]]></category>

		<category><![CDATA[online publishing]]></category>

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

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

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=39076</guid>
		<description><![CDATA[ When you log into Facebook, you can convince the world to identify you online. The Social Network also gives the privilege to the users to share photos and updates. This way the company tried to layer the identity over the social web. Microsoft and Yahoo used to be the big competitors for Google for .... Original article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/do-you-think-facebook-can-defeat-google-to-win-the-net/">Do You Think Facebook Can Defeat Google to Win the Net</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/do-you-think-facebook-can-defeat-google-to-win-the-net/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Chrome OS Runs Open Source</title>
		<link>http://tech.gaeatimes.com/index.php/archive/google-chrome-os-runs-open-source/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/google-chrome-os-runs-open-source/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 19:06:02 +0000</pubDate>
		<dc:creator>Taragana</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

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

		<category><![CDATA[Nexus one]]></category>

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

		<guid isPermaLink="false">http://tech.gaeatimes.com/index.php/archive/google-chrome-os-runs-open-source/</guid>
		<description><![CDATA[
more images

Interestingly, Google Chromium is open source, quite unlike Android. The credit goes to McLoughlin who happens to be a college student in the UK. He is the face that has acted as the main source for Chromium OS build releases eve since Google first unveiled its public code tree in November of last year.
Faint ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/google-chrome-os-runs-open-source/" title="Google Chrome OS Runs Open Source">>>></a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/google-chrome-os-runs-open-source/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Opera to Add Powerful Features in the Upcoming Version</title>
		<link>http://tech.gaeatimes.com/index.php/archive/opera-to-add-powerful-features-in-the-upcoming-version/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/opera-to-add-powerful-features-in-the-upcoming-version/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 07:26:17 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Browser]]></category>

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

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

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

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

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

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

		<category><![CDATA[Mobile Apps iPhone]]></category>

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

		<category><![CDATA[web browser]]></category>

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

		<guid isPermaLink="false">http://tech.gaeatimes.com/?p=38753</guid>
		<description><![CDATA[ The Web Browser company Opera announced some of the interesting features before the release of the upcoming version, Opera 11 Alpha at its recently held conference in Oslo. The key feature of the new version is the the ability to customize the application.  Opera 11 will support extensions, apart from the widgets that the ... Original article on  : <a href="http://tech.gaeatimes.com/index.php/archive/opera-to-add-powerful-features-in-the-upcoming-version/">Opera to Add Powerful Features in the Upcoming Version</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/opera-to-add-powerful-features-in-the-upcoming-version/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Deterministic Parallel Java, an Extension of Java Improves Development of Parallel Apps</title>
		<link>http://tech.gaeatimes.com/index.php/archive/deterministic-parallel-java-an-extension-of-java-improves-development-of-parallel-apps/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/deterministic-parallel-java-an-extension-of-java-improves-development-of-parallel-apps/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 06:07:41 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

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

		<category><![CDATA[C++]]></category>

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

		<category><![CDATA[Multicore Architecture]]></category>

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

		<category><![CDATA[Parallel Application]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=38638</guid>
		<description><![CDATA[ Computer scientists at the University of Illinois have developed extensions to Java in order to address the critical issue of    parallel application development. And they are planning to do the same for C++. You can check the download page to get the necessary information about the open source DPJ-to-Java compiler. 

Development .... <a href="http://tech.gaeatimes.com/index.php/archive/deterministic-parallel-java-an-extension-of-java-improves-development-of-parallel-apps/">Source article &nbsp;: Deterministic Parallel Java, an Extension of Java Improves Development of Parallel Apps</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/deterministic-parallel-java-an-extension-of-java-improves-development-of-parallel-apps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux Foundation Launches Open Compliance Program</title>
		<link>http://tech.gaeatimes.com/index.php/archive/linux-foundation-launches-open-compliance-program/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/linux-foundation-launches-open-compliance-program/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 16:30:03 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

		<category><![CDATA[Compliance Program]]></category>

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

		<category><![CDATA[Supply Chain]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=33355</guid>
		<description><![CDATA[ The Linux Foundation, the nonprofit organization, instrumental for the growth of Linux,  recently unveiled the Open Compliance Program. The program offers compliance training, tools and  a standard  format to report software  information, consulting and a self-assessment checklist so that companies can comply with open source licenses.

As the demand for Linux and ... <a href="http://tech.gaeatimes.com/index.php/archive/linux-foundation-launches-open-compliance-program/">Read this article on Gaea Times at  : Linux Foundation Launches Open Compliance Program</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/linux-foundation-launches-open-compliance-program/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Distinguo Software: Search Engine to Find Content by Meaning</title>
		<link>http://tech.gaeatimes.com/index.php/archive/distinguo-software-search-engine-to-find-content-by-meaning/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/distinguo-software-search-engine-to-find-content-by-meaning/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 12:41:49 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

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

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

		<category><![CDATA[web based search]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=31432</guid>
		<description><![CDATA[
more images

Distinguo is not a much known software, but holds a lot of prospects for future of web-based search. The Distinguo Software is a C++ API that has been designed for the sole purpose of searching content by its meaning; rather than the exact keywords. Ideally those involved in extensive research on the internet will .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/distinguo-software-search-engine-to-find-content-by-meaning/">Distinguo Software: Search Engine to Find Content by Meaning</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/distinguo-software-search-engine-to-find-content-by-meaning/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  [..] <a href="http://tech.gaeatimes.com/index.php/archive/how-to-fix-jrelibi386xawtlibmawtso-libxtstso6-cannot-open-shared-object-file-java-error-on-linux/">Read the original article: here</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 remove i386 packages from CentOS / Fedora / RHEL installation</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 15:25:33 +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[CentOS]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=29827</guid>
		<description><![CDATA[CentOS / RHEL / Fedora (same parentage) has the nasty habit of installing some i386 packages even though the corresponding i686 (for 32 bit machines) or x86_64 (for 64 bit machines) packages have already been installed. Here is a script to remove all i386 packages from your Linux box (assuming it uses an rpm based .... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/">Source article &nbsp;: How to remove i386 packages from CentOS / Fedora / RHEL installation</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-remove-i386-packages-from-centos-fedora-rhel-installation/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 .... Source article on Gaea Times at  &nbsp;: <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 install sar, sadf, mpstat, iostat, pidstat and sa tools on CentOS / Fedora / RHEL</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 13:35:33 +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[Web]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=29821</guid>
		<description><![CDATA[The following command can be used to install sar, sadf, mpstat, iostat, pidstat and sa tools on RPM based systems like CentOS, Fedora, RHEL (Red Hat Enterprise Linux):

As root type the followiung command (on console / terminal):
yum -y install sysstat
When you are not root but have sudo configured for your account then use:

sudo yum -y .... Original article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/">How to install sar, sadf, mpstat, iostat, pidstat and sa tools on CentOS / Fedora / RHEL</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-sar-sadf-mpstat-iostat-pidstat-and-sa-tools-on-centos-fedora-rhel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 10 Linux Security Tips for System Administrators</title>
		<link>http://tech.gaeatimes.com/index.php/archive/top-10-linux-security-tips-for-system-administrators/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/top-10-linux-security-tips-for-system-administrators/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 15:00:59 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Computer Security]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=28007</guid>
		<description><![CDATA[
more images

Like every other Operating System Linux not free from security issues. These issues can be anticipated and averted only with suitable preventive steps. However, sticking to the buttoned-down techniques for securing the Linux systems such as locking the network, minimizing risk by locking down the system and restricting the access to only a few ... <a href="http://tech.gaeatimes.com/index.php/archive/top-10-linux-security-tips-for-system-administrators/">Read more : Top 10 Linux Security Tips for System Administrators</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/top-10-linux-security-tips-for-system-administrators/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3 Effective MySQL Performance Optimization Tips for MyISAM Storage Engine (Optimizes WordPress performance too)</title>
		<link>http://tech.gaeatimes.com/index.php/archive/3-effective-mysql-performance-optimization-tips-for-myisam-storage-engine-optimizes-wordpress-performance-too/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/3-effective-mysql-performance-optimization-tips-for-myisam-storage-engine-optimizes-wordpress-performance-too/#comments</comments>
		<pubDate>Mon, 31 May 2010 03:50:27 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Enterprise Software and Services]]></category>

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

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

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

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

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

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

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

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

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

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

		<category><![CDATA[MySQL Performance]]></category>

		<category><![CDATA[WordPress Performance]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=27966</guid>
		<description><![CDATA[
more images


more images
The first two tips should be used for heavily loaded MySQL databases using MyISAM storage engine. They are simple configuration options which can relieve your system to a significant extent. The third can be used for MyISAM or InnoDB but is likely to benefit MyISAM data storage more than InnoDB as per reports ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/3-effective-mysql-performance-optimization-tips-for-myisam-storage-engine-optimizes-wordpress-performance-too/" title="3 Effective MySQL Performance Optimization Tips for MyISAM Storage Engine (Optimizes WordPress performance too)">&raquo;&raquo;&raquo;</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/3-effective-mysql-performance-optimization-tips-for-myisam-storage-engine-optimizes-wordpress-performance-too/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 5 Open Source Enterprise Resource Planning (ERP) Software for Small to Medium-sized Businesses (SMB)</title>
		<link>http://tech.gaeatimes.com/index.php/archive/top-5-open-source-enterprise-resource-planning-erp-software-for-small-to-medium-sized-businesses-smb/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/top-5-open-source-enterprise-resource-planning-erp-software-for-small-to-medium-sized-businesses-smb/#comments</comments>
		<pubDate>Tue, 11 May 2010 15:15:30 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

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

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

		<category><![CDATA[Enterprise resource planning]]></category>

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

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

		<category><![CDATA[Erp system]]></category>

		<category><![CDATA[Erp systems]]></category>

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

		<category><![CDATA[Open source erp]]></category>

		<category><![CDATA[open source ERP software]]></category>

		<category><![CDATA[Open source ERP solution]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=26717</guid>
		<description><![CDATA[
more images

The current decade has witnessed a decline in IT spending levels, and revenue contraction, largely affecting the future of ERP software industry. There are also a number of things to be optimistic about . The cost of implementing ERP software is beyond the budget of small and medium enterprises. To escape the situation, those .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/top-5-open-source-enterprise-resource-planning-erp-software-for-small-to-medium-sized-businesses-smb/">Top 5 Open Source Enterprise Resource Planning (ERP) Software for Small to Medium-sized Businesses (SMB)</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/top-5-open-source-enterprise-resource-planning-erp-software-for-small-to-medium-sized-businesses-smb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to develop Cloud Computing Infrastructure In-house with Open Source Software</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-develop-cloud-computing-infrastructure-in-house-with-open-source-software/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-develop-cloud-computing-infrastructure-in-house-with-open-source-software/#comments</comments>
		<pubDate>Fri, 07 May 2010 14:43:38 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Cloud Computing]]></category>

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

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

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

		<category><![CDATA[cloud toolkit]]></category>

		<category><![CDATA[infrastructure as a service]]></category>

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=26544</guid>
		<description><![CDATA[
more images

Cloud computing technology has been high on demand as it meets the needs of both IT providers and Internet users. Corporate clients have great interest in the cloud, including infrastructure outsourcing, software as a service key processes as a service as well as next-generation distributed computing. How about building a cloud computing infrastructure in-house .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-develop-cloud-computing-infrastructure-in-house-with-open-source-software/">How to develop Cloud Computing Infrastructure In-house with Open Source Software</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-develop-cloud-computing-infrastructure-in-house-with-open-source-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review of Open Source xTuple ERP Postbook Edition</title>
		<link>http://tech.gaeatimes.com/index.php/archive/review-of-open-source-xtuple-erp-postbook-edition/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/review-of-open-source-xtuple-erp-postbook-edition/#comments</comments>
		<pubDate>Mon, 03 May 2010 02:59:21 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

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

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

		<category><![CDATA[Qt Framework]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=26313</guid>
		<description><![CDATA[Overview:
 xTuple is a group of ERP, CRM and accounting applications which is built on a core of open source software under Common Public Attribution License (CPAL). PostBooks Edition (PostBooks) is  free open source ERP solution for small to medium sized businesses. It was developed on open source PostgreSQL database, and the open source Qt .... Original source &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/review-of-open-source-xtuple-erp-postbook-edition/">Review of Open Source xTuple ERP Postbook Edition</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/review-of-open-source-xtuple-erp-postbook-edition/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 7 Open Source Applications for Enterprise</title>
		<link>http://tech.gaeatimes.com/index.php/archive/top-5-enterprise-open-source-applications/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/top-5-enterprise-open-source-applications/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 06:45:39 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

		<category><![CDATA[Data Back Up]]></category>

		<category><![CDATA[Data Recovery Tools]]></category>

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

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

		<category><![CDATA[Network Monitor]]></category>

		<category><![CDATA[network security]]></category>

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

		<category><![CDATA[Open Source ERP and CRM]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=25140</guid>
		<description><![CDATA[ Sourceforge.net estimated that there are 230,000 open source projects on its site till Feb last year. Some of the projects are outdated, some of them do no not provide any support and others are in development phase. So, it is hard to find the right one for your need. I jot down 7 best ... <a href="http://tech.gaeatimes.com/index.php/archive/top-5-enterprise-open-source-applications/" title="Top 7 Open Source Applications for Enterprise">Read more &raquo;&raquo;</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/top-5-enterprise-open-source-applications/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is &#8220;Google Go&#8221; Going to be the Next &#8220;C&#8221; Language?</title>
		<link>http://tech.gaeatimes.com/index.php/archive/google-go-is-going-to-be-the-next-c-language/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/google-go-is-going-to-be-the-next-c-language/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 16:34:00 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

		<category><![CDATA[C++]]></category>

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

		<category><![CDATA[Dynamic Language]]></category>

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

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

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

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

		<category><![CDATA[Multi-core processing]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=23429</guid>
		<description><![CDATA[ Google launched an open-source experimental programming language GO. The language combines the performance and security benefits that we get by using a  compiled language like C++ with the speed of a dynamic language like  Python. Now a days, libraries are getting bigger due to lots of recent development. Internet, networking and multi-core .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/google-go-is-going-to-be-the-next-c-language/">here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/google-go-is-going-to-be-the-next-c-language/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Does the Location Based Service Foursquare Get More Popular than Twitter?</title>
		<link>http://tech.gaeatimes.com/index.php/archive/does-the-location-based-service-foursquare-get-more-popular-than-twitter/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/does-the-location-based-service-foursquare-get-more-popular-than-twitter/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 05:10:44 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

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

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

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

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

		<category><![CDATA[social network]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=23389</guid>
		<description><![CDATA[Overview:
 Foursquare is a web and mobile application that allows registered users to connect with  friends and update their location. Points are awarded on weekends and  non-business hours for &#8220;checking in&#8221; at venues. When the user logs in , they have a choice to update the Twitter or Facebook account. The service started .... Original article on Gaea Times at  &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/does-the-location-based-service-foursquare-get-more-popular-than-twitter/">Does the Location Based Service Foursquare Get More Popular than Twitter?</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/does-the-location-based-service-foursquare-get-more-popular-than-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Install and Configure DKIM On Postfix With dkim-milter (2.8.x) on 64 bit CentOS 5</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 17:14:40 +0000</pubDate>
		<dc:creator>pratima</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

		<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[Programming]]></category>

		<category><![CDATA[Spam Watch]]></category>

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

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

		<category><![CDATA[Cent OS]]></category>

		<category><![CDATA[Cent OS 5]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=22344</guid>
		<description><![CDATA[The following document was written after countless hours of research and experimentation, in the hope that you will not have to waste as much time in setting up DKIM on Postfix as we had to. The documents in internet on this subject are mostly old and deals with an old version of DKIM Milter.

What is .... Original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/">How to Install and Configure DKIM On Postfix With dkim-milter (2.8.x) on 64 bit CentOS 5</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-install-and-configure-dkim-on-postfix-with-dkim-milter-28x-on-64-bit-centos-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CentOS 5.4 : Synergy-Plus Crashing / Hanging on Linux Fixed</title>
		<link>http://tech.gaeatimes.com/index.php/archive/centos-54-synergy-plus-crashing-hanging-on-linux-fixed/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/centos-54-synergy-plus-crashing-hanging-on-linux-fixed/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 09:53:32 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[How To]]></category>

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

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

		<category><![CDATA[Cent OS 5]]></category>

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

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

		<category><![CDATA[Synergy-Plus]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=21558</guid>
		<description><![CDATA[After recent updates in CentOS 5.4, I found that Synergy-Plus is crashing whenever I try to type anything in the client desktop / screen. This pretty much makes Synergy-Plus unusable on Cent OS 5.4. The solution is to downgrade Synergy-Plus. Read below for full details on how you can fix Synergy-Plus on Cent OS.

Note: The ... Read more : <a href="http://tech.gaeatimes.com/index.php/archive/centos-54-synergy-plus-crashing-hanging-on-linux-fixed/">CentOS 5.4 : Synergy-Plus Crashing / Hanging on Linux Fixed</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/centos-54-synergy-plus-crashing-hanging-on-linux-fixed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to configure Java / Javac on Linux</title>
		<link>http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:43:45 +0000</pubDate>
		<dc:creator>angsuman</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=21038</guid>
		<description><![CDATA[
more images


more images
So now you have bravely installed Java on Linux, preferably the Sun&#8217;s version, right?
However you may have previous versions of JDK / JRE already on your system, presumably the one bundled with Linux like GCJ JRE.
Most of us are familiar with running java or javac with a simple command line invocation like: java ... <a href="http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/">Original source on Gaea Times at  : How to configure Java / Javac on Linux</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/how-to-configure-java-javac-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review of GlusterFS - Distributed Filesystem</title>
		<link>http://tech.gaeatimes.com/index.php/archive/review-of-glusterfs-distributed-file-system/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/review-of-glusterfs-distributed-file-system/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 16:41:04 +0000</pubDate>
		<dc:creator>Dipankar Das</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

		<category><![CDATA[Distributed File system]]></category>

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

		<category><![CDATA[File Systen Check]]></category>

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

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

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

		<category><![CDATA[Stackable Module]]></category>

		<category><![CDATA[TCP/IP]]></category>

		<category><![CDATA[User Space Design]]></category>

		<category><![CDATA[Virtual Machine]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=18691</guid>
		<description><![CDATA[  Overview:

GlusterFS is an open source parallel distributed/network filesystem. The software integrates  file system, an operating system and a management UI and can scale several petabytes of data.  It has two components, server and client. The storage server uses Glusterfsd and the client node runs Glusterfs client to mount the filesystem. In order to mount GlusterFS filesystem, the client should .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/review-of-glusterfs-distributed-file-system/">here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/review-of-glusterfs-distributed-file-system/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft to offer up to 12 browsers under binding deal to avoid new EU fines</title>
		<link>http://tech.gaeatimes.com/index.php/archive/microsoft-to-offer-up-to-12-browsers-under-binding-deal-to-avoid-new-eu-fines/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/microsoft-to-offer-up-to-12-browsers-under-binding-deal-to-avoid-new-eu-fines/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 11:02:49 +0000</pubDate>
		<dc:creator>AP</dc:creator>
		
		<category><![CDATA[Apple]]></category>

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

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

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

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

		<category><![CDATA[Internet Explorer]]></category>

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

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

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

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

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

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

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

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

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

		<category><![CDATA[Computer Hardware]]></category>

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

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

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

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

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

		<category><![CDATA[Western Europe]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/microsoft-to-offer-up-to-12-browsers-under-binding-deal-to-avoid-new-eu-fines/</guid>
		<description><![CDATA[
more images



more images

EU drops Microsoft browser charges
BRUSSELS — More than 100 million Europeans will get to pick a Web browser after Microsoft agreed to offer Internet users a choice to avoid fresh fines — a move that could represent a real thawing of long-standing tensions between the software company and the European Union.
In a deal .... <a href="http://tech.gaeatimes.com/index.php/archive/microsoft-to-offer-up-to-12-browsers-under-binding-deal-to-avoid-new-eu-fines/">Source article on Gaea Times at  &nbsp;: Microsoft to offer up to 12 browsers under binding deal to avoid new EU fines</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/microsoft-to-offer-up-to-12-browsers-under-binding-deal-to-avoid-new-eu-fines/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Obama&#8217;s open to &#8216;every demonstrably good idea&#8217; to reverse job loss, cites home-efficiency plan</title>
		<link>http://tech.gaeatimes.com/index.php/archive/obamas-open-to-every-demonstrably-good-idea-to-reverse-job-loss-cites-home-efficiency-plan/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/obamas-open-to-every-demonstrably-good-idea-to-reverse-job-loss-cites-home-efficiency-plan/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:33:58 +0000</pubDate>
		<dc:creator>Tom Raum</dc:creator>
		
		<category><![CDATA[Google]]></category>

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

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

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

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

		<category><![CDATA[African-americans]]></category>

		<category><![CDATA[Barack Obama]]></category>

		<category><![CDATA[Demographic Groups]]></category>

		<category><![CDATA[Energy Efficiency And Conservation]]></category>

		<category><![CDATA[Labor Economy]]></category>

		<category><![CDATA[North America]]></category>

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

		<category><![CDATA[Recessions And Depressions]]></category>

		<category><![CDATA[United States]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/obamas-open-to-every-demonstrably-good-idea-to-reverse-job-loss-cites-home-efficiency-plan/</guid>
		<description><![CDATA[
more images



more images

Obama calls for new ideas for creating jobs
WASHINGTON — President Barack Obama promised at a White House jobs forum on Thursday to take &#8220;every responsible step to accelerate job creation,&#8221; including some ideas he said could be put into action quickly. He cited an expanded program to help make more U.S. homes energy-efficient .... Original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/obamas-open-to-every-demonstrably-good-idea-to-reverse-job-loss-cites-home-efficiency-plan/">Obama&#8217;s open to &#8216;every demonstrably good idea&#8217; to reverse job loss, cites home-efficiency plan</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/obamas-open-to-every-demonstrably-good-idea-to-reverse-job-loss-cites-home-efficiency-plan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Good Reasons To Use Google Wave for Business</title>
		<link>http://tech.gaeatimes.com/index.php/archive/10-good-reasons-to-use-google-wave-for-business/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/10-good-reasons-to-use-google-wave-for-business/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 14:27:37 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=17439</guid>
		<description><![CDATA[We had projected Google Wave as the vision of Web 3.0. In the short term of its existence, Wave has gained momentum as a consumer tool, but it is still to prove its feasibility as a business tool. The question remains will businesses adopt Wave as a way to communicate collaboratively and share business docs. .... Original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/10-good-reasons-to-use-google-wave-for-business/">10 Good Reasons To Use Google Wave for Business</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/10-good-reasons-to-use-google-wave-for-business/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why Open Source Business Models Are Dead-End Streets</title>
		<link>http://tech.gaeatimes.com/index.php/archive/why-open-source-business-models-are-dead-end-streets/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/why-open-source-business-models-are-dead-end-streets/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 02:06:08 +0000</pubDate>
		<dc:creator>Angsuman Chakraborty</dc:creator>
		
		<category><![CDATA[AdSense]]></category>

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

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

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

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

		<category><![CDATA[Enterprise Software and Services]]></category>

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=17357</guid>
		<description><![CDATA[Why Open Source Business Models Are Dead-End Streets And GigaOM (Sebastian Rupley) is Wrong
I was reading GigaOM&#8217;s article (linked above) and it espouses the same age-old regurgitated wisdom about viable open-source business models:
Open-Source business model can survive by focusing on service (RedHat) or as a loss-leader (Android by Google) for promoting its more profitable ventures.  [..] <a href="http://tech.gaeatimes.com/index.php/archive/why-open-source-business-models-are-dead-end-streets/">Read the original article: here</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/why-open-source-business-models-are-dead-end-streets/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Solution: WordPress Nice Permalinks Not Working With Apache</title>
		<link>http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 02:28:41 +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[PHP]]></category>

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

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

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

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

		<category><![CDATA[Cent OS]]></category>

		<category><![CDATA[Cent OS 5]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=16948</guid>
		<description><![CDATA[WordPress nice permalinks is a way to create search-engine-friendly url&#8217;s for WordPress posts and pages. Unfortunately they sometimes do not work out-of-the-box even after choosing your permalinks structure in WordPress options. I have found the issue in Cent OS 5 as also in Fedora versions before.

First check whether your .htaccess file is present in  WordPress .... Read the original article &nbsp;: <a href="http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/">Solution: WordPress Nice Permalinks Not Working With Apache</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/solution-wordpress-nice-permalinks-not-working-with-apache/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>European regulators object to Sun-Oracle deal; Oracle to fight &#8220;profound misunderstanding&#8221;</title>
		<link>http://tech.gaeatimes.com/index.php/archive/european-regulators-object-to-sun-oracle-deal-oracle-to-fight-profound-misunderstanding/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/european-regulators-object-to-sun-oracle-deal-oracle-to-fight-profound-misunderstanding/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 01:13:53 +0000</pubDate>
		<dc:creator>Jordan Robertson</dc:creator>
		
		<category><![CDATA[IBM]]></category>

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

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

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

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

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

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

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

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

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

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

		<category><![CDATA[Government Regulations]]></category>

		<category><![CDATA[Industry Regulation]]></category>

		<category><![CDATA[North America]]></category>

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

		<category><![CDATA[San Francisco]]></category>

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

		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/index.php/archive/european-regulators-object-to-sun-oracle-deal-oracle-to-fight-profound-misunderstanding/</guid>
		<description><![CDATA[
more images



more images

EU objects to Oracle&#8217;s takeover of Sun
SAN FRANCISCO — European antitrust regulators have formally objected to Sun Microsystems Inc.&#8217;s planned $7.4 billion sale to Oracle Corp., escalating a battle over a deal that has already been cleared in the U.S.
The so-called &#8220;statement of objections&#8221; that Sun received Monday from the European Commission isn&#8217;t ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/european-regulators-object-to-sun-oracle-deal-oracle-to-fight-profound-misunderstanding/" title="European regulators object to Sun-Oracle deal; Oracle to fight &#8220;profound misunderstanding&#8221;">&raquo;&raquo;&raquo;</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/european-regulators-object-to-sun-oracle-deal-oracle-to-fight-profound-misunderstanding/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Best Open Source ERP Software</title>
		<link>http://tech.gaeatimes.com/index.php/archive/10-best-open-source-erp-software/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/10-best-open-source-erp-software/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:47:47 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Enterprise Software and Services]]></category>

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

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

		<category><![CDATA[Top 10]]></category>

		<category><![CDATA[Customer Relationship Management]]></category>

		<category><![CDATA[Enterprise resource planning]]></category>

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

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

		<category><![CDATA[Erp system]]></category>

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

		<category><![CDATA[Open source erp]]></category>

		<category><![CDATA[open source ERP software]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=16199</guid>
		<description><![CDATA[With recession hitting hard on the economy, businesses are holding back on ways to minimize IT expenditure. Top notch companies providing ERP software are affected by the ongoing financial crisis in the global market scaling down the IT investment. Implementation of ERP solution involves a hefty budget, long time and conscientious efforts for customization. To ... Read more <a href="http://tech.gaeatimes.com/index.php/archive/10-best-open-source-erp-software/" title="10 Best Open Source ERP Software">&raquo;&raquo;&raquo;</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/10-best-open-source-erp-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Best Java Web Development Framework</title>
		<link>http://tech.gaeatimes.com/index.php/archive/10-best-java-web-development-framework/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/10-best-java-web-development-framework/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 14:53:11 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Featured Article]]></category>

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

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

		<category><![CDATA[Top 10]]></category>

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

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

		<category><![CDATA[Java Web Development Framework]]></category>

		<category><![CDATA[java web framework]]></category>

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

		<category><![CDATA[JavaServer Faces]]></category>

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

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

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

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

		<category><![CDATA[web framework]]></category>

		<guid isPermaLink="false">http://blog.taragana.com/?p=15794</guid>
		<description><![CDATA[There are a majority of enterprises running Java applications and working on Java web development framework. What remains to be seen is that a number of companies are tied to the conventional web development framework and  haven’t actually started to anticipate what could be the best Java web development framework. Even the JavaOne might hold ... <a href="http://tech.gaeatimes.com/index.php/archive/10-best-java-web-development-framework/" title="10 Best Java Web Development Framework">Read more >></a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/10-best-java-web-development-framework/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 5 open source Firewall</title>
		<link>http://tech.gaeatimes.com/index.php/archive/top-5-open-source-firewall/</link>
		<comments>http://tech.gaeatimes.com/index.php/archive/top-5-open-source-firewall/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 12:35:22 +0000</pubDate>
		<dc:creator>Partho</dc:creator>
		
		<category><![CDATA[Computer Security]]></category>

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

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

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

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

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

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

		<category><![CDATA[open source firewall]]></category>

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

		<guid isPermaLink="false">http://blog.taragana.com/?p=15645</guid>
		<description><![CDATA[With perilous threats from crackers and script kiddes lurking in the network, IT administrators could do no better than placing a firewall protection.  Firewall prevents unwanted access to departmental systems while preventing local systems from attacking systems on the other network. It ensure that the traffic entering and leaving the secured LAN is accessing .... <a href="http://tech.gaeatimes.com/index.php/archive/top-5-open-source-firewall/">Original article on Gaea Times at  &nbsp;: Top 5 open source Firewall</a>.]]></description>
		<wfw:commentRss>http://tech.gaeatimes.com/index.php/archive/top-5-open-source-firewall/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

