<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss'><id>tag:blogger.com,1999:blog-5899547</id><updated>2009-07-27T10:46:08.961+05:30</updated><title type='text'>love and machines - my thought store</title><subtitle type='html'>When I started it, I had titled it as "Love and Machines" and later changed the title to "my thought store". I later moved to LiveJournal at http://phoe6.livejournal.com</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default?start-index=26&amp;max-results=25'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>279</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5899547.post-113026858615944380</id><published>2005-10-26T00:50:00.000+05:30</published><updated>2008-02-10T04:19:54.860+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='LiveJournal'/><title type='text'>Moving to LiveJournal</title><content type='html'>I am moving my daily(?) taking of notes to LiveJournal.&lt;br /&gt;&lt;br /&gt;You can check it here:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.livejournal.com/users/phoe6/"&gt;http://www.livejournal.com/users/phoe6/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;XML Feed: &lt;a href="http://www.livejournal.com/users/phoe6/data/rss"&gt;&lt;span class="site-url"&gt;http://www.livejournal.com/users/phoe6/data/rss&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I have notes,tips on Vim,Linux,Fedora etc here. So you can search for them using the Google Search below.&lt;br /&gt;&lt;br /&gt;See you at LJ.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-113026858615944380?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/113026858615944380/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=113026858615944380' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/113026858615944380'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/113026858615944380'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/moving-to-livejournal.html' title='Moving to LiveJournal'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-113009941381257398</id><published>2005-10-24T02:00:00.000+05:30</published><updated>2005-10-24T02:00:14.913+05:30</updated><title type='text'>Fwd: appending and incrementing the numbers from a particular point</title><content type='html'>&lt;p class="mobile-post"&gt;From: Tim Chase&lt;br /&gt;Subject: Re: appending and incrementing the numbers from a particular point&lt;br /&gt;To: Senthil Kumaran&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;gt; My requirement is to add more rows with incrementing numbers upto say 2300.&lt;br /&gt;&amp;gt; like:&lt;br /&gt;&amp;gt; 2191    Default      SomeText&lt;br /&gt;&amp;gt; 2192    Default      SomeText.&lt;br /&gt;&amp;gt; 2193&lt;br /&gt;&amp;gt; 2194&lt;br /&gt;&amp;gt; 2195&lt;br /&gt;&amp;gt; .&lt;br /&gt;&amp;gt; .&lt;br /&gt;&amp;gt; .&lt;br /&gt;&amp;gt; .&lt;br /&gt;&amp;gt; .&lt;br /&gt;&amp;gt; 2300&lt;br /&gt;&amp;gt; ~&lt;br /&gt;&amp;gt; ~&lt;br /&gt;&amp;gt; How should I go about doing this in vim.&lt;/p&gt;&lt;p class="mobile-post"&gt;Well, there are several ways to go about it (as usual...this *is* vim ;)&lt;/p&gt;&lt;p class="mobile-post"&gt;The first that comes to mind is something like the following:&lt;/p&gt;&lt;p class="mobile-post"&gt;:let i=2193 | while (i &amp;lt;= 3000) | put =i | let i=i+1 | endwhile&lt;/p&gt;&lt;p class="mobile-post"&gt;When executed on the "2192" line, will add a whole bunch of other lines&lt;br /&gt;afterwards.  If you want your default text stuff in there too, you can&lt;br /&gt;simply change the "put =i" to&lt;/p&gt;&lt;p class="mobile-post"&gt;        put =i."   Default    Some Text"&lt;/p&gt;&lt;p class="mobile-post"&gt;which will pre-populate it with values if you want.  If you like to be&lt;br /&gt;left at the top of that inserted stuff, you can try the inverse.  On a&lt;br /&gt;blank/emtpy line below "2192", you can do&lt;/p&gt;&lt;p class="mobile-post"&gt;:let i=3000 | while (i &amp;gt; 2192) | put! =i | let i=i-1 | endwhile&lt;/p&gt;&lt;p class="mobile-post"&gt;This would be a direct answer to your question of "how to add more rows,&lt;br /&gt;incrementing a number each time".&lt;/p&gt;&lt;p class="mobile-post"&gt;If, however, you'd like to have it auto-number, something like this&lt;br /&gt;mapping might do the trick for you (all one line):&lt;/p&gt;&lt;p class="mobile-post"&gt;:inoremap &amp;lt;cr&amp;gt; &amp;lt;cr&amp;gt;&amp;lt;c-o&amp;gt;:let i=substitute(getline(line('.')-1),&lt;br /&gt;'^\(\d*\).*', '\1', '')&amp;lt;cr&amp;gt;&amp;lt;c-r&amp;gt;=i&amp;gt;0?(i+1).' ':''&amp;lt;cr&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;It can be done without a holding "i" variable, but it becomes about&lt;br /&gt;twice as large, as both instances of "i" would be replaced with the&lt;br /&gt;entire contents of the "substitute()" call.&lt;/p&gt;&lt;p class="mobile-post"&gt;It should gracefully handle lines with numbers and lines without numbers.&lt;/p&gt;&lt;p class="mobile-post"&gt;Help on the following topics should give you more details on what's&lt;br /&gt;going on there.&lt;/p&gt;&lt;p class="mobile-post"&gt;        :help getline()&lt;br /&gt;        :he line()&lt;br /&gt;        :he i_^R&lt;br /&gt;        :he while&lt;br /&gt;        :he let&lt;br /&gt;        :he :put&lt;br /&gt;        :he substitute()&lt;br /&gt;        :he /\d&lt;/p&gt;&lt;p class="mobile-post"&gt;Hope this helps,&lt;/p&gt;&lt;p class="mobile-post"&gt;-tim&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-113009941381257398?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/113009941381257398/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=113009941381257398' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/113009941381257398'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/113009941381257398'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/fwd-appending-and-incrementing-numbers.html' title='Fwd: appending and incrementing the numbers from a particular point'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112989136528205489</id><published>2005-10-21T16:12:00.000+05:30</published><updated>2005-10-21T16:12:45.326+05:30</updated><title type='text'>Gnome Easter Egg (Wanda the Fish)</title><content type='html'>&lt;a href="http://www.livejournal.com/users/mricon/265590.html?view=352886#t352886"&gt;mricon: &lt;/a&gt;: "Gnome Easter Egg (Wanda the Fish) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hit Alt-F2&lt;br /&gt;type 'free the fish'&lt;br /&gt;hit enter&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112989136528205489?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112989136528205489/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112989136528205489' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112989136528205489'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112989136528205489'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/gnome-easter-egg-wanda-fish.html' title='Gnome Easter Egg (Wanda the Fish)'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112975342433174673</id><published>2005-10-20T01:53:00.000+05:30</published><updated>2005-10-20T01:53:44.413+05:30</updated><title type='text'>VisVim</title><content type='html'>its fun! like when you are using VC++ and you are so used to and like vim, then you want your vim as an editor whereever any editing function is needed.&lt;br /&gt;yeah. Go to your Windows installation of vim. (You dont use it? Hey, get it now at &lt;a href="http://www.vim.org"&gt;www.vim.org&lt;/a&gt; and start using it. In a year or so, you might start appreciating it). yeah coming back, go to your windows installation of vim, which had OLE enabled and read the file called README_VisVim.txt. It gives the directions as how to integrate vim as an editor to your visual studio.&lt;br /&gt;Found it One way. Debug mode is not possible. Big miss. Visual Commands are not recognized. But found a link in web to come around this. ( have not tried it) And the vim editor stands out of the IDE, it does not embed itself into the visual studio framework.&lt;br /&gt;After you enable it as your editor, basically you can disable it with a hot-key and return to the normal editor, toggle its usage, after the debugging is over, you can load it again to vim using some hot keys. that readme explains them well.&lt;br /&gt;&lt;br /&gt;So, I just started with both. Vim has lot to go :) getting to start liking it,what might take to go more into it! :D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112975342433174673?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112975342433174673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112975342433174673' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112975342433174673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112975342433174673'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/visvim.html' title='VisVim'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112931839909784482</id><published>2005-10-15T00:56:00.000+05:30</published><updated>2005-10-15T01:03:19.106+05:30</updated><title type='text'>GnomeTinTin</title><content type='html'>You like Gnome and you have always loved reading TinTin. Get a feel of both with this wallpaper.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://puggy.symonds.net/%7Esenthil/GnomeTinTin.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://static.flickr.com/25/52478853_159f20b4e5_m.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.gnome-look.org/content/show.php?content=30226"&gt;Gnome-look.org submission&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Awaiting feature at &lt;a href="http://art.gnome.org/"&gt;art.gnome.org&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112931839909784482?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112931839909784482/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112931839909784482' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112931839909784482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112931839909784482'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/gnometintin.html' title='GnomeTinTin'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112871202270459287</id><published>2005-10-08T00:21:00.000+05:30</published><updated>2005-10-08T00:37:02.750+05:30</updated><title type='text'>tried new default apps with linux</title><content type='html'>Happened to try a lot of new Linux apps today. Basically it started with ripping the Swades CD Songs using the &lt;a href="http://burtonini.com/blog/computers/sound-juicer"&gt;Sound Juicer&lt;/a&gt; to Ogg format.&lt;br /&gt;Now Ogg happens to be something which most of the linux multimedia application should understand, so &lt;a href="https://player.helixcommunity.org/"&gt;Helix Player&lt;/a&gt; played it. Helix does not have a playlist kind of facilty. So, tried if any other application can player this, my often wondered question of &lt;a href="http://www.hadess.net/"&gt;why&lt;/a&gt; the hell &lt;a href="http://www.gnome.org/projects/totem/"&gt;totem-player&lt;/a&gt; is present in the distro was answer as it played Ogg without requiring any external plugin :D Btw, thats sound,I have not seen a video yet on Totem.&lt;br /&gt;&lt;br /&gt;We often use the mount command to mount a particular windows share on Linux:&lt;br /&gt;&lt;br /&gt;mount -t smbfs -o username=&amp;lt;username&amp;gt;,password=&amp;lt;password&amp;gt; //&amp;lt;server-ip&amp;gt;/share /media/&amp;lt;mount-point&amp;gt;&lt;br /&gt;&lt;br /&gt;And have always struggled with Connect to Server option presented by the Gnome Nautilus.&lt;br /&gt;Tried it again today. But gave only the following:&lt;br /&gt;- Service Type: Windows Share&lt;br /&gt;- Server: IP&lt;br /&gt;- Username&lt;br /&gt;And Connect. And it established the connection. Had so long tried in vain with providing share name,folder, name to use blah blah blah..&lt;br /&gt;mount command always seemed to require a second level directory, so I was always trying giving the share name in the Connect to server dialog box.&lt;br /&gt;&lt;br /&gt;Now after the smb connection, that network share comes as an Icon in the Computer as well in Desktop. Thats become easy.&lt;br /&gt;&lt;br /&gt;What else: Yeah, rhn applet was constantly blinking. Which I have no requirement for as I am over Fedora Core4. (Why is Fedora Distro carrying rhn applet??) So, I did.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt; rpm -e up2date-4.4.23-4 up2date-gnome-4.4.23-4 rhn-org-trusted-ssl-cert-1.0-1 rhnlib-1.8-6.p24.1 rhn-applet-2.1.17-3 firstboot-1.3.42-1.noarch&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Now its clean.&lt;br /&gt;&lt;br /&gt;Yeah, used &lt;a href="http://www.gnome.org/projects/dia"&gt;Dia&lt;/a&gt; too effectively.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112871202270459287?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112871202270459287/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112871202270459287' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112871202270459287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112871202270459287'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/tried-new-default-apps-with-linux.html' title='tried new default apps with linux'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112870080635483754</id><published>2005-10-07T21:24:00.000+05:30</published><updated>2005-10-07T21:30:06.363+05:30</updated><title type='text'>Endianess</title><content type='html'>Endianess refers to the ordering of bytes in a multi-byte number. Big endian refers to the architecture where the most significant byte has the lowest address, while the opposite Little endian, the most significant byte has the highest address.&lt;br /&gt;You can find the endianess of your architecture using the following programming snippets:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;int x = 1;&lt;br /&gt; if(*(char *)&amp;x == 1)&lt;br /&gt;  printf("little-endian\n");&lt;br /&gt; else printf("big-endian\n");&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#define LITTLE_ENDIAN 0&lt;br /&gt;#define BIG_ENDIAN    1&lt;br /&gt;&lt;br /&gt;int machineEndianness()&lt;br /&gt;{&lt;br /&gt;   short s = 0x0102;&lt;br /&gt;   char *p = (char *) &amp;s;&lt;br /&gt;   if (p[0] == 0x02) // Lowest address contains the least significant byte&lt;br /&gt;      return LITTLE_ENDIAN;&lt;br /&gt;   else&lt;br /&gt;      return BIG_ENDIAN;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;a href="http://www.iso-9899.info/wiki/Endianness"&gt;Endianess&lt;/a&gt; Wiki page for #c on FreeNode.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Tip for MediaWiki&lt;/span&gt; Users: mediawiki recognizes hot-keys ( thats php, not ajax) and play with &lt;span style="font-weight:bold;"&gt;&lt;span style="font-style:italic;"&gt;alt+x&lt;/span&gt;&lt;/span&gt; on your favorite wiki site.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112870080635483754?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112870080635483754/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112870080635483754' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112870080635483754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112870080635483754'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/endianess.html' title='Endianess'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112869804989139488</id><published>2005-10-07T20:33:00.000+05:30</published><updated>2005-10-07T20:44:09.896+05:30</updated><title type='text'>Doom3 the linux</title><content type='html'>There is &lt;a href="http://zerowing.idsoftware.com/linux/doom/"&gt;Doom3 for Linux&lt;/a&gt; from id software. Tried on my Fedora Core 4 having 1 GB Ram. The Game was still very slow. The reasons I read at some performance comparisions that Doom3 was written using VC .Net and GCC optimization was not perfect. So there will always be 10% different.&lt;br /&gt;Adding to this was the inbuilt video card of my machine.&lt;br /&gt;&lt;br /&gt;VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01).&lt;br /&gt;&lt;br /&gt;At #linux IRC channel while discussing this issue, came to know that this inbuilt video card does not support OpenGL graphics well and might have performance lags. The suggested ones are nVidia and ATI.&lt;br /&gt;&lt;br /&gt;After downloading the game &lt;a href="ftp://ftp.idsoftware.com/idstuff/doom3/"&gt;id software's ftp server&lt;/a&gt;.&lt;br /&gt;- The Installation was breeze,using ncurses. Cool way for Linux for a big application.&lt;br /&gt;- Had to change some settings in my X.org conf file. Increased the Depth to 24.&lt;br /&gt;- To improve the performance on Linux with inbuilt video card,Added something called VideoRam 128000 under Device section and turned off all the advanced options from the game. &lt;br /&gt;&lt;br /&gt;Now, its playable, but I need to figure out how to play it :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112869804989139488?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112869804989139488/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112869804989139488' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112869804989139488'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112869804989139488'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/doom3-linux.html' title='Doom3 the linux'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112834347728768690</id><published>2005-10-03T18:08:00.000+05:30</published><updated>2005-10-03T18:14:38.953+05:30</updated><title type='text'>brace expansion in BASH</title><content type='html'>mkdir {A..C}{a..c}{1..3} did a nested brace expansion and created the 27 directories. that was cool.&lt;br /&gt;rm -rf {A..C}{a..c}{1..3}&lt;br /&gt;&lt;br /&gt;Tip source: &lt;a href="http://aplawrence.com/Linux/brace-expansion.html"&gt;aplawrance&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112834347728768690?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112834347728768690/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112834347728768690' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112834347728768690'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112834347728768690'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/10/brace-expansion-in-bash.html' title='brace expansion in BASH'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112788368752152531</id><published>2005-09-28T10:30:00.000+05:30</published><updated>2005-09-28T10:31:27.526+05:30</updated><title type='text'>September 27</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/445/152/1600/Susi.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/445/152/320/Susi.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112788368752152531?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112788368752152531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112788368752152531' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112788368752152531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112788368752152531'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/september-27.html' title='September 27'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112776025936538645</id><published>2005-09-27T00:07:00.000+05:30</published><updated>2005-09-27T00:14:19.370+05:30</updated><title type='text'>shell pi</title><content type='html'>pi=$(echo "scale=10; 4*a(1)" | bc -l)&lt;br /&gt;&lt;br /&gt;ok; bc -l gives floating point value.&lt;br /&gt;a(1) returns arc tangent of 1.&lt;br /&gt;scale is the scable you assign to the bc.&lt;br /&gt;&lt;br /&gt;how 4 * a(1) is pi?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112776025936538645?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112776025936538645/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112776025936538645' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112776025936538645'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112776025936538645'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/shell-pi.html' title='shell pi'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112749286839886852</id><published>2005-09-23T21:53:00.000+05:30</published><updated>2005-09-23T21:57:48.403+05:30</updated><title type='text'>cowsay</title><content type='html'>&lt;a href="http://www.nog.net/%7Etony/warez/cowsay.shtml"&gt;Cowsays&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt; ______________________________________&lt;br /&gt;/ Don't worry about anything... Go out \ and have a good time.                /&lt;br /&gt; --------------------------------------&lt;br /&gt;        \   ^__^&lt;br /&gt;         \  (oo)\_______&lt;br /&gt;            (__)\       )\/                ||----w |&lt;br /&gt;                ||     ||&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112749286839886852?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112749286839886852/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112749286839886852' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112749286839886852'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112749286839886852'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/cowsay.html' title='cowsay'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112718692456239654</id><published>2005-09-20T08:58:00.000+05:30</published><updated>2005-09-20T08:58:44.623+05:30</updated><title type='text'>nice quote</title><content type='html'>&lt;p class="mobile-post"&gt;Dealing with failure is easy:&lt;br /&gt;        Work hard to improve.&lt;br /&gt;Success is also easy to handle:&lt;br /&gt;        You've solved the wrong problem.&lt;br /&gt;        Work hard to improve.      &lt;br /&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112718692456239654?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112718692456239654/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112718692456239654' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112718692456239654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112718692456239654'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/nice-quote.html' title='nice quote'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112716342281663054</id><published>2005-09-20T02:22:00.000+05:30</published><updated>2005-09-20T02:27:02.823+05:30</updated><title type='text'>Patch How To</title><content type='html'>The command you need is:&lt;br /&gt;&lt;br /&gt;# &lt;span style="font-weight:bold;"&gt;diff -ruP&lt;/span&gt; libsmbios-0.10.0&lt;span style="font-weight:bold;"&gt;_beta5&lt;/span&gt;  libsmbios-0.10.0_&lt;span style="font-weight:bold;"&gt;beta5_SENTHIL&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Where the libsmbios-0.10.0_&lt;span style="font-weight:bold;"&gt;beta5_SENTHIL/ directory has your&lt;br /&gt;modifications&lt;/span&gt;. Make sure that you run a "make distclean" in both&lt;br /&gt;directories and look at the patch to ensure no stray files got in.&lt;br /&gt;&lt;br /&gt;After this, go ahead and send it as an attachment. Doing the patch&lt;br /&gt;inline is excellent for reviewing, but because of the line-wraps your&lt;br /&gt;email client puts in, it is not possible to apply it this way.&lt;br /&gt;--&lt;br /&gt;&lt;a href="http://linux.dell.com/libsmbios/main/index.html"&gt;Michael&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112716342281663054?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://lists.us.dell.com/pipermail/libsmbios-devel/2005-September/000083.html' title='Patch How To'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112716342281663054/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112716342281663054' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112716342281663054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112716342281663054'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/patch-how-to.html' title='Patch How To'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112712880824167202</id><published>2005-09-19T16:50:00.000+05:30</published><updated>2005-09-19T16:50:08.570+05:30</updated><title type='text'>getup to oo</title><content type='html'>"'Well, grok bugzilla / your personal collection of tricky MS files, find some scab and pick at it' he says. He continues, 'the first thing to do is to download the latest &lt;a href="http://ooo.ximian.com/ooo-build.html"&gt;ooo-build&lt;/a&gt;, and build it yourself, then go over the &lt;a href="http://ooo.ximian.com/wiki/index.php/Hacking"&gt;My First Hack&lt;/a&gt; page. Be sure to pop onto IRC and ask for help."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112712880824167202?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.spreadopenoffice.org/' title='getup to oo'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112712880824167202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112712880824167202' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112712880824167202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112712880824167202'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/getup-to-oo.html' title='getup to oo'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112591968772344576</id><published>2005-09-05T16:49:00.000+05:30</published><updated>2005-09-05T16:58:07.886+05:30</updated><title type='text'>using rdesktop</title><content type='html'>&lt;a href="http://www.rdesktop.org"&gt;rdesktop&lt;/a&gt;   seems a nifty tool.&lt;br /&gt;&lt;br /&gt;To use it,invoke with the options:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;rdesktop  -u  &amp;lt;user_name&amp;gt; -d  &amp;lt;domain_name&amp;gt; -g  &amp;lt;resolution&amp;gt;  &amp;lt;windows_machine_hostname/ip&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I used resolution as 800x600. the -g option is a must I guess;I googled for usage of it, cause I could not figure out using it by running the tool, using --help,man etc..&lt;br /&gt;&lt;br /&gt;rdesktop on your linux and &lt;a href="http://x.cygwin.com/"&gt;Cygwin/X&lt;/a&gt; on your windows might make a nice handshake!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112591968772344576?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112591968772344576/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112591968772344576' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112591968772344576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112591968772344576'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/using-rdesktop.html' title='using rdesktop'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112575099807142148</id><published>2005-09-03T18:05:00.000+05:30</published><updated>2005-09-03T18:06:38.076+05:30</updated><title type='text'>libsmbios</title><content type='html'>&lt;a href="http://lists.us.dell.com/pipermail/libsmbios-devel/2005-September/000079.html"&gt;[PATCH] checkSkipTest for Skipping unit_test failures&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;trying for an entry into &lt;a href="http://linux.dell.com/libsmbios/main/index.html"&gt;libsmbios&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112575099807142148?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112575099807142148/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112575099807142148' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112575099807142148'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112575099807142148'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/libsmbios.html' title='libsmbios'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112564138070534614</id><published>2005-09-02T11:36:00.000+05:30</published><updated>2005-09-02T11:39:40.713+05:30</updated><title type='text'>cprogramming.com now has uthcode as a resource</title><content type='html'>&lt;a href="http://www.cprogramming.com/"&gt;&lt;img src="http://www.cprogramming.com/images/title.gif" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;now links&lt;br /&gt;&lt;br /&gt;&lt;a href="http://uthcode.sarovar.org"&gt;&lt;img src="http://uthcode.sarovar.org/uthcode-logo.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In the &lt;a href="http://www.cprogramming.com/cgi-bin/cdir/Cdirectory.cgi?action=Category&amp;CID=13&amp;amp;Page=2"&gt;C Source Code Resources Directory&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Thanks! and a good step forward.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112564138070534614?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112564138070534614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112564138070534614' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112564138070534614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112564138070534614'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/09/cprogrammingcom-now-has-uthcode-as.html' title='cprogramming.com now has uthcode as a resource'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112550310468961575</id><published>2005-08-31T21:12:00.000+05:30</published><updated>2005-08-31T21:15:04.696+05:30</updated><title type='text'>Steve Waugh</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/445/152/1600/waugh.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/445/152/400/waugh.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;"I see myself as an average guy who tries to help out my mates and loves my sport. I think in some ways, I'm sort of an underdog and a bit of a battler. I've always had to fight hard for my spot and to achieve what I have, and I've had to give 100%. I think Australians like to see that in people and they like to recognise it."  - Steve Waugh&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112550310468961575?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112550310468961575/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112550310468961575' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112550310468961575'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112550310468961575'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/steve-waugh.html' title='Steve Waugh'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112546791688254163</id><published>2005-08-31T11:28:00.000+05:30</published><updated>2005-08-31T11:28:36.926+05:30</updated><title type='text'>Quote for the day</title><content type='html'>"I find that the great thing in this world is not so much where we stand as in what direction we are moving: To reach the port of heaven, we must sail sometimes with the wind and sometimes against it— but we must sail, and not drift, nor lie at anchor."&lt;br /&gt;&lt;br /&gt;Oliver Wendell Holmes, Sr.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112546791688254163?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112546791688254163/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112546791688254163' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112546791688254163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112546791688254163'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/quote-for-day.html' title='Quote for the day'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112506061072783147</id><published>2005-08-26T18:17:00.000+05:30</published><updated>2005-08-26T18:20:10.733+05:30</updated><title type='text'>bootchart of my linux pc</title><content type='html'>&lt;a href="http://www.bootchart.org/index.html"&gt;BootChart&lt;/a&gt;&amp;nbsp;&lt;a href="http://www.redhat.com/archives/fedora-devel-list/2004-November/msg00447.html"&gt; [1]&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos28.flickr.com/37337161_9c6393ef0b_b.jpg"&gt;&lt;img src="http://photos28.flickr.com/37337161_9c6393ef0b.jpg"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112506061072783147?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112506061072783147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112506061072783147' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112506061072783147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112506061072783147'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/bootchart-of-my-linux-pc.html' title='bootchart of my linux pc'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112491326505002275</id><published>2005-08-25T01:04:00.000+05:30</published><updated>2005-08-25T01:24:25.056+05:30</updated><title type='text'>talk to wumpus</title><content type='html'>Everying is talking about &lt;a href="http://talk.google.com/"&gt;talk&lt;/a&gt;.&lt;br /&gt;Check &lt;b&gt;About&lt;/b&gt; talk by Right Clicking on the talk Icon in the windows panel.&lt;br /&gt;&lt;img src="http://blog.outer-court.com/files/google-talk-about.jpg"&gt;&lt;br /&gt;&lt;i&gt;&lt;br /&gt;&lt;a href\"http://blog.outer-court.com/archive/2005-08-24-n57.html"&gt;Google Blogoscoped&lt;/a&gt;noticed something interesting there.&lt;br /&gt;It reads: “play 23 21 13 16 21 19 . 7 1 13 5”. &lt;br /&gt;Interesting.noticed these were all numbers that could represent letters from the alphabet (a = 1, b = 2, c = 3 and so on).&lt;br /&gt;gives "play wumpus.game"&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;Felt very excited when I came to know about this. Tad tried with &lt;a href="http://geocities.com/uthcode2/wumpus/wumpus-page.html"&gt;Wumpus&lt;/a&gt; sometime ago. Glad that Google has brought it back to spotlight!.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://geocities.com/uthcode2/wumpus/wumpus-page.html"&gt;Wumpus Page&lt;/a&gt; has the C code as well. You can try it on your Linux/cygwin/windows(not sure) box.&lt;br /&gt;&lt;br /&gt;GAIM does not seem to play wumpus.game on talk!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112491326505002275?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112491326505002275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112491326505002275' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112491326505002275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112491326505002275'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/talk-to-wumpus.html' title='talk to wumpus'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112485502769703197</id><published>2005-08-24T09:08:00.000+05:30</published><updated>2005-08-24T21:03:11.653+05:30</updated><title type='text'>web updates</title><content type='html'>Home Page: &lt;a href="http://puggy.symonds.net/~senthil/"&gt;http://puggy.symonds.net/~senthil/&lt;/a&gt;&lt;br /&gt;UnixBlog: &lt;a href="http://puggy.symonds.net/~senthil/unixblog/"&gt;http://puggy.symonds.net/~senthil/unixblog/&lt;/a&gt;&lt;br /&gt;NECSUS: &lt;a href="http://puggy.symonds.net/~senthil/necsus/"&gt;http://puggy.symonds.net/~senthil/necsus/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112485502769703197?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112485502769703197/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112485502769703197' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112485502769703197'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112485502769703197'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/web-updates.html' title='web updates'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112469906270292772</id><published>2005-08-22T13:48:00.000+05:30</published><updated>2005-08-22T13:54:22.880+05:30</updated><title type='text'>why did'nt they ask evans?</title><content type='html'>&lt;a href="http://uk.agathachristie.com/site/home/"&gt;&lt;img src="http://www.waidev4.com/php/IMAGES/AGATHA_Stories/89---Image.jpg"&gt;&lt;/a&gt;&lt;br /&gt;Thats an Agatha Christie title! Read the book over the weekend and got a glimpse at the talent of Queen of Crime. this was my first entry into the world of agatha chritie. she has got a very nice writing style, attention to the details and seems an excellent story teller :)&lt;br /&gt;&lt;a href="http://uk.agathachristie.com/site/home/"&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/445/152/1600/OTE5.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/445/152/200/OTE5.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112469906270292772?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112469906270292772/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112469906270292772' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112469906270292772'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112469906270292772'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/why-didnt-they-ask-evans.html' title='why did&apos;nt they ask evans?'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112446605503389912</id><published>2005-08-19T21:10:00.000+05:30</published><updated>2005-08-19T21:13:36.356+05:30</updated><title type='text'>similar minds - take this up!</title><content type='html'>&lt;div align="center"&gt; &lt;br&gt;&lt;img src="http://images.similarminds.com/leader/4.jpg"&gt;&lt;br&gt;&lt;a href="http://similarminds.com/othertests.html"&gt;What Famous Leader Are You?&lt;/a&gt;&lt;br&gt;&lt;font size="1"&gt;&lt;/font&gt;&lt;/div&gt;&lt;br&gt;&lt;hr&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;br&gt; &lt;img src="http://images.similarminds.com/movie/8.jpg"&gt;&lt;br&gt;&lt;br /&gt;&lt;a href="http://similarminds.com/othertests.html"&gt;What Classic Movie Are You?&lt;/a&gt;&lt;br&gt;&lt;font size="1"&gt;&lt;a href="http://similarminds.com"&gt;personality tests by similarminds.com&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112446605503389912?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112446605503389912/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=5899547&amp;postID=112446605503389912' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112446605503389912'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112446605503389912'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/similar-minds-take-this-up.html' title='similar minds - take this up!'/><author><name>orsenthil</name><uri>http://www.blogger.com/profile/00682980074616455702</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='09648140724373545167'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry></feed>