<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>MohanaKrishnan's Tech Weblog</title>
	<atom:link href="http://pmohanakrishnan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pmohanakrishnan.wordpress.com</link>
	<description>A New Experience in Digital World</description>
	<lastBuildDate>Mon, 15 Sep 2008 04:40:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pmohanakrishnan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>MohanaKrishnan's Tech Weblog</title>
		<link>http://pmohanakrishnan.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pmohanakrishnan.wordpress.com/osd.xml" title="MohanaKrishnan&#039;s Tech Weblog" />
	<atom:link rel='hub' href='http://pmohanakrishnan.wordpress.com/?pushpress=hub'/>
		<item>
		<title>FILE COMPRESSION TECHNOLOGY</title>
		<link>http://pmohanakrishnan.wordpress.com/2008/08/13/file-compression-technology/</link>
		<comments>http://pmohanakrishnan.wordpress.com/2008/08/13/file-compression-technology/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 16:29:09 +0000</pubDate>
		<dc:creator>pmohanakrishnan</dc:creator>
				<category><![CDATA[Information]]></category>

		<guid isPermaLink="false">http://pmohanakrishnan.wordpress.com/?p=25</guid>
		<description><![CDATA[ FILE COMPRESSION TECHNOLOGY          I came across another interesting and informative topic across Internet; I like to share with you guys. I have compressed this topic for a blog:-). Many of us would have come across winzip, winrar, 7-zip and lots of compressing software&#8217;s. And we would have wonder how it compress the file [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=25&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> <strong>FILE COMPRESSION TECHNOLOGY</strong>        <img src="http://docs.google.com/File?id=ds9sxnk_99d27qbk2s_b" alt="" width="65" height="72" /></p>
<p> </p>
<p>I came across another interesting and informative topic across Internet; I like to share with you guys. I have compressed this topic for a blog:-).</p>
<p>Many of us would have come across <strong>winzip, winrar, 7-zip</strong> and lots of compressing software&#8217;s. And we would have wonder how it compress the file of some 500kb to 50kb or much lesser .And we usually don&#8217;t know how it compress or what compression algorithm it is using. This topic will give some basics on how file compression really works. Hope it will be interesting.</p>
<p> The first thing we must know is that most types of computer files are fairly <strong><span style="color:#003366;">redundant</span>.</strong> That is the same information is repeated and listed over again and again. What the file compression program does is, it just get rid of this redundancy.</p>
<p>Consider the same <strong>example</strong>: <strong>&#8220;ask not what your country can do for you; ask what you can do for your country.&#8221;</strong></p>
<p> It consists of 79 characters including the spaces, semi-colon and full-stop. Assume that one character takes one unit of memory. So this statement takes 79 memory units. As I mentioned earlier, we have here some redundancy. We see that the same words repeating again here. If you keep the thing before semi-colon as ‘first half&#8217; and after semi-colon as ‘second half&#8217;, we see that the second half can refer from the first half. This is the very basic idea that leads to the idea of file compression.</p>
<p>Most compression programs or software use LZ <strong>Adaptive Dictionary based Algorithm</strong> to shrink files. Here LZ stands for Lempel and Ziv, the creators of the algorithm. Dictionary refers to cataloging pieces of data. Actually while compressing, a dictionary is made ready and is saved along with the compressed file.</p>
<p>Now let us see how to make a dictionary. The dictionary could be as simple as a numbered list. It is given as below:</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="132" valign="top">  </p>
<ul>
<li>1. ask</li>
<li>2. what</li>
<li>3. your</li>
<li>4. country</li>
<li>5. can</li>
<li>6. do</li>
<li>7. for</li>
<li>8. you</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p> Our sentence now reads: <strong>1 not 2 3 4 5 6 7 8; 1 2 8 5 6 7 3 4.</strong></p>
<p> Now this sentence takes 37 memory units and the dictionary that is saved along with this takes another 37 memory units (Words and Numbers). So the file size reduces to 74 memory units from 79. Of course, we have not reduced the file size much here. But this is just one sentence. Assume that we have a large document, then these words may repeat many times and using this idea we can reduce the file size to a greater extent.</p>
<p> Actually the compression program sees it quite differently<strong>. It does not look for repetitive words, but looks for repetitive patterns</strong>. If we consider this then we get a different dictionary.</p>
<p> Have you observed that <strong>the text files get compressed a lot and MP3 files won&#8217;t get compressed to a greater extent?</strong> Can you tell why?</p>
<p> The reason is that we have a <strong>high rate of redundancy in text</strong>, while MP3 files don&#8217;t repeat many patterns. So text files compress well while MP3 can&#8217;t be compressed much. If you haven&#8217;t noticed this yet, you please try compressing a text file and a MP3 file. Then you will notice the difference in the file size reduction.</p>
<p> <strong>If a file has a lot of repeated patterns, the rate of reduction typically increases with file</strong> size. Above we have considered only one sentence. So this is actually a small file and we get a little compression here from 79 units to 74 units. But as the file size increases, we will still observe more reduction. <strong>Also more effective dictionary results in more effective compression.</strong></p>
<p> </p>
<p> </p>
<p>Please leave me your comments.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmohanakrishnan.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmohanakrishnan.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmohanakrishnan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmohanakrishnan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmohanakrishnan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmohanakrishnan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmohanakrishnan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmohanakrishnan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmohanakrishnan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmohanakrishnan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmohanakrishnan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmohanakrishnan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmohanakrishnan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmohanakrishnan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmohanakrishnan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmohanakrishnan.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=25&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmohanakrishnan.wordpress.com/2008/08/13/file-compression-technology/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87c936a946e0343ae9cb45e246eea8a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mohana Krishnan</media:title>
		</media:content>

		<media:content url="http://docs.google.com/File?id=ds9sxnk_99d27qbk2s_b" medium="image" />
	</item>
		<item>
		<title>Free Online Storage Portals</title>
		<link>http://pmohanakrishnan.wordpress.com/2008/07/24/free-online-storage-portals/</link>
		<comments>http://pmohanakrishnan.wordpress.com/2008/07/24/free-online-storage-portals/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 17:36:13 +0000</pubDate>
		<dc:creator>pmohanakrishnan</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://pmohanakrishnan.wordpress.com/?p=22</guid>
		<description><![CDATA[Most of them would have thought should I have to keep all the important documents and files in only one place?,Is that will be safe?. These sites will be really useful for those who want to have the important documents,files,photos etc.. online,so that they can access it from anywhere around the globe. There are lots [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=22&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of them would have thought should I have to keep all the important documents and files in only one place?,Is that will be safe?.</p>
<p>These sites will be really useful for those who want to have the important documents,files,photos etc.. online,so that they can access it from anywhere around the globe.</p>
<p>There are lots of website for online storage like Windows Live Skydrive,Dropbox,Esnips.I have chosen <strong>Windows Live Skydrive and Dropbox</strong>.</p>
<p>Most of them would be having one question in common:Is my data are safe and secure in these websites?</p>
<p>The Above two mentioned products uses SSL login and they are password protected. so only the authenticated persons will be allowed inside.</p>
<p>okay lets discuss about the portals.</p>
<p><strong>Windows Live Skydrive</strong></p>
<p>Windows live skydrive is a Microsoft Product.Today,Most of us are addicted to Microsoft products.I&#8217;m sure this wont be an exception.You need to have either Hotmail account or live ID for using this product.</p>
<div id="xpkz" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_96d7d326gq_b" alt="" width="170" height="106" /></p>
<p>Lets see the details of this portal.</p>
<p>1. It gives us a 5GB storage,so its like an online harddisk for us.<br />
2.You can create folders and manage your files accordingly.<br />
3.Most importantly,you can share your folders to whom you wish.<br />
4.Interface is very easy to use.</p></div>
<div style="text-align:left;padding:1em 0;">I thought these are some of the disadvantages of the skydrive.</p>
<p>1.The maximum file size that can be uploaded is 50mb only.<br />
2.Some of the functions are browser based, like Drag and Drop feature is not available in Firefox,Opera or Safari.<br />
3.It does not integrate with other MS products like Windows Live Workspace.<br />
4.You cant open the document directly,need to download to view and edit the file.</p>
<p>For more information regarding storage and access</p>
<p><a id="ww-m" title="https://cid-af172614a5200393.skydrive.live.com/home.aspx" href="https://cid-af172614a5200393.skydrive.live.com/home.aspx">https://cid-af172614a5200393.skydrive.live.com/home.aspx</a></p>
<p><strong><br />
Dropbox</strong></p>
<p>This is another my favorite product for online storage.This works entirely different from MS skydrive.</p>
<div id="m7ep" style="text-align:left;padding:1em 0;"><img style="width:167px;height:50px;" src="http://docs.google.com/File?id=ds9sxnk_972vd5bjxm_b" alt="" /></div>
<p><strong>Requirements:</strong></div>
<p>1.You need install drop box client application(download size approximately 8 MB)<br />
2.Need to create one Dropbox account.<br />
<strong><br />
How it Works: </strong>Once you install the Dropbox client application and configured with your account,it will create a My Dropbox folder in your system.So whatever file you place in that folder it will be automatically uploaded and get synchronized.</p>
<p><strong>Advantages:<br />
</strong><br />
1.One account can be configured with many computers,So you can synchronize your Windows or Mac simultaneously.<br />
2.You can also access your files in Web Interface too.<br />
3.It will be uploaded automatically,so you don&#8217;t need to upload manually.<br />
4.It gives an storage space of 2GB.<br />
5.If you want you can upload manually also.<br />
6.You can share your folder with whom you want.</p>
<p><strong>DisAdvantages:</strong></p>
<p>1.It needs a client application<br />
2.You cant create folders.</p>
<p>You can start your storage at</p>
<p><a id="ihf3" title="http://www.getdropbox.com/home" href="http://www.getdropbox.com/home">http://www.getdropbox.com/home</a></p>
<p>Please leave your valuable comments below about this topic.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmohanakrishnan.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmohanakrishnan.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmohanakrishnan.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmohanakrishnan.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmohanakrishnan.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmohanakrishnan.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmohanakrishnan.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmohanakrishnan.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmohanakrishnan.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmohanakrishnan.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmohanakrishnan.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmohanakrishnan.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmohanakrishnan.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmohanakrishnan.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmohanakrishnan.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmohanakrishnan.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=22&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmohanakrishnan.wordpress.com/2008/07/24/free-online-storage-portals/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87c936a946e0343ae9cb45e246eea8a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mohana Krishnan</media:title>
		</media:content>

		<media:content url="http://docs.google.com/File?id=ds9sxnk_96d7d326gq_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_972vd5bjxm_b" medium="image" />
	</item>
		<item>
		<title>Freeware Software&#8217;s For Your Windows PC</title>
		<link>http://pmohanakrishnan.wordpress.com/2008/06/21/freeware-softwares-for-your-windows-pc/</link>
		<comments>http://pmohanakrishnan.wordpress.com/2008/06/21/freeware-softwares-for-your-windows-pc/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 12:21:27 +0000</pubDate>
		<dc:creator>pmohanakrishnan</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://pmohanakrishnan.wordpress.com/?p=18</guid>
		<description><![CDATA[In my last blog, we were discussing about the  open source software&#8217;s that could replace the proprietary software&#8217;s. But I thought Freeware software&#8217;s too would be really useful for replacing licensed software&#8217;s. We should really understand the difference between the Open Source and Freewares before using it. Difference Between Open Source and Freeware 1.In open [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=18&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my last blog, we were discussing about the  open source software&#8217;s that could replace the proprietary software&#8217;s.</p>
<p>But I thought Freeware software&#8217;s too would be really useful for replacing <strong>licensed software&#8217;s</strong>.</p>
<p>We should really understand the difference between the Open Source and Freewares before using it.</p>
<p><strong>Difference Between Open Source and Freeware</strong></p>
<p>1.In open source you will get the source code of the application which you are using,but in freeware you will not get the source code of the application.</p>
<p>2.Open Source is owned by the community,but freeware will be owned by a Company or an organization.</p>
<p>3. In Open source you will get all the features but in freeware the features will be limited.</p>
<p>Let me get into the useful software that can be used.</p>
<p><strong><span style="background-color:#b6d7a8;">Photo Editing Tool.</span></strong></p>
<p>In photo editing tool the main player in the industry is Adobe Photoshop.But since it is not a freeware most of them will not be able use it.The ideal replacement will be <strong>Google&#8217;s Picasa.</strong></p>
<div id="izw3" style="text-align:left;padding:1em 0;"><strong><img src="http://docs.google.com/File?id=ds9sxnk_76fhd43vg6_b" alt="" width="96" height="97" /></strong></div>
<p><strong></strong><span style="background-color:#b6d7a8;">Google&#8217;s Picasa</span> is freeware photo editing tool and photo management tool.<strong></strong></p>
<p><strong></strong><strong>Features:</strong><br />
<strong>1</strong><strong>.Organize</strong>:<strong> </strong>It will organize the photo based on the date which it was taken.<br />
<strong>2</strong><strong>.Fixes</strong>: You can do some of the basic fixes on the photo like Crop,Removing the Red eye,Auto contrast,auto light and many more&#8230;<br />
<strong>3.Share:</strong>Send photos via email,publish your photos   on the web,sideshows and more..<br />
<strong>4.Print</strong> :Custom and standard sizes are now fit to print at home or export pictures to popular photo processing websites<br />
<strong>5.Backup: </strong>Burn to CD or create a network backup.<br />
These are some of the feature even a lay man could use.</p>
<p>For more information and downloads <a id="zfk5" title="Picasa" href="http://picasa.google.com/">http://picasa.google.com/</a></p>
<p><strong>Web Browser:</strong></p>
<p>The best freeware web browser that can be used is <strong>OPERA</strong></p>
<p><span style="background-color:#b6d7a8;">OPERA 9.5</span></p>
<div id="dh7j" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_77g3fr6fds_b" alt="" width="177" height="67" /></div>
<p>Opera is really a fastest browser in the browser&#8217;s market,It has a small download size,With its blazing fast to load the pages that could really challenge Mozilla and IE.It is much secure against Phishing and Malware.You can personalize the browser by adding the widgets.</p>
<p>It was the first browsers to pass the <strong>acid test3</strong>.</p>
<p>If you are looking to replace either IE or Firefox this would be a ideal choice.</p>
<p>To check whether your browser pass the Acid Test 3.Please check the link <a id="l1-u" title="Acid Test" href="http://acid3.acidtests.org/">http://acid3.acidtests.org/</a></p>
<p>For more information and downloads <a id="daaw" title="Opera" href="http://www.opera.com/">http://www.opera.com/</a></p>
<p><strong>Anti Virus:</strong></p>
<p>There are three best freeware antivirus in the market Avira,AVG,Avast.</p>
<p>Out of the three,I personally feel <strong>AVIRA</strong> is the best because of its detection rate ,its scanning speed and its memory usage.</p>
<p><span style="background-color:#b6d7a8;">AVIRA</span></p>
<div id="xtum" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_78g4knb7sq_b" alt="" width="97" height="99" /></div>
<p>The best freeware antivirus which could really challenge Norton,McAfee,Kaspersky,Nod32.</p>
<p>Its has a better detection rate that could scan for rootkits ,virus and most of the Malicious codes.</p>
<p>It will be using a lesser RAM for running in background that could give u a real time protection against the malicious codes,and its interface will be good with the administrative tasks.</p>
<p>It uses a incremental updates so the update files are really very small ,the only drawback that i could see with this software is the update server will be busy most of the time.</p>
<p><strong>Anti-Spyware</strong></p>
<p>The best free anti-spyware  is <strong>Windows Defender</strong>,and its from the Microsoft Corporation.</p>
<p><span style="background-color:#b6d7a8;">Windows Defender</span></p>
<div id="tcif" style="text-align:left;padding:1em 0;"><img style="width:200px;height:65px;" src="http://docs.google.com/File?id=ds9sxnk_79dt5btwc9_b" alt="" /></div>
<p>Recently they have released a stable version and it was really effective with high detection rate.</p>
<p>It uses a lesser memory for its real time protection.It will nicely integrate with your Internet Explorer.</p>
<p>We need a original Windows OS for installing Windows Defender.Before installing it will run the   Genuine Validation check.</p>
<p>For more information and downloads please check the link<br />
<a id="lwsg" title="Windows Defender" href="http://www.microsoft.com/windows/products/winfamily/defender/default.mspx">http://www.microsoft.com/windows/products/winfamily/defender/default.mspx</a></p>
<p><strong>Firewall</strong></p>
<p>If you are using Windows XP service pack 2,you will be having the Windows Firewall installed.But do think that&#8217;s enough?</p>
<p><span style="background-color:#b6d7a8;">Windows Firewall:</span> It can handle only one way of traffic only,So if u have already have an infected PC,then there will be no use in using that.</p>
<p>So for our today&#8217;s world ,we need a software that could handle both inbound and outbound traffic.</p>
<p>The product that could be most effective would be <strong>COMODO</strong> and its a freeware with most of the features.</p>
<p><span style="background-color:#b6d7a8;">COMODO:</span></p>
<div id="aa-j" style="text-align:left;padding:1em 0;"><img style="width:100px;height:75px;" src="http://docs.google.com/File?id=ds9sxnk_80gj5bd3c8_b" alt="" /></div>
<p>Comodo is an excellent firewall software that could block the outside connections,It is a self learning application  that could learn by itself ,It will understand your computer setting and act accordingly.</p>
<p>If you are using Internet ,they this will serve you better.</p>
<p>For more information and downloads<br />
<a id="wted" title="Comodo" href="http://www.personalfirewall.comodo.com/">http://www.personalfirewall.comodo.com/</a></p>
<p><strong>Communication</strong></p>
<p>It is a most important aspect in today&#8217;s world.There are many communication software&#8217;s like Google Talk,Yahoo Messenger,Live Messenger,But i felt <strong>Google Talk</strong> is a excellent software</p>
<p><span style="background-color:#b6d7a8;color:#000000;">Google Talk</span></p>
<div id="allc" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_81fwx6sxrr_b" alt="" width="147" height="69" /></div>
<p>I wonder with a 1.5MB software we could use most of the features that are needed for communication software and it is one of my favorite software.</p>
<p><span style="background-color:#b6d7a8;">Features:</span></p>
<p>1.Clean look (without any banners or ads)<br />
2.Integrated with GMAIL,ORKUT.<br />
3.Free PC-PC calls.<br />
4.With Google talk Gadget you don&#8217;t need to download<br />
and many more.</p>
<p>For more details and downloads,please visit the official link.</p>
<p><a id="t9dz" title="Google Talk" href="http://www.google.com/talk/">http://www.google.com/talk/</a></p>
<p><strong><br />
Google Pack</strong></p>
<div id="n_-0" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_82fb5q3ngr_b" alt="" width="132" height="85" /></div>
<div style="text-align:left;padding:1em 0;">If you are in need of all the freeware&#8217;s in one place,the better software would be Google pack.</div>
<p>With the Google Pack you could get all the freewares for your PC.<br />
<strong>1.</strong><strong>Google Earth</strong>:To see the world.<br />
<strong>2.</strong><strong>Norton Security Scan</strong>:Antivirus with limited features<br />
<strong>3.</strong><strong>Google Desktop</strong>:To search your computer<br />
<strong>4.</strong><strong>Firefox with Google Toolbar</strong>:Web browser<br />
<strong>5.</strong><strong>Adobe Reader</strong> <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> DF Reader<br />
<strong>6.</strong><strong>Skype</strong>(Communication and to call mobile and landlines)<br />
<strong>7.</strong><strong>StarOffice</strong> (includes Java™):Productivity Software<br />
<strong>8.</strong><strong>Spyware Doctor:</strong>Anti-spyware<br />
<strong>9.</strong><strong>Picasa</strong> <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> hoto Editing Tool<br />
<strong>10.</strong><strong>Google Photos Screensaver</strong>:To create screen saver<br />
<strong>11.</strong><strong>Google Talk</strong>:Communication<br />
<strong>12.</strong><strong>Real Player</strong>:Multimedia</p>
<p>You can customize your downloads for Google Pack.</p>
<p>For more information and downloads,Please check the link<br />
<a id="miff" title="Google Pack" href="http://pack.google.com/intl/en/pack_installer.html?hl=en&amp;gl=us">http://pack.google.com/intl/en/pack_installer.html?hl=en&amp;gl=us</a></p>
<p>Please let me know your comments.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmohanakrishnan.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmohanakrishnan.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmohanakrishnan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmohanakrishnan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmohanakrishnan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmohanakrishnan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmohanakrishnan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmohanakrishnan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmohanakrishnan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmohanakrishnan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmohanakrishnan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmohanakrishnan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmohanakrishnan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmohanakrishnan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmohanakrishnan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmohanakrishnan.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=18&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmohanakrishnan.wordpress.com/2008/06/21/freeware-softwares-for-your-windows-pc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87c936a946e0343ae9cb45e246eea8a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mohana Krishnan</media:title>
		</media:content>

		<media:content url="http://docs.google.com/File?id=ds9sxnk_76fhd43vg6_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_77g3fr6fds_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_78g4knb7sq_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_79dt5btwc9_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_80gj5bd3c8_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_81fwx6sxrr_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_82fb5q3ngr_b" medium="image" />
	</item>
		<item>
		<title>Open Source Software&#8217;s</title>
		<link>http://pmohanakrishnan.wordpress.com/2008/06/20/open-source-softwares/</link>
		<comments>http://pmohanakrishnan.wordpress.com/2008/06/20/open-source-softwares/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 19:41:12 +0000</pubDate>
		<dc:creator>pmohanakrishnan</dc:creator>
				<category><![CDATA[Softwares]]></category>

		<guid isPermaLink="false">http://pmohanakrishnan.wordpress.com/?p=16</guid>
		<description><![CDATA[Initially I was using most of the proprietary software&#8217;s,But after some time I came across the open source community which are offering the free software&#8217;s to the world at no cost.After that,if there is any free software which could replace the proprietary software&#8217;s i started using that. The main advantage of using the open source [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=16&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Initially I was using most of the proprietary software&#8217;s,But after some time I came across the open source community which are offering the free software&#8217;s to the world at no cost.After that,if there is any free software which could replace the  proprietary software&#8217;s i started using that.</p>
<p>The main advantage of using the open source software&#8217;s are bugs will be fixed in the record time,We don&#8217;t have to wait for the service pack&#8217;s to be released.</p>
<p>I have listed some of the software&#8217;s that could really replace the licensed software&#8217;s.The first software which will strike my mind is Mozilla Firefox.</p>
<p><strong>Firefox</strong></p>
<div id="bcij" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_713x856gcg_b" alt="" width="153" height="148" /></div>
<p>Most of them would be aware of the Mozilla Firefox.This is the software which have ended the monopoly of Internet Explorer.Initially IE was having the browser market share over 95%,but it has been reduced to 74%.The current share of Firefox is 18.41%.<br />
If you want the latest browser market share.Please check the below link.</p>
<p><a id="v4ib" title="Browser Market Share" href="http://marketshare.hitslink.com/report.aspx?qprid=0">http://marketshare.hitslink.com/report.aspx?qprid=0</a></p>
<p>I have listed some of the great features in Firefox.</p>
<p>1.Stability (don&#8217;t crash like IE)<br />
2.Security(Phishing,Virus,Malicious software&#8217;s are bay away from Firefox)<br />
3.Blazing fast(almost 7 times faster than IE)</p>
<p>You can Download the the Latest Version of Firefox from</p>
<p><a id="lpmr" title="Firefox" href="http://www.mozilla.com/en-US/firefox/">http://www.mozilla.com/en-US/firefox/</a></p>
<p><strong>Ubuntu</strong></p>
<div id="z83h" style="text-align:left;padding:1em 0;"><img style="width:160px;height:165.375px;" src="http://docs.google.com/File?id=ds9sxnk_724f6v6jfg_b" alt="" /></div>
<p>There are different operating systems in the today&#8217;s world,Basically to my knowledge Operating System are broadly classified into UNIX and Windows.</p>
<p>The ultimate replacement for the Windows is Linux,The main advantage of Linux is its Stability and security.The architeture of UNIX is known to every one not like windows.</p>
<p>There are different flavors of Linux like Ubuntu,Fedora,SUSE etc&#8230;<br />
But I thought Ubuntu will be a better replacement for Windows XP or even VISTA.</p>
<p>Ubuntu is a community developed Operating System best for Laptops,Desktops,Servers,Ubuntu is and always will be <strong>free of charge</strong>. You do not pay any licensing fees. You can download, use and share Ubuntu with your friends, family, school or business for absolutely nothing.</p>
<p>You can even request a free CD form ubuntu or download the image for the site and burn it in a CD.</p>
<p>For more information on Ubuntu and downloads ,Please visit the website <a id="lpa5" title="Ubuntu" href="http://www.ubuntu.com/">http://www.ubuntu.com/</a></p>
<p><strong>OpenOffice</strong></p>
<div id="vuul" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_73fvhjq7ct_b" alt="" width="192" height="165" /></div>
<p>OpenOffice is the ideal replacement for the Microsoft Office products. Microsoft Office plays a major role in Microsoft&#8217;s total revenue.<br />
We need to pay a large sum for buying the license for Microsoft Office(Approximately 12,000/- Rupees per user).If Microsoft office can be replaced then why we are still depended over MS Office .</p>
<p>OpenOffice Products:<br />
1.Writer (replaces MS Word)<br />
2.Calc(Replaces MS Excel)<br />
3.Impress(Replaces MS PowerPoint)<br />
4.Draw(Replaces MS Visio)<br />
5.Base(Replaces MS Access)</p>
<p>Please check the official site for more details and download.</p>
<p><a id="hk4q" title="OpenOffice" href="http://www.openoffice.org/">http://www.openoffice.org/</a></p>
<p><strong>Thunderbird</strong></p>
<div id="uclg" style="text-align:left;padding:1em 0;"><img src="http://docs.google.com/File?id=ds9sxnk_74d2rpb8fm_b" alt="" width="168" height="168" /></div>
<p>We usually use MS outlook as our e-mail client in office or at home.MS Outlook will be a bundled software under MS Office,so the same problem LICENSING.</p>
<p>A complete replacement for Outlook will be Mozilla&#8217;s Thunderbird.<br />
It is a product from Mozilla&#8217;s community.So its much secure and stable.</p>
<p>Main features of Thunderbird:<br />
1.Advanced Folder Views<br />
2.Message Tagging<br />
3.Phishing Protection<br />
4.Robust Privacy<br />
5.Cutting Out the Junk<br />
6.Open Source, More Secure</p>
<p>For more information and download ,please visit the official website.</p>
<p><a id="idtm" title="Thunderbird" href="http://www.mozilla.com/en-US/thunderbird/">http://www.mozilla.com/en-US/thunderbird/</a></p>
<p>Please let me know your comments.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmohanakrishnan.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmohanakrishnan.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmohanakrishnan.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmohanakrishnan.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmohanakrishnan.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmohanakrishnan.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmohanakrishnan.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmohanakrishnan.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmohanakrishnan.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmohanakrishnan.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmohanakrishnan.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmohanakrishnan.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmohanakrishnan.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmohanakrishnan.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmohanakrishnan.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmohanakrishnan.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=16&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmohanakrishnan.wordpress.com/2008/06/20/open-source-softwares/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87c936a946e0343ae9cb45e246eea8a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mohana Krishnan</media:title>
		</media:content>

		<media:content url="http://docs.google.com/File?id=ds9sxnk_713x856gcg_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_724f6v6jfg_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_73fvhjq7ct_b" medium="image" />

		<media:content url="http://docs.google.com/File?id=ds9sxnk_74d2rpb8fm_b" medium="image" />
	</item>
		<item>
		<title>Extending Swap Space</title>
		<link>http://pmohanakrishnan.wordpress.com/2008/06/04/adding-swap-space/</link>
		<comments>http://pmohanakrishnan.wordpress.com/2008/06/04/adding-swap-space/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 17:49:51 +0000</pubDate>
		<dc:creator>pmohanakrishnan</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://pmohanakrishnan.wordpress.com/?p=12</guid>
		<description><![CDATA[Sometimes it is necessary to add more swap space after installation. For example, you may upgrade the amount of RAM in your system from 128 MB to 256 MB, but there is only 256 MB of swap space. It might be advantageous to increase the amount of swap space to 512 MB if you perform [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=12&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes it is necessary to add more swap space after installation.</p>
<p><span style="color:#000000;">For example</span>, you may upgrade the amount of RAM in your system from 128 MB to 256 MB, but there is only 256 MB of swap space. It might be advantageous to increase the amount of swap space to 512 MB if you perform memory-intense operations or run applications that require a large amount of memory.</p>
<p><span style="background-color:#b6d7a8;color:#000000;"><br />
</span></p>
<p><span style="background-color:#b6d7a8;color:#000000;">You have three options</span>:</p>
<ul>
<li>create a new swap partition,</li>
</ul>
<ul>
<li>create a new swap file, or</li>
</ul>
<ul>
<li>extend swap on an existing LVM2 logical volume.</li>
</ul>
<p>It is recommended that you extend an existing logical volume.<br />
<strong><br />
</strong><span style="background-color:#b6d7a8;color:#000000;"><span style="font-size:12pt;">1.Extending Swap on an LVM2 Logical Volume</span></span></p>
<p>To extend an LVM2 swap logical volume (assuming <tt><span style="font-size:10pt;">/dev/VolGroup00/LogVol01</span></tt> is the volume you want to extend):</p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 1.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Disable swapping for the associated logical volume:</p>
<p><tt> # swapoff -v /dev/VolGroup00/LogVol01</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 2.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Resize the LVM2 logical volume by 256 MB:</p>
<p><tt> # lvm lvresize /dev/VolGroup00/LogVol01 -L +256M</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 3.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Format the new swap space:</p>
<p><tt> # mkswap /dev/VolGroup00/LogVol01</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 4.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Enable the extended logical volume:</p>
<p><tt> # swapon -va</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 5.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Test that the logical volume has been extended properly:</p>
<p><tt> # cat /proc/swaps # free</tt></p>
<p><span style="background-color:#b6d7a8;color:#000000;"><span style="font-size:12pt;"><br />
<span style="background-color:#b6d7a8;">2.</span></span></span><span style="background-color:#b6d7a8;color:#000000;"><span style="font-size:12pt;">Creating an LVM2 Logical Volume for Swap</span></span></p>
<p>To add a swap volume group (assuming <tt><span style="font-size:10pt;">/dev/VolGroup00/LogVol02</span></tt> is the swap volume you want to add):</p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 1.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Create the LVM2 logical volume of size 256 MB:</p>
<p><tt> # lvm lvcreate VolGroup00 -n LogVol02 -L 256M</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 2.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Format the new swap space:</p>
<p><tt> # mkswap /dev/VolGroup00/LogVol02</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 3.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Add the following entry to the <tt><span style="font-size:10pt;">/etc/fstab</span></tt> file:</p>
<p><tt> /dev/VolGroup00/LogVol02<span> </span>swap<span> </span>swap<span> </span>defaults<span> </span>0 0</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 4.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Enable the extended logical volume:</p>
<p><tt> # swapon -va</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 5.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Test that the logical volume has been extended properly:</p>
<p><tt><span style="font-size:10pt;"> # cat /proc/swaps # free</span></tt></p>
<div id="s7u43" style="text-align:left;"><span style="background-color:#b6d7a8;color:#000000;"><span style="font-size:12pt;">3.Creating a Swap File </span></span></div>
<div style="text-align:left;">To add a swap file:</div>
<div id="s7u43" style="text-align:left;">
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 1.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Determine the size of the new swap file in megabytes and multiply by 1024 to determine the number of blocks. For example, the block size of</p>
<p style="margin-left:0.5in;text-indent:-0.25in;">a  64MB swap file is 65536.</p>
<p><span> 2.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>At a shell prompt as root, type the following command with <tt><span style="font-size:10pt;">count</span></tt> being equal to the desired block size:</p>
<p><tt> dd if=/dev/zero of=/swapfile bs=1024 count=65536</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 3.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>Setup the swap file with the command:</p>
<p><tt> mkswap /swapfile</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 4.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>To enable the swap file immediately but not automatically at boot time:</p>
<p><tt> swapon /swapfile</tt></p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 5.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>To enable it at boot time, edit <tt><span style="font-size:10pt;">/etc/fstab</span></tt> to include the following entry:</p>
<p><tt> /swapfile<span> </span>swap<span> </span>swap<span> </span>defaults<span> </span>0 0 </tt></p>
<p style="margin-left:0.5in;">The next time the system boots, it enables the new swap file.</p>
<p style="margin-left:0.5in;text-indent:-0.25in;"><span> 6.<span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span>After adding the new swap file and enabling it, verify it is enabled by viewing the output of the  command <tt><span style="font-size:10pt;">cat /proc/swaps</span></tt> or <tt><span style="font-size:10pt;">free</span></tt>.</p>
<p style="margin-left:0.5in;text-indent:-0.25in;">Once you complete any of the procedure successfulley swap space should be added.</p>
</div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmohanakrishnan.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmohanakrishnan.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmohanakrishnan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmohanakrishnan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmohanakrishnan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmohanakrishnan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmohanakrishnan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmohanakrishnan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmohanakrishnan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmohanakrishnan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmohanakrishnan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmohanakrishnan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmohanakrishnan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmohanakrishnan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmohanakrishnan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmohanakrishnan.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=12&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmohanakrishnan.wordpress.com/2008/06/04/adding-swap-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87c936a946e0343ae9cb45e246eea8a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mohana Krishnan</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Docs Vs Live Workspace Vs Adobe buzzword</title>
		<link>http://pmohanakrishnan.wordpress.com/2008/06/04/google-docs-vs-live-workspace-vs-adobe-buzzword/</link>
		<comments>http://pmohanakrishnan.wordpress.com/2008/06/04/google-docs-vs-live-workspace-vs-adobe-buzzword/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 10:48:45 +0000</pubDate>
		<dc:creator>pmohanakrishnan</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://pmohanakrishnan.wordpress.com/?p=11</guid>
		<description><![CDATA[Nowadays we have changed more dynamic,so we have started working on the go, So there are different productivity software in the market ,But working online makes our work much simpler and more productive. So I thought of taking the Three leading Productivity software in the market and compare each other. Google Docs,Microsoft Office Live Workspace,Adobe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=11&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nowadays we have changed more dynamic,so we have started working on the go,<br />
So there are different productivity software in the market ,But working online makes our work much simpler and more productive.</p>
<p>So I thought of taking the Three leading Productivity software in the market and compare each other.<br />
<a id="ogz6" title="Google" href="http://docs.google.com/RawDocContents?docID=ds9sxnk_618vzd6tfp&amp;justBody=false&amp;revision=_latest&amp;timestamp=1212575911259&amp;editMode=true&amp;strip=true">Google Docs</a>,<a id="p3eu" title="Microsoft" href="http://workspace.officelive.com/?xid=F70CFEB8-C905-4B2C-B516-8A9C5A74F9BC&amp;WT.srch=1">Microsoft Office Live Workspace</a>,<a id="rcyb" title="Adobe" href="http://www.adobe.com/acom/buzzword/">Adobe Buzzword</a> and some more like ZOHO.<br />
In the three products Microsoft needs client application to be Installed.</p>
<p><span style="background-color:#b6d7a8;color:#000000;"><span>Interface:</span></span></p>
<p>The three word processor have the same goal to collaborate online,Google will be having a <span style="background-color:#ffffff;">clean interface</span> which will be perfect for making simpler and professional document.<br />
Microsoft will be having the same interface of Office 2003 or 2007.We will see a <span style="background-color:#999999;"><span style="background-color:#ffffff;">professional Look and feel </span></span>in Microsoft with lots of additional options.<br />
Adobe Buzzword is a  Flash based application.Adobe will be having <span style="background-color:#ffffff;"><span style="color:#000000;">cool interface(black color)</span></span> for the People who needs something different from others.</p>
<p><span style="color:#000000;"><br />
</span><span style="background-color:#b6d7a8;color:#000000;"><span>Usability:</span></span></p>
<p>Now most of them will be aware of the user friendly nature of microsoft. Google Docs is also very much user friendly,people can adapt to it very easily,But with Abobe Buzzword is not much userfriendly as the counterpart,It will take some more time to adopt.</p>
<p><span style="background-color:#b6d7a8;color:#000000;"><span>Online Colloboration:</span></span></p>
<p>As part of Google Docs We can publish the document and We can invite people as collaborators or viewers.<br />
Adobe Buzz word is also similar . Microsoft can also collobarate the document but not much effective as Google.</p>
<p><span style="background-color:#b6d7a8;color:#000000;"><span>Cost</span></span></p>
<p>Google Docs is free and you don&#8217;t need a single penny out of your pocket.Since microsoft needs a client application,you have to spend a large amount for purchasing and licensing.Adobe Buzzword is also free.</p>
<p><span style="background-color:#b6d7a8;color:#000000;">Offline Storage:</span></p>
<p>Google docs stand tall in this feature, It can can be stored offline using <strong><span style="color:#6aa84f;">Google Gears</span></strong>,It will sync up once we online. This feature is not present with other Online productivity suits.And it take advantage over others.</p>
<p><span style="background-color:#b6d7a8;color:#000000;">Formats</span></p>
<p>Google Docs can export the file in different formats including PDF,Which is not present in other products.</p>
<p><span style="color:#000000;"><span style="background-color:#b6d7a8;">Additional Products:</span></span></p>
<p>In Google we are having products like Spreadsheet and Presentation.<br />
In Microsoft we have Task list,Contact List,Event List,Workspace</p>
<p><span style="background-color:#b6d7a8;color:#000000;">Conclusion:</span></p>
<p>People who want to work both offline as well as online should be going for Google Docs.</p>
<p>All the three Products have both Advantages over other.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmohanakrishnan.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmohanakrishnan.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmohanakrishnan.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmohanakrishnan.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmohanakrishnan.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmohanakrishnan.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmohanakrishnan.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmohanakrishnan.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmohanakrishnan.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmohanakrishnan.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmohanakrishnan.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmohanakrishnan.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmohanakrishnan.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmohanakrishnan.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmohanakrishnan.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmohanakrishnan.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=11&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmohanakrishnan.wordpress.com/2008/06/04/google-docs-vs-live-workspace-vs-adobe-buzzword/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87c936a946e0343ae9cb45e246eea8a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mohana Krishnan</media:title>
		</media:content>
	</item>
		<item>
		<title>Datastage8 new release</title>
		<link>http://pmohanakrishnan.wordpress.com/2007/07/04/dtastage8-new-release/</link>
		<comments>http://pmohanakrishnan.wordpress.com/2007/07/04/dtastage8-new-release/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 13:21:00 +0000</pubDate>
		<dc:creator>pmohanakrishnan</dc:creator>
				<category><![CDATA[Data WareHousing]]></category>

		<guid isPermaLink="false">http://pmohanakrishnan.wordpress.com/2007/07/04/dtastage8-new-release/</guid>
		<description><![CDATA[Data Stage 8 The Windows version of the Information Server and DataStage 8 are out now. No sign yet of the version for other platforms. DataStage Versions DataStage 8 can only upgrade a DataStage 7 server, it cannot upgrade previous versions of servers though it can co-exist with previous versions. DataStage 8 can however import [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=4&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Data Stage 8</strong></p>
<p>The Windows version of the Information Server and DataStage 8 are out now. No sign yet of the version for other platforms.<br />
<strong>DataStage Versions</strong></p>
<p><em><br />
</em>DataStage 8 can only upgrade a DataStage 7 server, it cannot upgrade previous versions of servers though it can co-exist with previous versions. DataStage 8 can however import and upgrade export files from earlier versions of DataStage. I don&#8217;t know how far back this support goes.<br />
All the DataStage 7.x versions are available in version 8:</p>
<ul>
<li> DataStage Enterprise Edition: Parallel, Server and Sequence Jobs</li>
<li>DataStage Server Edition: Server and Sequence Jobs</li>
<li>DataStage MVS: Mainframe Jobs</li>
<li>DataStage Enterprise for z/OS: runs on Unix System Services</li>
<li>DataStage for PeopleSoft: 2 CPU limit with Server and Sequence jobs.</li>
</ul>
<p><strong>DataStage Addons</strong></p>
<p><em><strong><br />
</strong></em>The DataStage Enterprise Packs and Change Data Capture components are available in version 8 as shown in the version 8 architecture overview:</p>
<p style="text-align:center;"><a href="http://pmohanakrishnan.files.wordpress.com/2008/06/datastagearchitectureoverview.jpg"><img class="alignnone size-medium wp-image-9 aligncenter" src="http://pmohanakrishnan.files.wordpress.com/2008/06/datastagearchitectureoverview.jpg?w=296&#038;h=300" alt="" width="296" height="300" /></a></p>
<p><strong><em>Enterprise PACKs</em></strong></p>
<p><strong><em><br />
</em></strong></p>
<ul>
<li>SAP BW Pack</li>
</ul>
<p>BAPI: (Staging Business API) loads from any source to BW.</p>
<p>OpenHub: extract data from BW.</p>
<ul>
<li> SAP R/3 Pack</li>
</ul>
<p>ABAP: (Advanced Business Application Processing) auto generate ABAP, Extraction Object Builder, SQL Builder, Load and execute ABAP from DataStage,    CPI-C Data Transfer, FTP Data Transfer, ABAP syntax check, background execution of ABAP.<br />
IDoc: create source system, IDoc listener for extract, receive IDocs, send IDocs.<br />
BAPI: BAPI explorer, import export Tables Parameters Activation, call and commit BAPI.</p>
<ul>
<li> Siebel Pack</li>
</ul>
<p>EIM: (data integration manager) interface tables<br />
Business Component: access business views via Siebel Java Data Bean<br />
Direct Access: use a metadata browser to select data to extract<br />
Hierarchy: for extracts from Siebel to SAP BW.</p>
<ul>
<li>Oracle Applications Pack</li>
</ul>
<p><em><strong> </strong></em>Oracle flex fields: extract using enhanced processing techniques.<br />
Oracle reference data structures: simplified access using the Hierarchy Access component.<br />
Metadata browser and importer</p>
<ul>
<li> DataStage Pack for PeopleSoft Enterprise</li>
</ul>
<p>Import business metadata via a metadata browser.<br />
Extract data from PeopleSoft tables and trees.</p>
<ul>
<li> JD Edwards Pack</li>
</ul>
<p>Standard ODBC calls<br />
Pre-joined database tables via business views</p>
<p><span style="color:#808000;"><br />
<strong>Change Data Capture</strong></span></p>
<p><span style="color:#808000;"><br />
These are add on products (at an additional fee) that attach themselves to source databases and perform change data capture. Most source system database owners I&#8217;ve come across don&#8217;t like you playing with their production transactional database and will not let you near it with a ten foot poll, but I guess there are exceptions:</span><br />
Oracle<br />
Microsoft SQL Server<br />
DB2 for z/OS<br />
IMS<br />
<span style="color:#808000;">There are three ways to get incremental feeds on the Information Server: the CDC products for DataStage, the Replication Server (renamed Information Integrator: Replication Edition, does DB2 replication very well) and the change data capture functions within DataStage jobs such as the parallel CDC stage.</span></p>
<p><strong><br />
<span style="color:#808000;">Removed Functions</span></strong></p>
<p><span style="color:#808000;">These are the functions that are not in DataStage 8, please imaging the last waltz playing in your head as you peruse this list:<br />
dssearch command line function</span></p>
<p><span style="color:#ff0000;"><br />
dsjob &#8220;-import&#8221;<br />
Version Control tool<br />
Released jobs<br />
Oracle 8i native database stages<br />
ClickPack</span><br />
<span style="color:#808000;"><strong>The loss of the Version Control tool is not a big deal as the import/export functions have been improved. Building a release file as an export in version 8 is easier than building it in the Version Control tool in version 7.</strong></span><br />
<span style="color:#808000;">Database Connectivity</span><br />
<span style="color:#808000;">The common connection objects functionality means the very wide range of DataStage database connections are now available across Information Server products.</span><br />
<span style="color:#808000;"><strong>Latest supported databases for version 8:</strong></span><br />
DB2 8.1, 8.2 and 9.1<br />
Oracle 9i, 10i, 10gR2 not Oracle 8<br />
SQL Server 2005 plus stored procedures.<br />
Teradata v2r5.1, v2r6.0, v2r6.1 (DB server) / 8.1 (TTU) plus Teradata Parallel Transport (TPT) and stored procedures and macro support, reject links for bulk loads, restart capability for parallel bulk loads.<br />
Sybase ASE 15, Sybase IQ 11.5, 12.5, 12.7<br />
Informix 10 (IDS)<br />
SAS 612, 8.1, 9.1 and 9.1.3<br />
IBM WS MQ 6.1, WS MB 5.1<br />
Netezza v3.1<br />
ODBC 3.5 standard and level 3 compliant<br />
UniData 6 and UniVerse ?<br />
Red Brick ?<br />
<span style="color:#808000;">This is not the complete list. Some database versions are missing, more databases can be accessed through the ODBC stage and there may be some databases missing.</span><br />
<span style="color:#808000;">New Database Connector Functions</span><br />
<span style="color:#808000;"><strong>This is a big area of improvement.</strong></span></p>
<p><span style="color:#808000;">LOB/BLOC/CLOB Data</span>: pictures, documents etc of any size can now be moved between databases. After choosing the LOB data type you can choose to pass the data inline or as a link reference.<br />
<span style="color:#808000;">Reject Links</span>: optionally append error codes and messages, conditionally filter types of rejection, fail a job based on a percentage threshold of failures.<br />
<span style="color:#808000;">Schema Reconciliation</span>: where the hell has this function been all my life? Automatically compare your DataStage schema to the database schema and  perform minor data type conversions.<br />
<span style="color:#808000;"> </span><span style="color:#808000;">Improved SQL Builder</span> that supports more database types, although if you didn&#8217;t like the version 7 one you wont like the 8 one either. (Kim Duke, I&#8217;m looking at you).<br />
<span style="color:#808000;">Test button on connectors</span>. Test! You don&#8217;t have to view data or run a job to find out if the stupid thing works.<br />
Drag and drop your configured database connections onto jobs.<br />
Before and after SQL defined per job or per node with a failure handling option. Neater than previous versions.<br />
<strong><span style="color:#808000;">DataStage 8 gives you access to the latest versions of databases that DataStage 7 may never get. Extra functions on all connectors includes improved reject handling, LOB support and easier stage configuration.</span></strong><br />
<strong><span style="color:#808000;">Code Packs</span></strong><br />
These packs can be used by server and/or parallel jobs to interact with other coding languages. This lets you access programming modules or functions      within a job:<br />
<span style="color:#808000;">Java Pack</span>: produce or consume rows for DataStage Parallel or Server jobs. Use a java transformer.<br />
<span style="color:#808000;">Web Service Pack</span>: access web services operations in a Server job transformer or Server routine.<br />
<span style="color:#808000;">XML Pack</span>: read, write or transform XML files in parallel or server jobs.<br />
<span style="color:#808000;">The DataStage stages, custom stages, transformer functions and routines will usually be faster at transforming data than these packs however they are useful for re-using existing code.</span><br />
<span style="color:#808000;"><strong>New Stages</strong></span><br />
A new stage from the IBM software family, new stages from new partners and the convergence of QualityStage functions into Datastage. Apart from the SCD stage these all come at an additional cost.</p>
<ul>
<li> WebSphere Federation and Classic Federation</li>
<li> Netezza Enterprise Stage</li>
<li> SFTP Enterprise Stage</li>
<li> iWay Enterprise Stage</li>
<li> Slowly Changing Dimension: for type 1 and type 2 SCDs.</li>
<li> Six QualityStage stages</li>
</ul>
<p><span style="color:#808000;">There are four questions that have been asked since the dawn of time. What is the meaning of life? What&#8217;s this rash that comes and goes? If you leave me can I come too? How do a populate a slowly changing dimension using DataStage? The answers being 42, visit a clinic, piss off and use the new SCD stage.</span><br />
<span style="color:#808000;"><strong>New Functions Existing Stages</strong></span><br />
<span style="color:#808000;">Complex Flat File Stage</span>: Multi Format File (MFF) in addition to existing cobol file support.<br />
<span style="color:#808000;">Surrogate Key Generator</span>: now maintains the key source via integrated state file or DBMS sequence.<br />
<span style="color:#808000;">Lookup Stage</span>: range lookups by defining checking high and low range fields on the input or reference data table. Updatable in memory lookups.<br />
<span style="color:#808000;">Transformer Stage</span>: new surrogate key functions Initialize() and GetNextKey().<br />
<span style="color:#808000;">Enterprise FTP Stage</span>: now choose between ftp and sftp transfer.<br />
<span style="color:#808000;"><strong>You can achieve most of these functions in the current version with extra coding except for in-memory lookups. This is a killer function in DataStage 8.</strong></span></p>
<p><span style="color:#808000;"><strong><br />
Platforms</strong></span></p>
<p><span style="color:#808000;">These are the platforms for the released Windows version and the yet to be released Linux/Unix version along with the C++ compiler that you only need for parallel jobs that will use transformers. You do not need this compiler for Server Edition.</span></p>
<p><strong><span style="color:#808000;">Windows 2003 SP1</span></strong></p>
<p>Visual Studio .NET 2003 C++</p>
<p>Visual Studio .NET 2005 C++ or Visual Studio .NET 2005 Express Edition C++</p>
<p><strong><span style="color:#808000;">AIX 5.2 &amp; 5.3</span></strong></p>
<p>XL C/C++ Enterprise Edition 7.0, 8.0 compiler</p>
<p><span style="color:#808000;"><strong>HP-UX 11i v1 &amp; v2</strong></span></p>
<p>aC++ A.03.63 compiler</p>
<p><strong><span style="color:#808000;">Red Hat ASE 4.0</span></strong></p>
<p>gcc3.23 compiler</p>
<p><span style="color:#808000;"><strong>SuSEES, 9.0</strong></span></p>
<p>gcc3.3.3 compiler</p>
<p><span style="color:#808000;"><strong>Solaris 2.9 &amp; 2.10</strong></span></p>
<p>Sun Studio 9, 10 , 11 compiler</p>
<p><span style="color:#808000;"><strong><br />
Database Repository</strong></span><br />
<span style="color:#808000;">Note the database compatibility for the Metadata Server repository is the latest versions of the three DBMS engines. DB2 is an optional extra in the bundle if you don&#8217;t want to use an existing database.</span></p>
<ul>
<li> IBM UDB DB2 ESE 9-IBM Information Server does not support the Database Partitioning Feature (DPF) for use in the repository layer-DB2 Restricted Enterprise Edition 9 is included with IBM Information Server and is an optional part of the installation however its use is restricted to hosting the IBM Information Server repository layer and cannot be used for other applications</li>
</ul>
<ul>
<li> Oracle 10g</li>
</ul>
<ul>
<li> SQL Server 2005</li>
</ul>
<p><span style="color:#808000;">If you are a cheapskate and you really don&#8217;t like DB2, in fact you would cross the street if you saw it coming in the other direction, you might be able to load the repository into a free (express) version of SQL Server or Oracle, however you might hit a problem with the DBMS license CPU restriction. If you get this working drop me a comment.</span><br />
<span style="color:#808000;"><strong>Languages</strong></span><br />
<span style="color:#808000;">Foreign language support for the graphical tools and product messages:</span><br />
<span style="color:#808000;">Chinese (Simplified and Traditional), Czech, Danish, Finnish, French, German, Italian, Japanese, Korean, Norwegian, Polish, Portuguese, Russian, Spanish and Swedish.</span><br />
<strong><span style="color:#808000;">Commiserations to the Welsh. For the Trekkies out there keep the writin campaign going, it is only a matter of time before they add Klingon. It is on the product path right after High Elf.</span></strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pmohanakrishnan.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pmohanakrishnan.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pmohanakrishnan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pmohanakrishnan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pmohanakrishnan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pmohanakrishnan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pmohanakrishnan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pmohanakrishnan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pmohanakrishnan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pmohanakrishnan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pmohanakrishnan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pmohanakrishnan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pmohanakrishnan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pmohanakrishnan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pmohanakrishnan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pmohanakrishnan.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pmohanakrishnan.wordpress.com&amp;blog=3879796&amp;post=4&amp;subd=pmohanakrishnan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pmohanakrishnan.wordpress.com/2007/07/04/dtastage8-new-release/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87c936a946e0343ae9cb45e246eea8a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mohana Krishnan</media:title>
		</media:content>

		<media:content url="http://pmohanakrishnan.files.wordpress.com/2008/06/datastagearchitectureoverview.jpg?w=296" medium="image" />
	</item>
	</channel>
</rss>
