<?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' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5899547</id><updated>2012-01-04T23:41:31.973+05:30</updated><category term='LiveJournal'/><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?max-results=100'/><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=101&amp;max-results=100'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>279</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</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='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=113026858615944380' title='0 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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</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='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=113009941381257398' title='1 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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112871202270459287' title='0 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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>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='http://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>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112443282171729147</id><published>2005-08-19T11:57:00.000+05:30</published><updated>2005-08-19T11:57:01.806+05:30</updated><title type='text'>visual treat</title><content type='html'>&lt;style type="text/css"&gt;.flickr-photo { border: solid 2px #000000; }.flickr-yourcomment { }.flickr-frame { text-align: left; padding: 3px; }.flickr-caption { font-size: 0.8em; margin-top: 0px; }&lt;/style&gt;&lt;div class="flickr-frame"&gt;	&lt;a href="http://www.flickr.com/photos/giridhar/22592502/" title="photo sharing"&gt;&lt;img src="http://photos19.flickr.com/22592502_931654b8e5.jpg" class="flickr-photo" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;	&lt;span class="flickr-caption"&gt;&lt;a href="http://www.flickr.com/photos/giridhar/22592502/"&gt;Copy of IMG_22231&lt;/a&gt;, originally uploaded by &lt;a href="http://www.flickr.com/people/giridhar/"&gt;gdatuk2k&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;				&lt;p class="flickr-yourcomment"&gt;	A good capture by &lt;a href="http://flickr.com/photos/giridhar/"&gt;Giri&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112443282171729147?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112443282171729147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112443282171729147' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112443282171729147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112443282171729147'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/visual-treat.html' title='visual treat'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112435223875967845</id><published>2005-08-18T13:32:00.000+05:30</published><updated>2005-08-18T13:33:58.766+05:30</updated><title type='text'>Same Hot-Key (F) for two fields in Evolution</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bugzilla.gnome.org/show_bug.cgi?id=313801"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px;" src="http://bugzilla.gnome.org/show_bug.cgi?id=313801" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/445/152/1600/hotkeybug.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/hotkeybug.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://bugzilla.gnome.org/show_bug.cgi?id=313801"&gt;Bug!&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112435223875967845?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112435223875967845/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112435223875967845' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112435223875967845'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112435223875967845'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/same-hot-key-f-for-two-fields-in.html' title='Same Hot-Key (F) for two fields in Evolution'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112427625443393225</id><published>2005-08-17T16:16:00.000+05:30</published><updated>2005-08-26T18:34:38.896+05:30</updated><title type='text'>Install Java Plugin for Firefox in Linux</title><content type='html'>Browser: Firefox 1.0.4&lt;br /&gt;Distro: Fedora Core 4.&lt;br /&gt;Need to Install Java Plugin.&lt;br /&gt;- &lt;a href="http://java.sun.com/j2se/1.5.0/download.jsp"&gt;Download J2SE 1.5.0&lt;/a&gt;&lt;br /&gt;- Install the RPM.&lt;br /&gt;- Open a terminal and change to the Firefox plugin directory and &lt;a href="http://ldp.rtin.bz/LDP/LG/current/staff.html"&gt;symlink&lt;/a&gt; it the jre plugin just installed.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;cd /usr/lib/firefox-1.0.4/plugins/&lt;br /&gt;ln -s /usr/java/jdk1.5.0_04/jre/plugin/i386/ns7/libjavaplugin_oji.so&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Help available at &lt;a href="http://www.mozilla.org/support/firefox/faq#q2.2"&gt;FireFox FAQ&lt;/a&gt; points to ns7-gcc29; linking to it &lt;b&gt;Crashed&lt;/b&gt; my FireFox. So you need to link it to the correct plugin.&lt;br /&gt;Faced problems like, only the root mode firefox displayed applets, but I tried again with uninstall and install and taking some care to be as user and then su to symlink and &lt;b&gt;&lt;u&gt;luckily&lt;/u&gt;&lt;/b&gt; the Java Plugin is installed for my FireFox!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112427625443393225?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112427625443393225/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112427625443393225' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112427625443393225'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112427625443393225'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/install-java-plugin-for-firefox-in.html' title='Install Java Plugin for Firefox in Linux'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112427276123397389</id><published>2005-08-17T15:21:00.000+05:30</published><updated>2005-08-17T15:36:57.546+05:30</updated><title type='text'>Flash Player Installation for FireFox on Linux</title><content type='html'>&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=301552"&gt;Automatic Installation of Flash Plugin Failed&lt;/a&gt;.&lt;br /&gt;After checking that Macromedia Flash was missing, giving the option to install,License Agreement etc.when proceeded to install. It failed and informed me to do a manual install.&lt;br /&gt;- Flash Plugin can be downloaded &lt;a href="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&amp;P2_Platform=Linux&amp;P3_Browser_Version=Netscape4&amp;P5_Language=English"&gt;here&lt;/a&gt;.&lt;br /&gt;- extract and run the flashplayer-installer.&lt;br /&gt;- it will ask:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;Please enter the installation path of the Mozilla, Netscape,&lt;br /&gt;or Opera browser (i.e., /usr/lib/mozilla):&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Giving anything other than your Installed Browser's lib directory will fail.&lt;br /&gt;Here,after googling and checking few &lt;a href="http://www.linuxquestions.org/questions/archive/31/2005/04/3/305342"&gt;forums&lt;/a&gt;, I did locate firefox | grep lib and got the answer as &lt;b&gt;/usr/lib/firefox-1.0.4/&lt;/b&gt;. Yeah, Firefox&lt;br /&gt;lib directory is at /usr/lib/firefox-X.X.X where X.X.X is the version number and plugin directory is present inside this.&lt;br /&gt;-Verify your flash-plugin installation by &lt;a href="http://www.macromedia.com/shockwave/welcome/"&gt;checking this&lt;/a&gt;. &lt;br /&gt;Note: I did not have to close my firefox browser when I installed the plugin.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112427276123397389?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112427276123397389/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112427276123397389' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112427276123397389'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112427276123397389'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/flash-player-installation-for-firefox.html' title='Flash Player Installation for FireFox on Linux'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112418895581297687</id><published>2005-08-16T16:06:00.000+05:30</published><updated>2005-08-16T16:12:35.816+05:30</updated><title type='text'>Hollywood at its Best</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.hinduonnet.com/thehindu/thscrip/print.pl?file=2005081307232100.htm&amp;date=2005/08/13/&amp;prd=th&amp;"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px;" src="http://www.hinduonnet.com/thehindu/thscrip/print.pl?file=2005081307232100.htm&amp;date=2005/08/13/&amp;prd=th&amp;" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/445/152/1600/Warne.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/445/152/400/Warne.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Warne has survivied and excelled under conditions which are very different and not so normal.&lt;br /&gt;Read the Nirmal Shekar's article &lt;a href="http://www.hinduonnet.com/thehindu/thscrip/print.pl?file=2005081307232100.htm&amp;date=2005/08/13/&amp;prd=th&amp;"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112418895581297687?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112418895581297687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112418895581297687' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112418895581297687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112418895581297687'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/hollywood-at-its-best.html' title='Hollywood at its Best'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112383936135070465</id><published>2005-08-12T15:02:00.000+05:30</published><updated>2005-08-12T15:06:01.356+05:30</updated><title type='text'>Troubleshooting X server resolution problem in Linux</title><content type='html'>X was in a very bad shape after I followed the workaround for the problem in &lt;a href="http://usr.blogspot.com/2005/06/cntl-alt-fn-does-not-work-in-fedora.html"&gt;FC4&lt;/a&gt;. Only 600X800 resolution was available. tried many things(Xorg -configure,system-config-display..etc),upto the downloading a new X11 and not knowing what to do. Finally went to the 600x800 mode only went to display resolutions and saw that video card is incorrectly indentified. Changed it to Intel 815e and restarted X. Now its working. I was thinking of reinstall FC4 to FC3 itself for this. :(&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112383936135070465?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112383936135070465/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112383936135070465' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112383936135070465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112383936135070465'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/troubleshooting-x-server-resolution.html' title='Troubleshooting X server resolution problem in Linux'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112287679069671688</id><published>2005-08-01T11:39:00.000+05:30</published><updated>2005-08-01T11:43:10.703+05:30</updated><title type='text'>Library installation in linux</title><content type='html'>Libraries have been installed in:&lt;br /&gt;   /usr/local/lib&lt;br /&gt;&lt;br /&gt;If you ever happen to want to link against installed libraries&lt;br /&gt;in a given directory, LIBDIR, you must either use libtool, and&lt;br /&gt;specify the full pathname of the library, or use the `-LLIBDIR'&lt;br /&gt;flag during linking and do at least one of the following:&lt;br /&gt;   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable&lt;br /&gt;     during execution&lt;br /&gt;   - add LIBDIR to the `LD_RUN_PATH' environment variable&lt;br /&gt;     during linking&lt;br /&gt;   - use the `-Wl,--rpath -Wl,LIBDIR' linker flag&lt;br /&gt;   - have your system administrator add LIBDIR to `/etc/ld.so.conf'&lt;br /&gt;&lt;br /&gt;See any operating system documentation about shared libraries for&lt;br /&gt;more information, such as the ld(1) and ld.so(8) manual pages.&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Most of time, I have been adding the path to the /etc/ld.so.conf and doing ldconfig.  Need to understand the other options.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112287679069671688?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112287679069671688/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112287679069671688' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112287679069671688'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112287679069671688'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/08/library-installation-in-linux.html' title='Library installation in linux'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112182988442686006</id><published>2005-07-20T08:54:00.000+05:30</published><updated>2005-07-20T08:54:44.500+05:30</updated><title type='text'>Re: Assignment for July 19</title><content type='html'>&lt;p class="mobile-post"&gt;Senthil wrote :&lt;br /&gt;&amp;gt; Write a Linked List Program in C and C++.&lt;br /&gt;&amp;gt; Single Linked List only.&lt;br /&gt;&amp;gt; &lt;br /&gt;/* Linked List program. A very simple one to understand the basics */&lt;/p&gt;&lt;p class="mobile-post"&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include&amp;lt;stdlib.h&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;struct node {&lt;br /&gt;        int data;&lt;br /&gt;        struct node* next;&lt;br /&gt;};&lt;/p&gt;&lt;p class="mobile-post"&gt;int main(int argc,char **argv)&lt;br /&gt;{&lt;/p&gt;&lt;p class="mobile-post"&gt;        struct node* head=NULL;&lt;br /&gt;        struct node* second=NULL;&lt;br /&gt;        struct node* third=NULL;&lt;/p&gt;&lt;p class="mobile-post"&gt;        head=malloc(sizeof(struct node));&lt;br /&gt;        second=malloc(sizeof(struct node));&lt;br /&gt;        third=malloc(sizeof(struct node));&lt;/p&gt;&lt;p class="mobile-post"&gt;        head-&amp;gt;data=1;&lt;br /&gt;        head-&amp;gt;next=second;&lt;/p&gt;&lt;p class="mobile-post"&gt;        second-&amp;gt;data=2;&lt;br /&gt;        second-&amp;gt;next=third;&lt;br /&gt;        third-&amp;gt;data=3;&lt;br /&gt;        third-&amp;gt;next=NULL;&lt;/p&gt;&lt;p class="mobile-post"&gt;        return 0;&lt;/p&gt;&lt;p class="mobile-post"&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++&lt;/p&gt;&lt;p class="mobile-post"&gt;/* Linked List Program in C Plus Plus */&lt;br /&gt;#include&amp;lt;iostream&amp;gt;&lt;br /&gt;using namespace std;&lt;/p&gt;&lt;p class="mobile-post"&gt;class list&lt;br /&gt;{&lt;br /&gt;        private:&lt;br /&gt;                struct node {&lt;br /&gt;                        int data;&lt;br /&gt;                        struct node *next;&lt;br /&gt;                };&lt;br /&gt;                struct node *head,*first,*second;&lt;br /&gt;        public:&lt;br /&gt;                list();&lt;br /&gt;                ~list();&lt;br /&gt;                void addnode();&lt;br /&gt;};&lt;/p&gt;&lt;p class="mobile-post"&gt;list::list()&lt;br /&gt;{&lt;br /&gt;        head=NULL;&lt;br /&gt;        first=NULL;&lt;br /&gt;        second=NULL;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;list::~list()&lt;br /&gt;{&lt;br /&gt;        while(head != NULL)&lt;br /&gt;        {&lt;br /&gt;                node *temp;&lt;br /&gt;                temp=head;&lt;br /&gt;                head=head-&amp;gt;next;&lt;br /&gt;                delete temp;&lt;br /&gt;        }&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;void list::addnode()&lt;br /&gt;{&lt;br /&gt;        head=(node *)malloc(sizeof(struct node));&lt;br /&gt;        first=(node *)malloc(sizeof(struct node));&lt;br /&gt;        second=(node *)malloc(sizeof(struct node));&lt;/p&gt;&lt;p class="mobile-post"&gt;        head-&amp;gt;data=1;&lt;br /&gt;        head-&amp;gt;next=first;&lt;/p&gt;&lt;p class="mobile-post"&gt;        first-&amp;gt;data=2;&lt;br /&gt;        first-&amp;gt;next=second;&lt;/p&gt;&lt;p class="mobile-post"&gt;        second-&amp;gt;data=3;&lt;br /&gt;        second-&amp;gt;next=NULL;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;int main(int argc,char **argv)&lt;br /&gt;{&lt;/p&gt;&lt;p class="mobile-post"&gt;        list listobj;&lt;br /&gt;        listobj.addnode();&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++&lt;br /&gt;Observations:&lt;br /&gt;- Struct node * head,first,second; does not serve the purpose. Either&lt;br /&gt;they should as in the first program or as in the second program&lt;br /&gt;- Allocation of memory, the first program accepted without typecasting&lt;br /&gt;to (node *) whereas the second cpp program did not.&lt;/p&gt;&lt;p class="mobile-post"&gt;-- &lt;br /&gt;O.R.Senthil Kumaran&lt;br /&gt;http://uthcode.sarovar.org&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112182988442686006?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112182988442686006/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112182988442686006' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112182988442686006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112182988442686006'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/07/re-assignment-for-july-19.html' title='Re: Assignment for July 19'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112109539378816130</id><published>2005-07-11T20:48:00.000+05:30</published><updated>2005-07-11T20:53:13.793+05:30</updated><title type='text'>Unix Blog</title><content type='html'>&lt;a href="http://unixblog.port5.com/"&gt;http://unixblog.port5.com/  &lt;/a&gt;&lt;br /&gt;where I plan to put my unix learnings while working from home. Coz, I need to do ftp/rsync from the shell where the local unixblog folder will be present.&lt;br /&gt;&lt;br /&gt;Its powered by &lt;a href="http://nanoblogger.sourceforge.net/"&gt;Nanoblogger&lt;/a&gt;. &lt;br /&gt;If you have a Unix Machine online, give it a try.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112109539378816130?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112109539378816130/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112109539378816130' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112109539378816130'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112109539378816130'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/07/unix-blog.html' title='Unix Blog'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-112047903484389532</id><published>2005-07-04T17:33:00.000+05:30</published><updated>2005-07-04T17:40:34.913+05:30</updated><title type='text'>War of the Worlds</title><content type='html'>&lt;img src="http://photos16.flickr.com/23479830_0f28b379ad.jpg" alt="wotw" height="500" width="404" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Was thinking all the while ( in a vim style)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;:s/Steven\ Spielberg/Manoj\.N\.Shyamalan&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-112047903484389532?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/112047903484389532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=112047903484389532' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112047903484389532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/112047903484389532'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/07/war-of-worlds.html' title='War of the Worlds'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111978445082183805</id><published>2005-06-26T16:34:00.000+05:30</published><updated>2005-06-26T21:45:07.640+05:30</updated><title type='text'>Maheswata</title><content type='html'>Maheswata is a story of a beautiful girl called Anupama, who suddenly has to face life in all its cruel possiblities. After suffering enough,she starts to take things in her stride, fights back with courage and finally takes on to bring meaning to her life.&lt;br /&gt;&lt;br /&gt;There are too many life-lessons in this novel. This novel brings forth many subtle issues of human mind with regard to beauty; the issue of security of  a woman in this male dominated society of India;what does mans love for a beautiful woman might mean; the plight of talented, motherless girl when born in a poor family; how sometimes a good person has undergo a lot of suffering for no fault; even through all these bleaks there are ofcourse good people living in this world. There are many a issues presented which might lead you to introspect.&lt;br /&gt;&lt;br /&gt;Thank you, dearest Madam Sudha Murthy for such a wonderful Novel.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111978445082183805?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111978445082183805/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111978445082183805' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111978445082183805'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111978445082183805'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/maheswata.html' title='Maheswata'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111965055308671242</id><published>2005-06-25T03:32:00.000+05:30</published><updated>2005-06-25T03:32:33.163+05:30</updated><title type='text'>Re: Ant:  Re: Ant:  Re: link checker task ?</title><content type='html'>&lt;p class="mobile-post"&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include&amp;lt;expat.h&amp;gt;&lt;br /&gt;#include&amp;lt;string.h&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;#define string_t char *&lt;br /&gt;#define XML_BUFFER_BLK 8192&lt;/p&gt;&lt;p class="mobile-post"&gt;void *&lt;br /&gt;memalloc(size_t n)&lt;br /&gt;{&lt;br /&gt;	void *mp;&lt;br /&gt;	int errno=0;&lt;br /&gt;	if((mp=(void *)calloc(n,sizeof(string_t)))==NULL)&lt;br /&gt;		fprintf(stderr,"Out of Memory");&lt;br /&gt;	return mp;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;static void&lt;br /&gt;link_start(void *data,const char *el,const char **attr)&lt;br /&gt;{&lt;br /&gt;	int i=0;&lt;br /&gt;	printf("\n&amp;lt;%s&amp;gt;",el);&lt;br /&gt; &lt;br /&gt;	for(i=0;attr[i];i++)&lt;br /&gt;		printf("\n%s",*(attr+i));&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;static void&lt;br /&gt;link_end(void *data,const char *el)&lt;br /&gt;{&lt;br /&gt;	printf("\n&amp;lt;\\%s&amp;gt;\n\n",el);&lt;br /&gt;	/* why do we need this function */&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;int&lt;br /&gt;link_parser(string_t filename)&lt;br /&gt;{&lt;br /&gt;	XML_Parser parser;&lt;br /&gt;	char *xml_buf;&lt;br /&gt;	int flag;&lt;br /&gt;	size_t length;&lt;br /&gt;	FILE *fp;&lt;br /&gt;	string_t msg;&lt;br /&gt;	&lt;br /&gt;	if((fp=fopen(filename,"rb"))==NULL)&lt;br /&gt;	{&lt;br /&gt;		fprintf(stderr,"Could not open the file");&lt;br /&gt;		exit(-1);&lt;br /&gt;	}&lt;/p&gt;&lt;p class="mobile-post"&gt;	if((parser=XML_ParserCreate(NULL))==NULL)&lt;br /&gt;	{&lt;br /&gt;		fprintf(stderr,"Could not create the parser");&lt;br /&gt;		exit(-1);&lt;br /&gt;	}&lt;/p&gt;&lt;p class="mobile-post"&gt;	XML_SetElementHandler(parser,link_start,link_end);&lt;/p&gt;&lt;p class="mobile-post"&gt;	/* parse the document */&lt;/p&gt;&lt;p class="mobile-post"&gt;	xml_buf=(string_t)memalloc(XML_BUFFER_BLK+1);&lt;/p&gt;&lt;p class="mobile-post"&gt;	do&lt;br /&gt;	{&lt;br /&gt;		length=fread(xml_buf,1,XML_BUFFER_BLK,fp);&lt;br /&gt;		flag= length &amp;lt; strlen(xml_buf);&lt;/p&gt;&lt;p class="mobile-post"&gt;		if(XML_Parse(parser,xml_buf,length,flag)==XML_STATUS_ERROR)&lt;br /&gt;		{&lt;br /&gt;			fprintf(stderr,"Parse Error at line %d\n%s\n",XML_GetCurrentLineNumber(parser),XML_ErrorString(XML_GetErrorCode(parser)));&lt;br /&gt;			exit(-1);&lt;br /&gt;		}&lt;/p&gt;&lt;p class="mobile-post"&gt;	}while(!flag);&lt;/p&gt;&lt;p class="mobile-post"&gt;	return 0;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;int main(int argc,char **argv)&lt;br /&gt;{&lt;br /&gt;	link_parser(argv[1]);&lt;/p&gt;&lt;p class="mobile-post"&gt;	return 0;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;Hi Alan,&lt;br /&gt;         Greetings!&lt;/p&gt;&lt;p class="mobile-post"&gt;I could manage to write a basic outline of the link-parser(self-contained).&lt;br /&gt;I have output the tags and the way of identifying links. It will display&lt;br /&gt;tags &amp;lt;a&amp;gt; ,href and URL. Got enormous help from expat doc,files as well as&lt;br /&gt;digestp.c.&lt;/p&gt;&lt;p class="mobile-post"&gt;But these are yet to be done.&lt;br /&gt;- Check to See if the resource being pointed exists.&lt;br /&gt;- Generate link Report&lt;br /&gt;I shall be working on it as well.&lt;/p&gt;&lt;p class="mobile-post"&gt;Please find my linkparser.c below (and as an attached file):&lt;br /&gt;Let me know your comments:&lt;/p&gt;&lt;p class="mobile-post"&gt;---&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include&amp;lt;expat.h&amp;gt;&lt;br /&gt;#include&amp;lt;string.h&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;#define string_t char *&lt;br /&gt;#define XML_BUFFER_BLK 8192&lt;/p&gt;&lt;p class="mobile-post"&gt;void *&lt;br /&gt;memalloc(size_t n)&lt;br /&gt;{&lt;br /&gt;	void *mp;&lt;br /&gt;	int errno=0;&lt;br /&gt;	if((mp=(void *)calloc(n,sizeof(string_t)))==NULL)&lt;br /&gt;		fprintf(stderr,"Out of Memory");&lt;br /&gt;	return mp;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;static void&lt;br /&gt;link_start(void *data,const char *el,const char **attr)&lt;br /&gt;{&lt;br /&gt;	int i=0;&lt;br /&gt;	printf("\n&amp;lt;%s&amp;gt;",el);&lt;/p&gt;&lt;p class="mobile-post"&gt;	for(i=0;attr[i];i++)&lt;br /&gt;		printf("\n%s",*(attr+i));&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;static void&lt;br /&gt;link_end(void *data,const char *el)&lt;br /&gt;{&lt;br /&gt;	printf("\n&amp;lt;\\%s&amp;gt;\n\n",el);&lt;br /&gt;	/* why do we need this function */&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;int&lt;br /&gt;link_parser(string_t filename)&lt;br /&gt;{&lt;br /&gt;	XML_Parser parser;&lt;br /&gt;	char *xml_buf;&lt;br /&gt;	int flag;&lt;br /&gt;	size_t length;&lt;br /&gt;	FILE *fp;&lt;br /&gt;	string_t msg;&lt;/p&gt;&lt;p class="mobile-post"&gt;	if((fp=fopen(filename,"rb"))==NULL)&lt;br /&gt;	{&lt;br /&gt;		fprintf(stderr,"Could not open the file");&lt;br /&gt;		exit(-1);&lt;br /&gt;	}&lt;/p&gt;&lt;p class="mobile-post"&gt;	if((parser=XML_ParserCreate(NULL))==NULL)&lt;br /&gt;	{&lt;br /&gt;		fprintf(stderr,"Could not create the parser");&lt;br /&gt;		exit(-1);&lt;br /&gt;	}&lt;/p&gt;&lt;p class="mobile-post"&gt;	XML_SetElementHandler(parser,link_start,link_end);&lt;/p&gt;&lt;p class="mobile-post"&gt;	/* parse the document */&lt;/p&gt;&lt;p class="mobile-post"&gt;	xml_buf=(string_t)memalloc(XML_BUFFER_BLK+1);&lt;/p&gt;&lt;p class="mobile-post"&gt;	do&lt;br /&gt;	{&lt;br /&gt;		length=fread(xml_buf,1,XML_BUFFER_BLK,fp);&lt;br /&gt;		flag= length &amp;lt; strlen(xml_buf);&lt;/p&gt;&lt;p class="mobile-post"&gt;		if(XML_Parse(parser,xml_buf,length,flag)==XML_STATUS_ERROR)&lt;br /&gt;		{&lt;br /&gt;			fprintf(stderr,"Parse Error at line&lt;br /&gt;%d\n%s\n",XML_GetCurrentLineNumber(parser),XML_ErrorString(XML_GetErrorCode(parser)));&lt;br /&gt;			exit(-1);&lt;br /&gt;		}&lt;/p&gt;&lt;p class="mobile-post"&gt;	}while(!flag);&lt;/p&gt;&lt;p class="mobile-post"&gt;	return 0;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;int main(int argc,char **argv)&lt;br /&gt;{&lt;br /&gt;	link_parser(argv[1]);&lt;/p&gt;&lt;p class="mobile-post"&gt;	return 0;&lt;br /&gt;}&lt;/p&gt;&lt;p class="mobile-post"&gt;---&lt;/p&gt;&lt;p class="mobile-post"&gt;Warm Regards,&lt;br /&gt;Senthil&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;gt; Thanks for the update - I realise that it will take time to get up to&lt;br /&gt;&amp;gt; speed (there is a lot to read through ;)&lt;br /&gt;&amp;gt;&lt;br /&gt;&amp;gt; All the best,&lt;br /&gt;&amp;gt; Alan.&lt;br /&gt;&amp;gt;&lt;br /&gt;&amp;gt; senthil@puggy.symonds.net schrieb:&lt;br /&gt;&amp;gt; Alan,&lt;br /&gt;&amp;gt; Just to keep you updated. I am still reading the code,understanding and&lt;br /&gt;&amp;gt; trying to get started.&lt;br /&gt;&amp;gt; Understood the recent updates,which I viewed using cvs diff.&lt;br /&gt;&amp;gt; I shall email you with things I can puttogether and with the questions I&lt;br /&gt;&amp;gt; have.&lt;br /&gt;&amp;gt;&lt;br /&gt;&amp;gt; ~, just to keep you updated...&lt;br /&gt;&amp;gt;&lt;br /&gt;&amp;gt; Thanks a lot!&lt;br /&gt;&amp;gt; Senthil&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;&amp;gt; Thanks,&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; In that case I will assign you the link task. Don't worry about the&lt;br /&gt;&amp;gt;&amp;gt; other&lt;br /&gt;&amp;gt;&amp;gt; bugs (incl. -d) option for now as these are code stability details&lt;br /&gt;&amp;gt;&amp;gt; (rather&lt;br /&gt;&amp;gt;&amp;gt; than features) so I will clean them up as I would like to create a&lt;br /&gt;&amp;gt;&amp;gt; workable distribution tarball reasonably soon.&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; Now that you have installed, configured and got rapple to run then any&lt;br /&gt;&amp;gt;&amp;gt; feedback concerning the documentation on the web would also be useful&lt;br /&gt;&amp;gt;&amp;gt; (or&lt;br /&gt;&amp;gt;&amp;gt; indeed anything you think needs to be added to the faq).&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; Regards,&lt;br /&gt;&amp;gt;&amp;gt; Alan.&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; senthil@puggy.symonds.net schrieb:&lt;br /&gt;&amp;gt;&amp;gt; Hi Alan,&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; Yeah, I would like to work on this module.&lt;br /&gt;&amp;gt;&amp;gt; I have updated the rapple cvs and saw the digest file as well. But did&lt;br /&gt;&amp;gt;&amp;gt; not&lt;br /&gt;&amp;gt;&amp;gt; check the functionality yet.&lt;br /&gt;&amp;gt;&amp;gt; I shall work on both the parser and handler part. I was also looking&lt;br /&gt;&amp;gt;&amp;gt; into&lt;br /&gt;&amp;gt;&amp;gt; the -d option feature request.&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; I shall start the work on Monday, if it is ok with you. else, u can&lt;br /&gt;&amp;gt;&amp;gt; assign&lt;br /&gt;&amp;gt;&amp;gt; me any other other task as well.&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; I am going to attend my friends wedding tommrow and I will be back home&lt;br /&gt;&amp;gt;&amp;gt; only on Monday.&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; Thanks for explaining this to me. I have come across and coded few&lt;br /&gt;&amp;gt;&amp;gt; parser&lt;br /&gt;&amp;gt;&amp;gt; related snippets from K&amp;amp;R, Together with that and with the other rapple&lt;br /&gt;&amp;gt;&amp;gt; files, I think I should be able to do this.&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt; Regards,&lt;br /&gt;&amp;gt;&amp;gt; Senthil&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; Senthil,&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; Here is a suggestion for a self contained but&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; challenging task you might be interested in: do you&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; want to give a try at writing the link checker parser&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; (Task 115866) ?&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; The idea is that there are two files involved: a&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; parser and a handler. The handler invokes the parser&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; and passes files to it, e.g., the handler would&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; recursively traverse a directory tree and invoke the&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; parser on each transformable file it can find.&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; The parser is limited to processing inndividual files&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; but would work like this: it reads the input file and&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; scans it looking for certain elements that have&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; attributes that link to resources (e.g., "img", "a").&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; When it finds such an element it checks the&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; appropriate attribute (e.g., for "img" it is "src" and&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; for "a" it is "href") and checks to see if the&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; resource being pointed to exists (e.g., is the "src"&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; or "href" file present in the datastore). For now I&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; would not propose you check external links (e.g., if&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; "href" begins with "http://" then just ignore it and&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; also ignore "mailto:" links etc.) The parser should&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; generate a link report as it goes along (perhaps just&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; naming files that are missing).&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; If you have never worked with parsers before (they can&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; be a bit confusing at first) then take a look at&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; "digestp.*" files (which are the parsers) and&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; "catalog.*" (which are handlers) for the digest parser&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; I wrote last weekend (you will have to update your&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; local working copies if you have not done so&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; recently).&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; If you like I can write the handler for you so that&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; you can focus on the parser - other parser examples&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; can be found in the examples directory of the expat&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; source code.&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; Let me know what you think.&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; Regards,&lt;br /&gt;&amp;gt;&amp;gt;&amp;gt; Alan.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111965055308671242?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111965055308671242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111965055308671242' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111965055308671242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111965055308671242'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/re-ant-re-ant-re-link-checker-task.html' title='Re: Ant:  Re: Ant:  Re: link checker task ?'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111954461677616245</id><published>2005-06-23T21:54:00.000+05:30</published><updated>2005-06-23T22:11:09.620+05:30</updated><title type='text'>Cntl + Alt +Fn* Does not work in Fedora Core 4</title><content type='html'>Yeah, I faced it and there was a &lt;a href="https://www.redhat.com/archives/fedora-test-list/2005-June/msg00683.html"&gt;discussion&lt;/a&gt; about this at the Fedora Core list as well.&lt;br /&gt;&lt;br /&gt;But thing is this is a &lt;a href="https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=160470"&gt;&lt;span style="font-weight: bold;"&gt;bug in Fedora Core 4&lt;/span&gt;&lt;/a&gt;.Quite a serious one dude, especially if you cant switch to Virtual Terminal after X has loaded using Cntl+Alt+Fn.Finger poining to &lt;a href="https://bugs.freedesktop.org/show_bug.cgi?id=2991"&gt;Somebug &lt;/a&gt;in  latest X.org offering will not do.&lt;br /&gt;&lt;br /&gt;For people who have stumbled here, try the below suggestion. It worked for me.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;From Mike A. Harris     &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;Bojan:  Please try replacing the libvgahw.a module (after backing up the&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;original), with the following one:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="ftp://people.redhat.com/mharris/libvgahw.a"&gt;ftp://people.redhat.com/mharris/libvgahw.a&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;This one is taken from the latest FC3 errata release, and many people&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;claim it solves the problem.  If you could confirm this for me, it would&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;help us in solving the problem for a future update.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:times new roman;"&gt;Thanks in advance.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111954461677616245?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111954461677616245/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111954461677616245' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111954461677616245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111954461677616245'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/cntl-alt-fn-does-not-work-in-fedora.html' title='Cntl + Alt +Fn* Does not work in Fedora Core 4'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111953786784496345</id><published>2005-06-23T20:11:00.000+05:30</published><updated>2005-06-23T20:14:27.850+05:30</updated><title type='text'>Genesis</title><content type='html'>&lt;center&gt;&lt;img src="http://photos17.flickr.com/21103007_6b198bb249_o.png" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;Imagine a world as being covered with a dark atmosphere, choking with smoke and clouds, air so thick that no light could glimmer through it - well, this is what our earth would soon look like. The black background symbolizes this darkness, pollution, smoke and all the bad elements arising out of man's creation.&lt;br /&gt;&lt;br /&gt;With growing temperature, rising global warming, ozone layer depletion, and the earth is becoming a ball of fire. The varying shades of yellow, orange and red in concentric circles depict the exponential growth of the intensity of fire with time.&lt;br /&gt;&lt;br /&gt;To prevent his cherished creation going in perils, God comes to rescue. This super human power extends his hand to help mankind. His touch creates a spark, giving rise to a strong thought of a new green revolution on earth. Man needs to be aware of this to bring back the old greener earth where he lived. As this small thought gets created on each human mind, the beautiful twigs sprout into tender green leaves.&lt;br /&gt;&lt;br /&gt;Let this GENESIS of thought for a "green revolution" be deep rooted in the human mind.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;- Collage by Praveen,Aarthi,Raj and Senthil prepared for the Environment day.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111953786784496345?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111953786784496345/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111953786784496345' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111953786784496345'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111953786784496345'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/genesis.html' title='Genesis'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111943788517534623</id><published>2005-06-22T16:24:00.000+05:30</published><updated>2005-06-23T00:41:13.993+05:30</updated><title type='text'>To known only uncommented lines</title><content type='html'>Whenever I look at any config files, it has some settings as well as comments on it.&lt;br /&gt;Now I want to extract only the settings to a different file to concentrate on it,add more,delete etc. and keep the commented file for reference only.&lt;br /&gt;How do I separate the settings from the comments.&lt;br /&gt;For eg, In /etc/Muttrc&lt;br /&gt;#&lt;br /&gt;# System configuration file for Mutt&lt;br /&gt;#&lt;br /&gt;&lt;br /&gt;# default list of header fields to weed when displaying&lt;br /&gt;#&lt;br /&gt;ignore "from " received content- mime-version status x-status message-id&lt;br /&gt;ignore sender references return-path lines&lt;br /&gt;&lt;br /&gt;# imitate the old search-body function&lt;br /&gt;macro index \eb '/~b ' 'search in message bodies'&lt;br /&gt;---------------------------------------&lt;br /&gt;&lt;br /&gt;Separate the following lines from above.&lt;br /&gt;&lt;br /&gt;ignore "from " received content- mime-version status x-status message-id&lt;br /&gt;ignore sender references return-path lines&lt;br /&gt;macro index \eb '/~b ' 'search in message bodies'&lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;center&gt;&lt;b&gt;:g/^#/d&lt;/b&gt;&lt;/center&gt;&lt;br&gt;&lt;br&gt;and then saving to a different file should do.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111943788517534623?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111943788517534623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111943788517534623' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111943788517534623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111943788517534623'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/to-known-only-uncommented-lines.html' title='To known only uncommented lines'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111941969784255648</id><published>2005-06-22T11:21:00.000+05:30</published><updated>2005-06-22T11:24:57.846+05:30</updated><title type='text'>man page under vim</title><content type='html'>&lt;span style="font-weight: bold;"&gt;&amp;lt;leader&amp;gt; K  &lt;/span&gt;- thats it!&lt;br /&gt;&lt;br /&gt; which means that the cursor is under the topic and you press Capital K.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111941969784255648?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111941969784255648/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111941969784255648' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111941969784255648'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111941969784255648'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/man-page-under-vim.html' title='man page under vim'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111928983549822312</id><published>2005-06-20T23:13:00.000+05:30</published><updated>2005-06-20T23:20:35.503+05:30</updated><title type='text'>ctags and some vim stuff</title><content type='html'>If you are editing a C program using vim, then create a tag file using &lt;span style="font-weight: bold;"&gt;ctags&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;       :!ctags .   [ . for the current file ]&lt;br /&gt;       OR&lt;br /&gt;       :!ctags *   [ * for all the .c and .h files, if you are in a src directory]&lt;br /&gt;&lt;br /&gt;Now, the next time you stumble across a function name,variable name and you want to know its declaration, then just do a CNRL + ]. Thats it! Quite useful.&lt;br /&gt;&lt;br /&gt;Another feature of Vim is Auto-completion. for example&lt;br /&gt;#include&amp;lt;expat.h&amp;gt; has number of XML related declarations typing the first few characters of variable and then doing CNTL+N&lt;br /&gt;should provide you list for the auto-completion. Interesting, huh?&lt;br /&gt;&lt;br /&gt;XML_ERROR_JUNK_AFTER_DOC_ELEMENT&lt;br /&gt;XML_SetProcessingInstructionHandler&lt;br /&gt;XML_SetUnparsedEntityDeclHandler&lt;br /&gt;XML_SetExternalEntityRefHandlerArg&lt;br /&gt;&lt;br /&gt;I could have never typed the above properly (without losing my sense, CNTL+N helped me)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;...creating a tags file is the first thing I do when browsing a program&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;                                                                        - Bram Moolenar in Vim: Seven habits of effective text editing.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111928983549822312?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111928983549822312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111928983549822312' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111928983549822312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111928983549822312'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/ctags-and-some-vim-stuff.html' title='ctags and some vim stuff'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111928937878911164</id><published>2005-06-20T23:04:00.000+05:30</published><updated>2005-06-20T23:12:58.806+05:30</updated><title type='text'>gt</title><content type='html'>This is gt a shell script in my /usr/local/bin&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;&lt;br /&gt;# Calling gnome-terminal which fills the display area&lt;br /&gt;# hides the menu bar&lt;br /&gt;# when used as a startup, this would give a terminal over the X&lt;br /&gt;# Thus helping the people who have the habit of opening the gnome-terminal the first thing, they login in init 5.&lt;br /&gt;# Those kind prefer init 3 in the /etc/initrd, but this script should help provide a near possible setup ;)&lt;br /&gt;&lt;br /&gt;exec gnome-terminal  --geometry=125x39+0+0 --hide-menubar --tab --active  --tab --tab&lt;br /&gt;&lt;br /&gt;exit 0&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;I have put this script to load as a startup program in GNOME using &lt;span style="font-weight: bold;"&gt;gnome-session-properties.&lt;/span&gt;&lt;br /&gt;looking for command line way to include scripts / bins in the startup (when X starts).&lt;br /&gt;Peeking through. the &lt;span style="font-weight: bold;"&gt;.gnome2 &lt;/span&gt;in the &lt;span style="font-weight: bold;"&gt;~/ &lt;/span&gt;had some file  called &lt;span style="font-weight: bold;"&gt;session-manual&lt;/span&gt; which had&lt;br /&gt;&lt;br /&gt;[Default]&lt;br /&gt;num_clients=2&lt;br /&gt;0,RestartStyleHint=3&lt;br /&gt;0,Priority=50&lt;br /&gt;0,RestartCommand=/usr/bin/firefox&lt;br /&gt;1,RestartStyleHint=3&lt;br /&gt;1,Priority=50&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1,RestartCommand=/usr/local/bin/gt&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;As always, there should be a better way, a more understandable way, to include a script/ bin to start automatically at the startup.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;~&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111928937878911164?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111928937878911164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111928937878911164' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111928937878911164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111928937878911164'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/gt.html' title='gt'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111814796330060249</id><published>2005-06-07T17:57:00.000+05:30</published><updated>2005-06-07T18:11:53.870+05:30</updated><title type='text'>Commenting Lines using vim for bash,conf file etc</title><content type='html'>It was needed that I comment a number of lines in a file. The comments of a configuration file are usally like a # in the begining of the line.&lt;br /&gt;So&lt;br /&gt;Line 1&lt;br /&gt;Line 2&lt;br /&gt;Line 3&lt;br /&gt;Should become&lt;br /&gt;&lt;br /&gt;#Line 1&lt;br /&gt;#Line 2&lt;br /&gt;#Line 3&lt;br /&gt;&lt;br /&gt;HOWTO:&lt;br /&gt;&lt;br /&gt;1) Go to the First Column of the First Line.&lt;br /&gt;2) Select the Block using &lt;span style="font-weight: bold;"&gt;cntl-v&lt;/span&gt; (for Linux) and cntl-q(for Windows, because cntl-v  is mapped to paste function in gvim under windows)&lt;br /&gt;3) With the Selected test, give the command &lt;span style="font-weight: bold;"&gt;:s/^/#/&lt;br /&gt;&lt;/span&gt;4) That should do!&lt;br /&gt;&lt;br /&gt;But vim users always look for yet another way, so I am.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111814796330060249?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111814796330060249/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111814796330060249' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111814796330060249'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111814796330060249'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/commenting-lines-using-vim-for.html' title='Commenting Lines using vim for bash,conf file etc'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111805969923013968</id><published>2005-06-06T17:36:00.000+05:30</published><updated>2005-06-06T17:38:19.236+05:30</updated><title type='text'>Changeformat.sh</title><content type='html'>#!/bin/sh&lt;br /&gt;&lt;br /&gt;# Change the Format from the &lt;a href="http://en.wikipedia.org/wiki/Ogg"&gt;ogg&lt;/a&gt; files in a directory to &lt;a href="http://en.wikipedia.org/wiki/AIFF"&gt;aiff&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;for i in `ls -1 *.ogg`&lt;br /&gt;do&lt;br /&gt;    sox $i `echo $i|sed -e "s/ogg/aiff/"`&lt;br /&gt;&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;exit 0&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111805969923013968?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111805969923013968/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111805969923013968' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111805969923013968'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111805969923013968'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/changeformatsh.html' title='Changeformat.sh'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111800222268852535</id><published>2005-06-06T01:29:00.000+05:30</published><updated>2005-06-06T01:40:22.696+05:30</updated><title type='text'>Rapple</title><content type='html'>&lt;a style="font-family: times new roman; color: rgb(0, 0, 153);" href="http://sourceforge.net/projects/rapple/"&gt;Rapple &lt;/a&gt;&lt;span style="font-family: times new roman;"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;is Lightweight XML based transformation tool written in C that builds upon expat, tidylib and XSLT to tranform authored web content (incl. Word processor generated HTML) into styled web content suitable for publication. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: georgia;"&gt;&lt;br /&gt;Its a nice feeling when becoming &lt;a href="http://sourceforge.net/project/memberlist.php?group_id=129927"&gt;member&lt;/a&gt; of a sourceforge project. &lt;br /&gt;Thanks a  lot &lt;a href="http://sourceforge.net/people/viewprofile.php?user_id=1206856"&gt;Alan&lt;/a&gt;, for including me in the development list.&lt;/span&gt;&lt;/span&gt;&lt;span class="" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;Try the &lt;a href="http://rapple.sourceforge.net/demo/demo.html"&gt;Rapple Demo&lt;/a&gt; now!!&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111800222268852535?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://rapple.sourceforge.net/' title='Rapple'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111800222268852535/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111800222268852535' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111800222268852535'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111800222268852535'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/06/rapple.html' title='Rapple'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111736666765671569</id><published>2005-05-29T17:05:00.000+05:30</published><updated>2005-05-29T17:07:47.663+05:30</updated><title type='text'>NECSUS</title><content type='html'>So the &lt;a href="http://necsus.port5.com"&gt;NECSUS&lt;/a&gt; website is up and running. After a long time, I have donw something with webthing now.&lt;br /&gt;Hi NEC'ians please have a look at &lt;a href="http://necsus.port5.com"&gt;NECSUS.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111736666765671569?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://necsus.port5.com' title='NECSUS'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111736666765671569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111736666765671569' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111736666765671569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111736666765671569'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/necsus.html' title='NECSUS'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111728875536115120</id><published>2005-05-28T19:22:00.000+05:30</published><updated>2005-05-28T19:29:15.406+05:30</updated><title type='text'>Forming a Habit</title><content type='html'>Somewhere I seem to have read that doing something regularly for 21 continuous days forms a habit in you.&lt;br /&gt;Well, I am going to try it from today. Long desired habit and somewhat tough.&lt;br /&gt;So. trying to get my arse pained by sitting at the same place continuosly for some defined number of hours.&lt;br /&gt;&lt;br /&gt;Tried with Google Adsense at number of places today. This blog. At &lt;br /&gt;&lt;a href="http://necsus.port5.com"&gt;necsus&lt;/a&gt; and would be making the &lt;a href="http://uthcode.sarovar.org"&gt;Uthcode&lt;/a&gt; thing as well. I had put Uthcode in my resume, but I would like to remove it. I would like to concentrate on it a different entity in itself.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111728875536115120?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111728875536115120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111728875536115120' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111728875536115120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111728875536115120'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/forming-habit.html' title='Forming a Habit'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111683532457994951</id><published>2005-05-23T13:19:00.000+05:30</published><updated>2005-05-23T13:32:04.676+05:30</updated><title type='text'>The Revenge of the Sith</title><content type='html'>&lt;img src="http://photos9.flickr.com/15239228_c9bc53559d_o.jpg"&gt; &lt;br /&gt;Got interested after these much hype over the &lt;a href="http://en.wikipedia.org/wiki/Star_Wars"&gt;StarWars&lt;/a&gt; thingy.  The Movie was interesting indeed and gave some reminiscences of, especially the Galatic Congress, the previous phantom Menace I watched at the Same theatre( Mappilai Vinayakar at Madurai).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111683532457994951?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111683532457994951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111683532457994951' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111683532457994951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111683532457994951'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/revenge-of-sith.html' title='The Revenge of the Sith'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111683440326051012</id><published>2005-05-23T13:10:00.000+05:30</published><updated>2005-05-23T13:16:44.856+05:30</updated><title type='text'>Train to Pakistan</title><content type='html'>&lt;img src="http://photos13.flickr.com/15239565_2ce7ca7238_o.jpg"&gt;&lt;br /&gt;Train to Pakistan is a descriptive account of incidents during the partition at village called Mano Majra at the Borders of India and Pakistan. The novel is a satire and sometimes gives you a feeling as why Kushwant Singh needs to unncessarily explain all these vulgarities.But they try to give a real picture of what had happened. The book might as well leave an impact on your thoughts.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111683440326051012?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111683440326051012/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111683440326051012' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111683440326051012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111683440326051012'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/train-to-pakistan.html' title='Train to Pakistan'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111626037965120014</id><published>2005-05-16T21:46:00.000+05:30</published><updated>2005-05-16T21:49:39.713+05:30</updated><title type='text'>Is ``int* p;'' right or is ``int *p;'' right?</title><content type='html'>Both are "right" in the sense that both are valid C and C++ and both have exactly the same meaning. As far as the language definitions and the compilers are concerned we could just as well say ``int*p;'' or ``int * p;'' &lt;p&gt; The choice between ``int* p;'' and ``int *p;'' is not about right and wrong, but about style and emphasis. C emphasized expressions; declarations were often considered little more than a necessary evil. C++, on the other hand, has a heavy emphasis on types. &lt;/p&gt; &lt;p&gt; A ``typical C programmer'' writes ``int *p;'' and explains it ``*p is what is the int'' emphasizing syntax, and may point to the C (and C++) declaration grammar to argue for the correctness of the style. Indeed, the * binds to the name p in the grammar. &lt;/p&gt; &lt;p&gt; A ``typical C++ programmer'' writes ``int* p;'' and explains it ``p is a pointer to an int'' emphasizing type. Indeed the type of p is int*. I clearly prefer that emphasis and see it as important for using the more advanced parts of C++ well. &lt;/p&gt; &lt;p&gt; The critical confusion comes (only) when people try to declare several pointers with a single declaration: &lt;/p&gt; &lt;pre&gt; int* p, p1; // probable error: p1 is not an int*&lt;br /&gt;&lt;/pre&gt;  Placing the * closer to the name does not make this kind of error significantly less likely. &lt;pre&gt; int *p, p1; // probable error?&lt;br /&gt;&lt;/pre&gt; Declaring one name per declaration minimizes the problem - in particular when we initialize the variables. People are far less likely to write: &lt;pre&gt; int* p = &amp;i;&lt;br /&gt; int p1 = p; // error: int initialized by int*&lt;br /&gt;&lt;/pre&gt; And if they do, the compiler will complain. Whenever something can be done in two ways, someone will be confused. Whenever something is a matter of taste, discussions can drag on forever. Stick to one pointer per declaration and always initialize variables and the source of confusion disappears.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.research.att.com/%7Ebs/homepage.html"&gt;Bjarne Stroustrup&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111626037965120014?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.research.att.com/~bs/bs_faq2.html#whitespace' title='Is ``int* p;&apos;&apos; right or is ``int *p;&apos;&apos; right?'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111626037965120014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111626037965120014' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111626037965120014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111626037965120014'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/is-int-p-right-or-is-int-p-right.html' title='Is ``int* p;&apos;&apos; right or is ``int *p;&apos;&apos; right?'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111614396168002468</id><published>2005-05-15T13:27:00.000+05:30</published><updated>2005-05-15T13:31:12.846+05:30</updated><title type='text'>Marathon</title><content type='html'>&lt;img style="width: 464px; height: 285px;" src="http://photos10.flickr.com/13937041_c4939cdf16_o.png" /&gt;&lt;br /&gt;&lt;br /&gt;I was there  running the celebration run of 7km with few friends and thousands of lively Bangaloreans.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111614396168002468?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111614396168002468/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111614396168002468' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111614396168002468'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111614396168002468'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/marathon.html' title='Marathon'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111607817683467760</id><published>2005-05-14T19:09:00.000+05:30</published><updated>2005-05-14T19:12:56.840+05:30</updated><title type='text'>You and Your Research</title><content type='html'>&lt;p style="font-style: italic;"&gt;&lt;br /&gt;Question: Would you compare research and management? &lt;/p&gt;  &lt;p style="font-style: italic;"&gt;Hamming: If you want to be a great researcher, you won't make it being  president of the company. If you want to be president of the company, that's  another thing. I'm not against being president of the company. I just don't want  to be. I think Ian Ross does a good job as President of Bell Labs. I'm not  against it; but you have to be clear on what you want. Furthermore, when you're  young, you may have picked wanting to be a great scientist, but as you live  longer, you may change your mind. For instance, I went to my boss, Bode, one day  and said, ``Why did you ever become department head? Why didn't you just be a  good scientist?'' He said, ``Hamming, I had a vision of what mathematics should  be in Bell Laboratories. And I saw if that vision was going to be realized,  I had to make it happen; I had to be department head.'' When your  vision of what you want to do is what you can do single-handedly, then you  should pursue it. The day your vision, what you think needs to be done, is  bigger than what you can do single-handedly, then you have to move toward  management. And the bigger the vision is, the farther in management you have to  go. If you have a vision of what the whole laboratory should be, or the whole  Bell System, you have to get there to make it happen. You can't make it happen  from the bottom very easily. It depends upon what goals and what desires you  have. And as they change in life, you have to be prepared to change. I chose to  avoid management because I preferred to do what I could do single-handedly. But  that's the choice that I made, and it is biased. Each person is entitled to  their choice. Keep an open mind. But when you do choose a path, for heaven's  sake be aware of what you have done and the choice you have made. Don't try to  do both sides.&lt;br /&gt;&lt;/p&gt; &lt;p style="font-style: italic;"&gt;&lt;a style="font-weight: bold;" href="http://www.cs.virginia.edu/%7Erobins/YouAndYourResearch.html"&gt;Richard Hamming&lt;/a&gt;&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-111607817683467760?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cs.virginia.edu/~robins/YouAndYourResearch.html' title='You and Your Research'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111607817683467760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111607817683467760' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111607817683467760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111607817683467760'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/you-and-your-research.html' title='You and Your Research'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111540524282055584</id><published>2005-05-07T00:10:00.000+05:30</published><updated>2005-05-07T00:17:22.996+05:30</updated><title type='text'>PSLV-C6 and Our Dear President.</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;img src="http://www.hindu.com/2005/05/06/images/2005050608210101.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.hindu.com/2005/05/06/images/2005050608200101.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;i&gt;With &lt;a href="http://www.hindu.com/2005/05/06/stories/2005050608210100.htm"&gt;President Kalam&lt;/a&gt; as witness, &lt;a href="http://www.hindu.com/2005/05/06/stories/2005050608200100.htm"&gt;PSLV-C6&lt;/a&gt; puts two satellites into polar orbit.&lt;/i&gt;&lt;br /&gt;&lt;/div&gt; &lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111540524282055584?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111540524282055584/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111540524282055584' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111540524282055584'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111540524282055584'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/pslv-c6-and-our-dear-president.html' title='PSLV-C6 and Our Dear President.'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111497802443110664</id><published>2005-05-02T01:31:00.000+05:30</published><updated>2005-05-02T01:37:04.433+05:30</updated><title type='text'>Did a Bungee</title><content type='html'>&lt;img src="http://www.top.si/icons/jump.gif" /&gt;&lt;br /&gt;Did a Bungee Jump today. Me and Raj.&lt;br /&gt;&lt;br /&gt;The first free fall from 140 meters above was terrific. I watched and felt the surroundings when I went up. The night lights, the traffic,the road and people far below. Just when I got ready, the guy incharge of the Jump pushed me down.&lt;br /&gt;It was like &lt;span style="font-size:180%;"&gt;Woah.....&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111497802443110664?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111497802443110664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111497802443110664' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111497802443110664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111497802443110664'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/05/did-bungee.html' title='Did a Bungee'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111432937382582271</id><published>2005-04-24T13:14:00.000+05:30</published><updated>2005-04-24T13:26:13.826+05:30</updated><title type='text'>Notes</title><content type='html'>Two hardware problems were in my mind before I slept. It  did not trouble me though.&lt;br /&gt;One was iPod suffle light blinking red-yellow on pressing any button and no play of songs. Wondered what had happened. Did I dosomething wrong when disconnecting? Any USB related issue traveled from my comp to ipod? Well, decided let me figure out tommorow and left it.&lt;br /&gt;Went home, saw a burn kind of display around my monitor. The lower right corner was faded. whats happened here.? Carried on and did not much bother and slept.&lt;br /&gt;Morning reconnected everything with the computer. Reset stuffs and booted up, Noticed the same again.Showed this to Karthick and while we were talking about that. I switched off the monitor completely using its switch and then switched back again. &lt;br /&gt;Now it is proper!. left it. Hey Monitor are you ageing? barely you are 2 years old man!&lt;br /&gt;&lt;br /&gt;Ipod suffle: googled for ipod shuffled troubleshooting.&lt;br /&gt;The same symptoms were present. Noticed something that iPod shuffle songs were not being shown my.&lt;br /&gt;Previously I had cleaned iTunes Playlist to remove all teh songs and was adding songs in small quantities.&lt;br /&gt;This way I had cleaned the Library.&lt;br /&gt;Ipod &lt;a href="http://www.apple.com/support/ipodshuffle/reference/"&gt;shuffle reference card &lt;/a&gt;showed that for error kind of behaviour, load songs or reset Ipod.&lt;br /&gt;The problem was detected. Load Songs.&lt;br /&gt;How did it go?&lt;br /&gt;well, I and iTunes sync with iPod and when I had connected it for charging, it had synced with iTunes Library (which is empty).&lt;br /&gt;So thats it, Now playing&lt;span style="font-style:italic;"&gt; " September Matham.September Matham.. Valzhvin thunbattai tholaithu vittom "... &lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111432937382582271?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111432937382582271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111432937382582271' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111432937382582271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111432937382582271'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/04/notes.html' title='Notes'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111374096350909397</id><published>2005-04-17T17:51:00.000+05:30</published><updated>2005-04-17T17:59:23.510+05:30</updated><title type='text'>Network Install of Fedora Core</title><content type='html'>Tried with a Network Install of &lt;a href="http://fedora.redhat.com/download/test.html"&gt;Fedora Core 4 Test 2&lt;/a&gt;. Not from the Fedora Download Server, but from the internal server where Linux isos are kept.&lt;br /&gt;&lt;br /&gt;Network Install is easy as breeze.&lt;br /&gt;There was  directory called os where all the rpms,srpms where located.&lt;br /&gt;&lt;br /&gt;1) Download and Write boot.iso. This was present inside: /os/images/&lt;br /&gt;2) Boot using boot cd and select Network Install option ( I selected http)&lt;br /&gt;3) Determines the DHCP, prompts for the Server name or IP and then Folder in which the Fedora Packages for the architecture are located.&lt;br /&gt;4) Rest of Install is same as you with the cd.&lt;br /&gt;&lt;br /&gt;Difference between network install and cd based install is, you dont have to download and write CDs and the network install is slower than install using cds. ( you can start the install at night,go to sleep and get the Fedora System up in the morning).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111374096350909397?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111374096350909397/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111374096350909397' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111374096350909397'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111374096350909397'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/04/network-install-of-fedora-core.html' title='Network Install of Fedora Core'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111365001759961019</id><published>2005-04-16T16:43:00.000+05:30</published><updated>2005-04-16T16:47:57.260+05:30</updated><title type='text'>Queen's Gambit Accepted</title><content type='html'>&lt;center&gt;&lt;a href="http://en.wikipedia.org/wiki/Queen%27s_Gambit_Accepted"&gt;Wikipedia Entry&lt;/a&gt;&lt;/center&gt; "The Queen's Gambit Accepted, commonly abbreviated to QGA, is a chess opening characterized by the opening moves 1.d4 d5 2.c4 dxc4. Black's capture of the white c-pawn may also occur one or two moves later.&lt;br /&gt;&lt;br /&gt;The Queen's Gambit is not a real gambit, since Black cannot count on keeping his extra pawn. If White wants to take the pawn back immediately he can play 3.Qa4  Nc6 4.e3 and Black cannot hold on to his extra pawn. However, since playing like this develops the queen somewhat prematurely, White usually plays a bit more patiently"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111365001759961019?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://en.wikipedia.org/wiki/Queen%27s_Gambit_Accepted' title='Queen&apos;s Gambit Accepted'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111365001759961019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111365001759961019' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111365001759961019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111365001759961019'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/04/queens-gambit-accepted.html' title='Queen&apos;s Gambit Accepted'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111340065433383164</id><published>2005-04-13T19:17:00.000+05:30</published><updated>2005-04-13T19:27:34.333+05:30</updated><title type='text'>I,II and III WW</title><content type='html'>Its been said that the First World War was chemist's war,because mustard gas and chlorine were employed for the first time, and that the Second World War was the physicist's war,because the atom bomb was detonated. Similarly, it has been argued that the Third World War would be the mathematician's war, because mathematicians will have control over the next great weapon of war - information.&lt;br /&gt;&lt;br /&gt;Started with a good book...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111340065433383164?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111340065433383164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111340065433383164' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111340065433383164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111340065433383164'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/04/iii-and-iii-ww.html' title='I,II and III WW'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111328290211337610</id><published>2005-04-12T10:36:00.000+05:30</published><updated>2005-04-12T10:45:02.116+05:30</updated><title type='text'>Internet through Tata Indicom</title><content type='html'>Using LG LSP -345 &lt;br /&gt;To Connect to Internet, got the help from &lt;a href="http://geocities.com/avinashbrathod/linux/"&gt;avinashbrathod's page.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;On Fedora Core 3:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Step 1: Setup wvdial.conf&lt;/span&gt;&lt;br /&gt;#cat /etc/wvdial.conf&lt;br /&gt;[Modem0]&lt;br /&gt;Modem=/dev/ttyS0&lt;br /&gt;Baud=115200&lt;br /&gt;SetVolume=0&lt;br /&gt;Dial Command = ATDT&lt;br /&gt;init1=ATZ&lt;br /&gt;init2=AT+CRM=1&lt;br /&gt;FlowControl=Hardware(CRTSCTS)&lt;br /&gt;[Dialer Indicom]&lt;br /&gt;Username=internet&lt;br /&gt;Password=internet&lt;br /&gt;Phone=#777&lt;br /&gt;Stupid Mode=1&lt;br /&gt;Inherits = Modem0&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Step 2:&lt;br /&gt;#wvdial Indicom&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;[root@localhost Modem]# wvdial indicom&lt;br /&gt;--&gt; WvDial: Internet dialer version 1.54.0&lt;br /&gt;--&gt; Initializing modem.&lt;br /&gt;--&gt; Sending: ATZ&lt;br /&gt;--&gt; Sending: ATQ0&lt;br /&gt;ATQ0&lt;br /&gt;OK&lt;br /&gt;--&gt; Re-Sending: ATZ&lt;br /&gt;ATZ&lt;br /&gt;OK&lt;br /&gt;--&gt; Initializing modem.&lt;br /&gt;--&gt; Sending: ATZ&lt;br /&gt;--&gt; Sending: ATQ0&lt;br /&gt;ATQ0&lt;br /&gt;OK&lt;br /&gt;--&gt; Re-Sending: ATZ&lt;br /&gt;ATZ&lt;br /&gt;OK&lt;br /&gt;--&gt; Initializing modem.&lt;br /&gt;--&gt; Sending: ATZ&lt;br /&gt;ATZ&lt;br /&gt;OK&lt;br /&gt;--&gt; Sending: AT+CRM=1&lt;br /&gt;AT+CRM=1&lt;br /&gt;OK&lt;br /&gt;--&gt; Modem initialized.&lt;br /&gt;--&gt; Sending: ATDT#777&lt;br /&gt;--&gt; Waiting for carrier.&lt;br /&gt;ATDT#777&lt;br /&gt;CONNECT&lt;br /&gt;--&gt; Carrier detected.  Starting PPP immediately.&lt;br /&gt;--&gt; Starting pppd at Tue Apr 12 10:43:17 2005&lt;br /&gt;--&gt; pid of pppd: 3613&lt;br /&gt;--&gt; Using interface ppp0&lt;br /&gt;&lt;br /&gt;&lt;i&gt; Ip addresses will be displayed. &lt;br&gt; This will have Primary DNS and Secondary DNS Addresses as well &lt;/i&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Step 3: Copy the Primary DNS and Secondary DNS address to /etc/resolv.conf&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;nameserver [primary DNS]&lt;br /&gt;nameserver [primary DNS]&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Step 4: Shoot your FireFox and &lt;a href="http://usr.blogspot.com"&gt;Go&lt;/a&gt;.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111328290211337610?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111328290211337610/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111328290211337610' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111328290211337610'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111328290211337610'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/04/internet-through-tata-indicom.html' title='Internet through Tata Indicom'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111264676891583242</id><published>2005-04-05T02:02:00.000+05:30</published><updated>2005-04-05T02:02:48.916+05:30</updated><title type='text'>iPod Shuffle</title><content type='html'>&lt;style type="text/css"&gt;.flickr-photo { border: solid 2px #000000; }.flickr-yourcomment { }.flickr-frame { text-align: left; padding: 3px; }.flickr-caption { font-size: 0.8em; margin-top: 0px; }&lt;/style&gt;&lt;div class="flickr-frame"&gt;	&lt;a href="http://www.flickr.com/photos/phoe6/8451338/" title="photo sharing"&gt;&lt;img src="http://photos6.flickr.com/8451338_220ad335f1.jpg" class="flickr-photo" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;	&lt;span class="flickr-caption"&gt;&lt;a href="http://www.flickr.com/photos/phoe6/8451338/"&gt;Shuffle&lt;/a&gt;, originally uploaded by &lt;a href="http://www.flickr.com/people/phoe6/"&gt;phoe6&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;				&lt;p class="flickr-yourcomment"&gt;	&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111264676891583242?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111264676891583242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111264676891583242' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111264676891583242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111264676891583242'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/04/ipod-shuffle.html' title='iPod Shuffle'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111150852344705156</id><published>2005-03-22T21:50:00.000+05:30</published><updated>2005-03-22T21:52:03.446+05:30</updated><title type='text'>kihon- kumite-kata. Hosu!</title><content type='html'>私は 空手道  学び始めた  &lt;a href="http://en.wikipedia.org/wiki/Karate"&gt;.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111150852344705156?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://en.wikipedia.org/wiki/Karate' title='kihon- kumite-kata. Hosu!'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111150852344705156/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111150852344705156' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111150852344705156'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111150852344705156'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/kihon-kumite-kata-hosu.html' title='kihon- kumite-kata. Hosu!'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111129829797746819</id><published>2005-03-20T11:01:00.000+05:30</published><updated>2005-03-20T11:28:17.980+05:30</updated><title type='text'>The Man who became one with Universal Being</title><content type='html'>Mahatma Gandhi,&lt;br /&gt;The man who became one with Universal Being.&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.vedamsbooks.com/images/no34138.jpg"&gt;&lt;br /&gt;&lt;br /&gt;This book describes Mahatma in the views of a western thinker,philosopher,disciple and friend in&lt;a href="http://en.wikipedia.org/wiki/Romain_Rolland"&gt; Romain Rolland&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The book begins with praise for Mahatma, is filled with lots and lots of details surrounding Gandhi,Tagore and others and ends with absolute praise.&lt;br /&gt;&lt;br /&gt;It says:&lt;br /&gt;&lt;i&gt; " This was Gandhi's message, The only thing which is missing is a Cross."&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Awe!&lt;br /&gt;&lt;br /&gt;Also gives details about Gandhi's thought and methods which could be said ( and many criticized) as medieval ways.&lt;br /&gt;&lt;br /&gt;Other details which are described as Gandhi toiled for 20 years in South Africa before coming to India or being public known is worth knowing as Rolland points out ( well in 1920) that day's politicians are short-sighted and people yearn for immediate results.&lt;br /&gt;&lt;br /&gt;Gandhi pulling out of Bardoli andolan when violence broke at Chauri Chora; the plans had united the whole India against British and for Swades. Many people opposed Gandhi for bringing down at such a stage.&lt;br /&gt;Gandhi keeping on to his philosophy  with the means ( as Non-Violence and civil-disobedience) should be met and did not keep the thought at End (India against British).&lt;br /&gt;&lt;br /&gt;Points out well that: &lt;i&gt;" Days were when Might was powerful over Right. And today &lt;span style="font-style:italic;"&gt;(1924!)&lt;/span&gt; Might is Right. And this man is proving otherwise."&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111129829797746819?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111129829797746819/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111129829797746819' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111129829797746819'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111129829797746819'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/man-who-became-one-with-universal.html' title='The Man who became one with Universal Being'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111112921355915335</id><published>2005-03-18T12:21:00.000+05:30</published><updated>2005-03-20T11:01:06.456+05:30</updated><title type='text'>Captured Unix time 1111111111</title><content type='html'>&lt;a href="http://photos5.flickr.com/6761548_645d3fb5aa_o.png"&gt;&lt;img src="http://photos5.flickr.com/6761548_645d3fb5aa_m.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Well its like being there during 22/2/2222! Just for a rough comparision to Gagan whom I found very difficult to persuade as to whats so special in this.&lt;br /&gt;&lt;br /&gt;Unix time &lt;a href="http://www.onlineconversion.com/unix_time.htm"&gt;2222222222&lt;/a&gt; will be on Sat, 02 Jun 2040 03:57:02 GMT&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111112921355915335?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111112921355915335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111112921355915335' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111112921355915335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111112921355915335'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/captured-unix-time-1111111111.html' title='Captured Unix time 1111111111'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111109661967486814</id><published>2005-03-18T03:26:00.000+05:30</published><updated>2005-03-18T03:26:59.676+05:30</updated><title type='text'>1111111111</title><content type='html'>#!/bin/bash&lt;br /&gt;&lt;br /&gt;while [ $(date +%s) != 1111111111 ]&lt;br /&gt;&lt;br /&gt;do&lt;br /&gt;                echo "Not Yet!"&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;echo "Unix Time"&lt;br /&gt;&lt;br /&gt;date +%s&lt;br /&gt;&lt;br /&gt;echo "on `date`"&lt;br /&gt;echo "so we captured the history!"&lt;br /&gt;&lt;br /&gt;exit 0&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111109661967486814?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://slashdot.org/article.pl?sid=05/03/17/169200&amp;tid=130' title='1111111111'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111109661967486814/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111109661967486814' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111109661967486814'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111109661967486814'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/1111111111.html' title='1111111111'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111096649181944264</id><published>2005-03-16T15:18:00.000+05:30</published><updated>2005-03-16T15:41:32.766+05:30</updated><title type='text'>Web Search -- India</title><content type='html'>CIA - The World Factbook --India is coming up as the first link for &lt;a href="http://en.wikipedia.org/wiki/India"&gt;India&lt;/a&gt; for search. Thats ok.&lt;br /&gt;I just dont want &lt;small&gt;Times of &lt;a href="http://en.wikipedia.org/wiki/India"&gt;India&lt;/a&gt;&lt;/small&gt; site to comeup when I search for&lt;a href="http://en.wikipedia.org/wiki/India"&gt;India&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;doing my bit.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111096649181944264?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cia.gov/cia/publications/factbook/geos/in.html' title='Web Search -- India'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111096649181944264/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111096649181944264' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111096649181944264'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111096649181944264'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/web-search-india.html' title='Web Search -- India'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111071767757754760</id><published>2005-03-13T18:11:00.000+05:30</published><updated>2005-03-13T18:20:57.363+05:30</updated><title type='text'>Jonty Rhodes</title><content type='html'>&lt;a href="http://www.hinduonnet.com/thehindu/thscrip/print.pl?file=2005031300580200.htm&amp;amp;date=2005/03/13/&amp;prd=mag&amp;amp;"&gt;&lt;img src="http://www.thehindu.com/thehindu/mag/2005/03/13/images/2005031300580201.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Rhodes should be a favorite of any cricket lover. During his times he had elevated fielding to un-believable heights. That famous 1992 World Cup poster of Rhodes flying almost parallel to the groud is still in the minds of the most. He has some magical glimpse in his eyes and in his smiles and I found enough reasons for it today.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;br /&gt;&lt;img src="http://news.bbc.co.uk/media/images/38816000/jpg/_38816041_flying.jpg" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;Here's an excerpt of the wonderful piece I read in &lt;a href="http://www.hinduonnet.com/thehindu/thscrip/print.pl?file=2005031300580200.htm&amp;date=2005/03/13/&amp;amp;prd=mag&amp;amp;"&gt;The Hindu&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;br /&gt;"Rhodes has enjoyed immensely his visits to the City of Joy, and Mother Teresa has remained a source of much inspiration.'The example she has set, it is not about religion. It is about caring for people. The concern that she showed ... you can talk the talk, but do you really walk the walk? She sacrificed so much of her life whenever she found there was a calling. She probably didn't feel there was a sacrifice involved. She was a real motivator. She gives you hope. It's certainly difficult out there. But if you can put the other people first, you certainly can contribute.'&lt;br /&gt;&lt;br /&gt;The tsunami tragedy, all the suffering and the pain, left him disturbed. Rhodes did take part in the three one-dayers in New Zealand to raise funds for the Sri Lankan relief fund. Again he is able to glean the bigger picture. 'It's not just about rebuilding houses and roads. It is about rebuilding people's lives. That is going to take much longer.'&lt;br /&gt;&lt;br /&gt;He goes on: 'The frightening thing was that there weren't too many visuals that came through on the first day. When the visuals started coming in, it was hard to bear. You had heard the news, you heard the casualty figures, and now you saw the trauma that the people went through. Regardless of your culture or the country you came from, it moved you. There has been so much destruction, there have been so many deaths that it will take everyone's combined effort for a long time to heal the wounds.'&lt;br /&gt;&lt;br /&gt;&lt;/i&gt;&lt;i&gt;On Hansie Cronje&lt;br /&gt;&lt;br /&gt;&lt;/i&gt;&lt;i&gt;Rhodes has been through several testing periods in his life and one of them was when his good friend and captain for long, Hansie Cronje, confessed, after the match-fixing scandal broke out in 2000, to accepting money from the bookies to alter the course of some contests. 'What he did was wrong. But I never made him feel that he was not my friend. That's what friends are for. Our wives are best friends. What Bertha (Cronje's wife) went through after Hansie's death (Cronje died in a plane crash in 2002) ... it was sad. The King Commission proceedings were televised live in South Africa and my wife and I, we couldn't watch it. To see the sadness in him, and how badly he felt for what he had done, we really couldn't watch it.'" &lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111071767757754760?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.hinduonnet.com/thehindu/thscrip/print.pl?file=2005031300580200.htm&amp;date=2005/03/13/&amp;prd=mag&amp;' title='Jonty Rhodes'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111071767757754760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111071767757754760' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111071767757754760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111071767757754760'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/jonty-rhodes.html' title='Jonty Rhodes'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111063873095065165</id><published>2005-03-12T20:15:00.000+05:30</published><updated>2005-03-12T20:15:30.953+05:30</updated><title type='text'>How to print * continuously in vim</title><content type='html'>&lt;p class="mobile-post"&gt;&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana  size=2&gt;/***********************************************/&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana size=2&gt;&amp;nbsp;&amp;nbsp; These  kind of lines might be required while commenting&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana  size=2&gt;/***********************************************/&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana  size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana size=2&gt;The Command to use  is simple appending the text.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana  size=2&gt;[count]&lt;STRONG&gt;a&lt;/STRONG&gt;ppend[char] &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana  size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana size=2&gt;- Press Esc to  make sure you are in command mode.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana size=2&gt;- Press count. For  eg: 10&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana size=2&gt;- Press &lt;STRONG&gt;a.  &lt;/STRONG&gt;Mode changes to insert.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana size=2&gt;- Press the  character to repeat. here it is *. one * will be inserted&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana size=2&gt;- Press Esc. You  will see the command take effect.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana  size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=922331807-11032005&gt;&lt;FONT face=Verdana  size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; **********&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/FONT&gt;&lt;/DIV&gt; &lt;DIV&gt;&lt;SPAN class=659325009-12032005&gt;&lt;FONT face=Verdana  size=2&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111063873095065165?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111063873095065165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111063873095065165' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111063873095065165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111063873095065165'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/how-to-print-continuously-in-vim.html' title='How to print * continuously in vim'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111044928829744753</id><published>2005-03-10T15:33:00.000+05:30</published><updated>2005-03-10T15:38:22.990+05:30</updated><title type='text'>Blogger Suggestion</title><content type='html'>When someone leaves a comment on my post, I get a notification mail. The comments can sometimes and most times lead to some discussions.&lt;br /&gt;The comment  poster is never notified if someone has replied to the conversation thread he started. He should volunterily keep track of his post for the conversation. Thats a bad thing.&lt;br /&gt;&lt;br /&gt;Having a selection to get notified when someone posts a reply on the comment will be a great feature.&lt;br /&gt;&lt;br /&gt;LiveJournal has this good feature already.&lt;br /&gt;&lt;br /&gt;I had this in my mind for a long time and today I just suggested this to the &lt;a href="http://www.blogger.com/problem.g"&gt; blogger folks &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111044928829744753?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.blogger.com/problem.g' title='Blogger Suggestion'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111044928829744753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111044928829744753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111044928829744753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111044928829744753'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/blogger-suggestion.html' title='Blogger Suggestion'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111044816351813353</id><published>2005-03-10T15:19:00.000+05:30</published><updated>2005-03-10T15:30:00.590+05:30</updated><title type='text'>jwz's censorZilla</title><content type='html'>Never thought programming can be so much fun.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;ns/config/mkdepend/include.c                     /* only bitch if ip has */&lt;br /&gt;ns/include/allxpstr.h                            /* This SUCKS!! */&lt;br /&gt;ns/iclude/bkmks.h                                defined in ntypes.h, and some compilers bitch and moan about seeing it&lt;br /&gt;ns/include/libevent.h                               *   until necessary.  &lt;b&gt;Yow, there is a lot of shit in here now&lt;/b&gt;&lt;br /&gt;ns/include/proto.h                                * this shit shouldn't have to exist anyways.&lt;br /&gt;ns/include/xp_mcom.h                             /* this sucks, should I really include this here or what? *?&lt;br /&gt;ns/js/jsj/jsjava.c                               /* XXX extremely fucking lame - there should be security */&lt;br /&gt;ns/js/jsj/makefile.com                           #// Win16 Sucks so BAD!!!&lt;br /&gt;ns/js/src/jsapi.c                                   if (nbytes == 0)  /*DSR072897 - &lt;b&gt;this sucks, but Microsoft allows it!&lt;/b&gt;*/&lt;br /&gt;ns/lib/layout/edtbuf.cpp                            // LTNOTE: &lt;b&gt;what the fuck. This crashes sometimes??&lt;/b&gt;&lt;br /&gt;                                                     // &lt;b&gt;we are fucked! try something different.&lt;/b&gt;&lt;br /&gt;ns/lib/layout/edtele.cpp                         // if we get an Exception in this loop, the tree is fucked up!&lt;br /&gt;                                                  // out of memory, we are really fucked.&lt;br /&gt;ns/lib/layout/layblock.c                           /* Get the OVERFLOW attribute.  &lt;b&gt;(Fuck yuo, W3C.  Fuck you.)&lt;/b&gt; */&lt;br /&gt;ns/lib/layout/laytext.c                          /* we're long aligned, write the sucker */&lt;br /&gt;ns/lib/layout/laytable.c                         * Prevent idiots who set colspan=20000000&lt;br /&gt;                                                  * width then we grow the sucker.&lt;br /&gt;ns/lib/libcnv/writegif.c                            /* evil globals to satisfy the PBMPLUS &lt;b&gt;library crap that I stole this from&lt;/b&gt;*/&lt;br /&gt;ns/lib/libmime/mimehdrs.c                           # define &lt;b&gt;terry_has_lost_his_mind_and_also_macs_suck&lt;/b&gt; 0&lt;br /&gt;ns/lib/libmime/mimei.c                             /* &lt;b&gt;#### TOTAL FUCKING KLUDGE.&lt;/b&gt;&lt;br /&gt;                                                    /* &lt;b&gt;"Object oriented?  Fuck that shit!&lt;/b&gt;  Pabst Blue Ribbon!" --Dennis Hopper */&lt;br /&gt;                                                  Life sucks when you don't properly think out things that end up turning&lt;br /&gt;ns/lib/libmisc/bkmks.c                              /* fuck bogus type.  &lt;b&gt;Who knows what's going on.  Just quit and get out&lt;/b&gt; */&lt;br /&gt;ns/lib/libmsg/msgcpane.h                            /* &lt;b&gt;This sucks sucks sucks sucks sucks sucks sucks.&lt;/b&gt; */&lt;br /&gt;ns/lib/libmsg/msgdbvw.cpp                        // Because HPUX10 native compiler sucks, and we suck (for using ints instead&lt;br /&gt;ns/lib/libmsg/msgglue.cpp                          // They'll never fix the damned warnings.  &lt;b&gt;To hell with quality:&lt;/b&gt;&lt;br /&gt;ns/lib/libmsg/msgpane.cpp                           // &lt;b&gt;will result in a general "Piss on you complaint"&lt;/b&gt; and bring you back to the&lt;br /&gt;ns/lib/libmsg/newshost.cpp                         // &lt;b&gt;first of all, this sucks.&lt;/b&gt; And second, no need to diddle folder pane&lt;br /&gt;ns/lib/libmsg/prsembst.cpp                       /* More fucking const short-circuitry... */&lt;br /&gt;ns/lib/xp/xp_tracker.c                             /* this sucks to research the hash table, but &lt;b&gt;I don't want to eat more&lt;/b&gt; */&lt;br /&gt;ns/lib/mac/MacMemoryAllocator/src/StdCLevel.c    /* now, if we don't have any memory, then we really suck */&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111044816351813353?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.jwz.org/doc/censorzilla.html' title='jwz&apos;s censorZilla'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111044816351813353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111044816351813353' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111044816351813353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111044816351813353'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/jwzs-censorzilla.html' title='jwz&apos;s censorZilla'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111043525085968085</id><published>2005-03-10T11:32:00.000+05:30</published><updated>2005-03-10T11:57:32.396+05:30</updated><title type='text'>Savior - movie</title><content type='html'>Turned on ZMZ yesterday and saw that there was some war movie going on. Glimpses itself showed that it could be a decent movie, worth spending sometime watching. &lt;br /&gt;soldiers are all over the place, hiding,shooting planning etc.Saw the signs of UN and thought that it could be UN peace keeping force in act at some war torn nation.  &lt;br /&gt;A scene was, a soldier taking rest in his camp and sees a young girl coming, he emphatically and calls her to have chewin gum. She gives a smiles and throws some object at him and runs away. Blast! &lt;br /&gt;Next scene was two soldiers captivating two people and take them in a car, one soldier ( the main character called Guy) drops in between and moves up a hill and takes aim at some bridge. The Car stops near the bridge and people are exchanged on the either sides. The soldier who got down is carefully watching all the people from the hill top. The focus is on a pregnant woman.( I began to think that she could also be carrying a bomb). But later, the women is taken along in a car with these two soldiers; one of them is a native and asks her  to speak with him. They speak serb. She refuses and the soldier begins to harass, kick the pregnant women in her stomach. The woman shouts that he is coming out and the brutal soldier cares no more and is ready to shoot the baby in the womb. The Guy sitting in his car and watching, asks him to stop this and he does not seem to understand, Guy kills this soldier. &lt;br /&gt;The Woman is already suffering and is at the verge of the delivery. Guy helps the woman deliver her child. He shows the woman his child and while cleansing the blood of the new-born, the mother is ready to shoot herself. Guy prevents this and takes them both to their home.&lt;br /&gt;&lt;br /&gt;Guy now plays the savior of the Mother and the baby. He is one who speaks English and woman does not speak to him for a long time. Her father and brother,trace her to kill the mother and the child, they end up injuring this soldier and she protects him and speaks with him in English for the first time.&lt;br /&gt;&lt;br /&gt;They return to see her family capivated and most of people in the town killed.&lt;br /&gt;&lt;br /&gt;Guy takes the pledge of saving the mother and the child and when the plan for returning to a safer place, the tram which is carry people and which the woman has boarded so that she could carry along Guy and her baby along the way is captivated by soldiers and all the passengers are killed ( some brutally by hitting with a sledge on head). Mother sings her lullaby to make her child silent (who is hiding with Guy nearby); she is also hit in her head and dies.&lt;br /&gt;&lt;br /&gt;Guy with great efforts manages to save the child. He cries and seeks rest.&lt;br /&gt;&lt;br /&gt;Well, this was my view, the reviews tell the &lt;a href="http://www.google.com/search?hl=en&amp;q=movie%3A+savior&amp;btnG=Google+Search"&gt;story&lt;/a&gt; reasonably and with lot of other details. Worth watching.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111043525085968085?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.google.com/search?hl=en&amp;q=movie%3A+savior&amp;btnG=Google+Search' title='Savior - movie'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111043525085968085/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111043525085968085' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111043525085968085'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111043525085968085'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/savior-movie.html' title='Savior - movie'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-111036812440128856</id><published>2005-03-09T17:05:00.000+05:30</published><updated>2005-03-09T19:52:46.210+05:30</updated><title type='text'>Mozilla FireFox Extension - Linky</title><content type='html'>In one the the &lt;a href="http://usr.blogspot.com/2004/12/firefox-extension-idea.html"&gt;previous posts&lt;/a&gt;, I had mentioned about a need to select a portion of the page, right click and open the hyperlinks in tabs. &lt;br /&gt;Found something called &lt;a href="http://gemal.dk/mozilla/linky.html"&gt;Linky&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-111036812440128856?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://gemal.dk/mozilla/linky.html' title='Mozilla FireFox Extension - Linky'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/111036812440128856/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=111036812440128856' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111036812440128856'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/111036812440128856'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/mozilla-firefox-extension-linky.html' title='Mozilla FireFox Extension - Linky'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110996794714428706</id><published>2005-03-05T01:55:00.000+05:30</published><updated>2005-03-05T01:55:47.146+05:30</updated><title type='text'>tough call </title><content type='html'>&lt;p class="mobile-post"&gt;&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;SPAN  class=687431316-03032005&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Tahoma  size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt; &lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;   &lt;DIV&gt;&lt;SPAN class=152410516-03032005&gt;&lt;FONT face=Verdana size=2&gt;tough call with    jeff. like in all-hands. someone asked about Innovation at Dell and he was    explaining.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;   &lt;DIV&gt;&lt;SPAN class=152410516-03032005&gt;&lt;FONT face=Verdana size=2&gt;at some point, I    raised my hand and shouted " but jeff, they are marketing innovations, not the    ..." he had already interrupted me " No No No"," Not marketting innovation,    Bullshit! they are technical by engineers." made others laugh and me dumb. I    could not argue forward and he explained something abt BluRay and dvi etc.    never knew, but I missed arguing more,simply because he knows more than I. I    cannot present my arguments in all the angles he may counter    with.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;   &lt;DIV&gt;&lt;SPAN class=152410516-03032005&gt;&lt;FONT face=Verdana size=2&gt;Even at helm, he    is very deep technical guy and good at marketing and convincing people as    well.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;   &lt;DIV&gt;&lt;SPAN class=152410516-03032005&gt;&lt;FONT face=Verdana    size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;   &lt;DIV&gt;&lt;SPAN class=152410516-03032005&gt;&lt;FONT face=Verdana    size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;   &lt;DIV&gt;&lt;SPAN class=152410516-03032005&gt;&lt;FONT face=Verdana    size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;   &lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;   &lt;DIV align=left&gt;&lt;SPAN    style="FONT-SIZE: 10pt; FONT-FAMILY: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;--&lt;/SPAN&gt;&lt;/DIV&gt;   &lt;DIV align=left&gt;&lt;SPAN    style="FONT-SIZE: 10pt; FONT-FAMILY: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;&lt;!--StartFragment --&gt;&lt;FONT    size=3&gt;As we cannot change the way our minds work, we must change the    interface design.&amp;nbsp; - Jef Raskin&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN    style="FONT-SIZE: 10pt; FONT-FAMILY: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;&lt;/SPAN&gt;&lt;/DIV&gt;   &lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110996794714428706?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110996794714428706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110996794714428706' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110996794714428706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110996794714428706'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/tough-call.html' title='tough call '/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110987737885365287</id><published>2005-03-04T00:46:00.000+05:30</published><updated>2005-03-04T00:46:18.853+05:30</updated><title type='text'>Industry and Research</title><content type='html'>&lt;i&gt; "Profit is every CEO's major focus. Research almost always benefits an entire industry more than any particular company. And research doesn't have immediate results.&lt;br /&gt;&lt;br /&gt;Sometimes it doesn't have the results that CEOs want. You invent a product that has a longer life-cycle, that doesn't need constant refills or upgrades. Research is expensive and unpredictable. Things that today's business world frowns on.&lt;br /&gt;&lt;br /&gt;New technology typically has a five-year development cycle. The U.S. technology business stopped being serious about research in 2000 and the results are showing now.&lt;br /&gt;&lt;br /&gt;People have a little more money but there's nothing they want to buy. There's nothing that makes you say, 'Wow.' Ten years ago I was seeing something interesting every month, but now we're touting bloated software and cute case designs as innovation.&lt;br /&gt;&lt;br /&gt;The damage to HP and the U.S. technology industry at large may already be irreversible. If we start investing today and let our engineers play we might have something exciting to show people in 2010. That's a long time to wait for the next big wow.&lt;br /&gt;&lt;br /&gt;To me, this rabid fixation on short-term profits is a bigger threat than outsourcing -- it is killing our ability to make astonishing things." &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.technologyreview.com/articles/05/03/wo/wo_delio030405.asp?trk=nl"&gt;Tech Review Link&lt;/a&gt;:&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110987737885365287?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.technologyreview.com/articles/05/03/wo/wo_delio030405.asp?trk=nl' title='Industry and Research'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110987737885365287/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110987737885365287' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110987737885365287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110987737885365287'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/03/industry-and-research.html' title='Industry and Research'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110953797081249598</id><published>2005-02-28T02:12:00.000+05:30</published><updated>2005-02-28T02:29:30.813+05:30</updated><title type='text'>Jef Raskin passes away</title><content type='html'>&lt;img style="width: 299px; height: 400px;" src="http://jef.raskincenter.org/main/pictures/img/mechjef.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;I remember we have shared much about Jef at hexadeicmals and I have stumbled and amazed at his site and amazed by his UI related thoughts more than once.&lt;br /&gt;I was totally surprised when, when I had heard about The Humane Interface Project from this Master creator of Machintosh and the real surprise was the project was hosted at &lt;a href="http://sourceforge.net/projects/humane/"&gt;SourceForge&lt;/a&gt; and Jef invited others whoever cared to Join this. Boy, thats a master coding his creation and you got to be careful with the invitation.&lt;br /&gt;Came to know later that Jef &lt;a href="http://slashdot.org/article.pl?sid=05/01/26/1338224&amp;tid=189"&gt;got $20 millon&lt;/a&gt; to develop the project and thought that, his work and dream is not going vain and he's got some support, would be quickening his effort and we could probably see something new when its ready..&lt;br /&gt;&lt;br /&gt;but today... Alas! &lt;br /&gt;&lt;br /&gt;With Respect, thanks Jef for the UI advances and GUI breakthroughs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110953797081249598?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://jef.raskincenter.org/home/' title='Jef Raskin passes away'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110953797081249598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110953797081249598' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110953797081249598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110953797081249598'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/jef-raskin-passes-away.html' title='Jef Raskin passes away'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110951685415932127</id><published>2005-02-27T20:25:00.000+05:30</published><updated>2005-02-27T22:01:23.246+05:30</updated><title type='text'>something new</title><content type='html'>So, Love and Machines  is just usr.blogspot.com and I feel its fitting because, it so far has been my thought store. You could get this &lt;a href="http://binarybonsai.com/kubrick/"&gt;Kubrick design&lt;/a&gt; &lt;a href="http://blogger-templates.blogspot.com/"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110951685415932127?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://usr.blogspot.com' title='something new'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110951685415932127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110951685415932127' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110951685415932127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110951685415932127'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/something-new.html' title='something new'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110928204223542785</id><published>2005-02-25T03:20:00.000+05:30</published><updated>2005-02-25T03:28:53.123+05:30</updated><title type='text'>Sun Solaris 10</title><content type='html'>&lt;a href="http://www.sun.com/software/solaris/"&gt;&lt;img src="http://developers.sun.com/img/solaris10.gif" /&gt;&lt;/a&gt;&lt;br /&gt;Tried Solaris today as Solaris 10 is now available for download and is applicable for x86 architecture.Dont really plan to move it, but wanted to check how it really looks.&lt;br /&gt;Got a feel fo Java Desktop System ( thats Gnome!) and other things.&lt;br /&gt;&lt;br /&gt;I will be getting more fam with &lt;a href="http://lfsi.blogspot.com/"&gt;Freak&lt;/a&gt; though.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110928204223542785?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.sun.com/software/solaris/' title='Sun Solaris 10'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110928204223542785/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110928204223542785' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110928204223542785'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110928204223542785'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/sun-solaris-10.html' title='Sun Solaris 10'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110918224134026007</id><published>2005-02-23T23:22:00.000+05:30</published><updated>2005-02-23T23:45:01.493+05:30</updated><title type='text'>Matt Domsch</title><content type='html'>&lt;center&gt;&lt;img style="width: 391px; height: 260px;" src="http://www.domsch.com/pictures/Holden_2003/large/DCP_1829.jpg" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.google.com/search?hl=en&amp;q=Matt+Domsch&amp;amp;btnG=Google+Search"&gt;Matt&lt;/a&gt; is one of my hero. One of the great guys I have come across and an inspirational figure.&lt;br /&gt;Felt very excited when I realized that he knew me. I felt wow and very happy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110918224134026007?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.domsch.com/' title='Matt Domsch'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110918224134026007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110918224134026007' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110918224134026007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110918224134026007'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/matt-domsch.html' title='Matt Domsch'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110916025536632542</id><published>2005-02-23T17:34:00.000+05:30</published><updated>2005-02-24T00:04:52.490+05:30</updated><title type='text'>Freak</title><content type='html'>&lt;center&gt;&lt;img src="http://linuxfromscratch.org/~gerard/lfslogos/lfs-puzzle-2.jpg"&gt;&lt;/center&gt;&lt;br /&gt;&lt;strong&gt;Why would I want an LFS system?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;There are a lot of reasons why somebody would want to install an LFS system. The question most people raise is 'why go through all the hassle of manually installing a Linux system from scratch when you can just download an existing distribution?'. That is a valid question which I hope to answer for you.&lt;br /&gt;&lt;br /&gt;The most important reason for LFS's existence is teaching people how a Linux system works internally. Building an LFS system teaches you about all that makes Linux tick, how things work together, and depend on each other. And most importantly, how to customize it to your own taste and needs.&lt;br /&gt;&lt;br /&gt;One of the key benefits of LFS is that you are in control over your system without having to rely on somebody else's Linux implementation. You are in the driver's seat now and are able to dictate every single thing such as the directory layout and boot script setup. You will also know exactly where, why and how programs are installed.&lt;br /&gt;&lt;br /&gt;Another benefit of LFS is that you can create a very compact Linux system. When you install a regular distribution, you end up installing a lot of programs you probably would never use. They're just sitting there taking up (precious) disk space. It's not hard to get an LFS system installed under 100 MB. Does that still sound like a lot? A few of us have been working on creating a very small embedded LFS system. We installed a system that was just enough to run the Apache web server; total disk space usage was aproximately 8 MB. With further stripping, that can be brought down to 5 MB or less. Try that with a regular distribution.&lt;br /&gt;&lt;br /&gt;If we were to compare a Linux distribution with a hamburger you buy at a supermarket or fast-food restaurant, you would end up eating it without knowing precisely what it is you are eating, whereas LFS gives you the ingredients to make a hamburger. This allows you to carefully inspect it, remove unwanted ingredients, and at the same time allow you to add ingredients to enhance the flavour of your hamburger. When you are satisfied with the ingredients, you go on to the next part of putting it together. You now have the chance to make it just the way you like it: broil it, bake it, deep-fry it, barbeque it, or eat it raw.&lt;br /&gt;&lt;br /&gt;Another analogy that we can use is that of comparing LFS with a finished house. LFS will give you the skeleton of a house, but it's up to you to install plumbing, electrical outlets, kitchen, bathtub, wallpaper, etc.&lt;br /&gt;&lt;br /&gt;Another advantage of a custom built Linux system is added security. You will compile the entire system from source, thus allowing you to audit everything, if you wish to do so, and apply all the security patches you want or need to apply. You don't have to wait for somebody else to provide a new binary package that fixes a security hole. Besides, you have no guarantee that the new package actually fixes the problem (adequately). You never truly know whether a security hole is fixed or not unless you do it yourself."&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;br /&gt;I had my &lt;a href="http://lfsi.blogspot.com/"&gt;Freak&lt;/a&gt; ready on Feb 22, 2005. Excited!&lt;br /&gt;&lt;br /&gt;LFS User ID:14897&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110916025536632542?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://lfs.osuosl.org/lfs/whatislfs.html' title='Freak'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110916025536632542/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110916025536632542' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110916025536632542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110916025536632542'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/freak.html' title='Freak'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110900191231919596</id><published>2005-02-21T21:35:00.000+05:30</published><updated>2005-02-21T21:35:12.320+05:30</updated><title type='text'>P Harikrishna</title><content type='html'>P. Harikrishna is chess player from Andra Pradesh in India. He is considered third amongst the top players ranking next to Vishwanathan Anand and Sasikiran. Harikrishna became the youngest grandmaster from India in 2001. In November 2004, he won the world junior chess championship.&lt;br /&gt;&lt;br /&gt;But the thing in this &lt;b&gt;Real World&lt;/b&gt; is&lt;br /&gt;&lt;a href="http://www.ndtv.com/sports/showsports.asp?sportname=Report&amp;story=Harikrishna+maybe+forced+to+quit+chess&amp;id=21319"&gt;&lt;br /&gt;Lack of sponsors may force Harikrishna to quit chess&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://gulmohar.blogspot.com/2005/02/pendyala-harikrishna.html"&gt;Another Good Source&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110900191231919596?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://en.wikipedia.org/wiki/P_Harikrishna' title='P Harikrishna'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110900191231919596/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110900191231919596' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110900191231919596'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110900191231919596'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/p-harikrishna.html' title='P Harikrishna'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110880382734793161</id><published>2005-02-19T14:33:00.000+05:30</published><updated>2005-02-19T14:33:47.346+05:30</updated><title type='text'>jwz  speaks</title><content type='html'>&lt;i&gt;"If you want to do something that's going to change the world, build software that people want to use instead of software that managers want to buy."&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.jwz.org"&gt;jwz&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110880382734793161?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.jwz.org/doc/groupware.html' title='jwz  speaks'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110880382734793161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110880382734793161' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110880382734793161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110880382734793161'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/jwz-speaks.html' title='jwz  speaks'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110846434868381938</id><published>2005-02-15T16:15:00.000+05:30</published><updated>2005-02-15T16:15:48.683+05:30</updated><title type='text'>Re: [quiznet] I.T Quiz</title><content type='html'>1) Mozilla firefox (the fandu open source web browser ) also known&lt;br /&gt;earlier as phoenix and Mozilla firebird was made by two computer geeks&lt;br /&gt;. pls name them ?&lt;br /&gt;&lt;br /&gt;Blake Ross and  Ben Goodger&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;2 Name the new search engine started by amozon.com ? (I want the site  name) &lt;br /&gt;&lt;br /&gt;A9.com&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3) Name the founder and company name from which google purchased  blogger.com &lt;br /&gt;&lt;br /&gt;Evan Williams and Pyra Labs&lt;br /&gt;&lt;br /&gt;4) With response to Google news Microsoft has also started a news &lt;br /&gt;service will let visitors create their own customised news feeds ,&lt;br /&gt;name the service ?&lt;br /&gt;&lt;br /&gt;M$ Newsbot&lt;br /&gt;&lt;br /&gt;5) Two big giants  started mass production of E-paper , can u name them ? &lt;br /&gt;&lt;br /&gt;Xerox PARC and Lucent&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;6) Name the code name of the mozilla firefox 1.1 and give the funda &lt;br /&gt;behind the nomenclature of other version .&lt;br /&gt;&lt;br /&gt;Deer Park. Funda behind nomenclature could not find.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt; 7)  Macintosh had done some change in its configuration to promote mouse&lt;br /&gt;. What ???&lt;br /&gt;&lt;br /&gt;GUI, Right Click Menu?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Senthil&lt;br /&gt;http://usr.blogspot.com&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;--&lt;br /&gt;The heart has its reasons which reason knows nothing of. -- Blaise Pascal&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110846434868381938?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110846434868381938/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110846434868381938' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110846434868381938'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110846434868381938'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/re-quiznet-it-quiz.html' title='Re: [quiznet] I.T Quiz'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110823450510741964</id><published>2005-02-13T00:25:00.000+05:30</published><updated>2005-02-13T00:25:05.106+05:30</updated><title type='text'>Albert Einstein -</title><content type='html'>&lt;i&gt;"Quantum mechanics is certainly imposing. But an inner voice tells me it is not yet the real thing. The theory says a lot, but does not really bring us any closer to the secret of the Old One. I, at any rate, am convinced that He does not throw dice. To this, Neils Bohr, who sparred with Einstein on the Quantum Theory retorted, 'Stop telling God what He must do!'"&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110823450510741964?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://en.wikipedia.org/wiki/Albert_Einstein' title='Albert Einstein -'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110823450510741964/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110823450510741964' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110823450510741964'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110823450510741964'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/albert-einstein.html' title='Albert Einstein -'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110786742072609474</id><published>2005-02-08T18:27:00.000+05:30</published><updated>2005-02-08T18:27:00.726+05:30</updated><title type='text'>Just Enough...</title><content type='html'>&lt;a href="http://hbswk.hbs.edu/item.jhtml?id=4591&amp;amp;t=srobbins"&gt;HBS Working Knowledge: The Leadership Workshop: Defeating Overwhelm&lt;/a&gt;: &lt;br /&gt;&lt;br /&gt;"An executive vice president of a several-hundred-person company decided that she hated her job. So she decided to downshift to a director-level position that gave her just enough status. It worked like a charm. She later downshifted again, spending a year climbing Mount Kilimanjaro and leading safaris in Africa. 'Just enough' gave her the freedom to create a much richer life."&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110786742072609474?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://hbswk.hbs.edu/item.jhtml?id=4591' title='Just Enough...'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110786742072609474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110786742072609474' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110786742072609474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110786742072609474'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/02/just-enough.html' title='Just Enough...'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110717861750519187</id><published>2005-01-31T19:04:00.000+05:30</published><updated>2005-01-31T19:06:57.506+05:30</updated><title type='text'>Dr. Devi Shetty's letter</title><content type='html'>My Dear Children,&lt;br /&gt;&lt;br /&gt;I have been planning to write this Letter for quite sometime. Maybe, I just waited for all of you to grow up to understand what I am trying to convey. The story goes back many years. When God sent you to this world, it was perhaps the best thing that could have happened to your parents.&lt;br /&gt;&lt;br /&gt;Every little nudge and kick in your mother's womb opened up a new world of happiness and expectations. Then, one day, a miracle happened. You were to begin a new journey from the warm, happy, secure world of your mother's womb to a world that is cold and full of insecurities. Nevertheless, the joy that your parents felt after this journey knew no bounds. They were on top of the world. But, unfortunately, this happiness was short lived. That very day you started turning blue in color. The doctors had found a hole in your heart which shattered the dreams of your parents. They were devastated and could not understand why they were being punished in this way. They had no choice but to accept the inevitable and decided to give you the best possible medical care.&lt;br /&gt;&lt;br /&gt;Before that, they had to overcome two major hurdles. They could not afford the cost of your heart operation and they could not wait since you were turning blue every time you cried. I guess this is a penalty you have to pay for being born in a third world country. Yes, when you were ten days old you had a price tag on your life. If your parents paid the price, they could have you, if not, you would have to go back to where you came from. Your mummy and daddy went through phases of self-pity, denial, mutual accusations and anger towards the society which was indifferent to their problems. Your daddy was upset since he knew that the price tag on your life was less than what his boss would spend on a Saturday evening party. But that is life and one has to accept it. Time was running out and your daddy was getting desperate until he came to know about me. The first thing he told me when we met was "I heard you love children". Yes, I love children and I have four of my own. My profession is giving hope to those suffering from heart diseases and giving them a chance to start life in a fresh new way. I am essentially a technician who can cut and stitch people's hearts; they call me a heart surgeon.&lt;br /&gt;&lt;br /&gt;When I met you first, you were barely 10 days old, cuddled in a warm blanket close to your mother's heart. Except for a bit of rapid breathing and bluish nails on your finger, you looked like an angel. I am sure you cannot remember, but I asked you a question "Do you want to be my friend?". This is the question I ask all the children I see. I did want to be your friend and I worked so hard to gain your friendship. I clearly remember your mother's face when she was handing you over to the operation theater nurse. She kissed you and looked at my face with an expression that she is handing over her most precious possession to me, also with the total confidence that I will take care of you.&lt;br /&gt;&lt;br /&gt;It was a different sort of love triangle between your father, mother and myself, with you at the centre. We would have done anything in this world to get you back. It took me 6 hours of intense concentration to operate upon your heart and so many sleepless nights before you started smiling again. God was kind to you that time and you made a marvelous recovery. It was a big day for your family when you were being discharged from the hospital. Both your mummy and daddy would have thanked me a million times before they left the hospital. But you were blissfully unaware of what was going on and you were happily clinging on to your mother's chest. My eyes began to swell with tears and I turned my face the other way, since a cardiac surgeon is not supposed to cry. Through the corner of my wet eyes, I saw your face one more time and I knew, I had found one more friend. Your friendship and love is the only fee I expect for treating you.&lt;br /&gt;&lt;br /&gt;As a heart surgeon, I have performed more than 4000 operations on children like you suffering from heart disease. Most of them came from poor families. Despite their backgrounds, I treat all for free. I think this is the best way I can repay God who has given me everything I wanted, a good family, a wonderful wife and loving children. For me this world is such a happy place to live in and in my own small way, I strive to make it happy for others around me who are not so fortunate.&lt;br /&gt;&lt;br /&gt;You must be wondering what inspired me to take this path. I guess, I became a doctor because of the recurrent illnesses of my parents. My childhood was spent with the fear of losing my mother. My father, who was a diabetic had multiple episodes of diabetic coma. In the lives of the nine of us, God was a distant image and his clear image was that of a Doctor who could save the lives of our parents.&lt;br /&gt;&lt;br /&gt;Another childhood incident left a lasting impression on my young mind. I remember, it was a Saturday afternoon. I was trying to build a car, I think, out of match boxes and sticks, like all the other children in my village while, my mother was speaking to a distant relative of ours in Mumbai. This lady was telling my mother about a particular surgeon who apart from saving her child's life also offered his service completely free of cost. I could hear my mother blessing the mother of that surgeon for giving birth to such a wonderful person and ended up saying that this world is still a wonderful place because of people like him.&lt;br /&gt;&lt;br /&gt;That was the time I found the purpose for my life, the purpose of bringing happiness to all the children of this world. I was lucky to be in the right place at the right time. I was trained to be a heart surgeon at Guy's Hospital, London. My colleagues there called me an "operating machine", since I loved heart surgery.&lt;br /&gt;&lt;br /&gt;I left England in 1989 to start a state-of-the-art heart hospital called B.M. Biria Heart Research Centre at Calcutta. It was a great experience to set up a heart hospital which soon became one of the best heart hospitals in India. And almost immediately after we set up the research centre, we started the paediatric cardiac surgical facilities to take care of children suffering from heart diseases. Little did I know that this centre was to rewrite medical history. My mother at that time was living in a small town near Mangalore. It was my father's death anniversary and she spent almost the entire day in the prayer room. In the evening, my sister who was watching the news on the national network, all of a sudden screamed out for my mother. My mother hurried to the living room to see her son on TV, with a nine day old baby who underwent a successful open-heart surgery. He was the youngest baby at that point of time in India to undergo this procedure. It was the beginning of heart surgery on newborn babies in India. I guess at that time, many mothers would have prayed for my mother's well being too.&lt;br /&gt;&lt;br /&gt;Let me tell you about another incident. Do you know the definition of a paediatric cardiac surgeon? The dictionary says he is a surgeon who specializes in the treatment of heart ailments in children. A few years ago, when Mother Teresa suffered a heart attack, I was put in charge of her heart care. One day, Mother, who at that point of time was convalescing in the intensive care unit of the hospital, saw me examining a blue baby. After few minutes of thought, she turned towards me and said, "Now I know why you are here. To relieve the agony of children with heart disease. God sent you to this world to fix it". To my mind, this is the best definition ever given of a paediatric cardiac surgeon and perhaps the best compliment that I have ever received.&lt;br /&gt;&lt;br /&gt;One day you will become an adult and probably a very important member of our society. You will have lot of responsibilities and commitments. All I ask of you for is, can you spare a few moments of your precious time every day for someone who needs it and that too without expecting anything back in return. Did you know that, to save your life, a few hundred people worked sincerely without expecting any remuneration other than the joy of making your family, friends and relatives happy?&lt;br /&gt;&lt;br /&gt;Dear Children, we are all created by God and He is in control of all the events happening in this world. Unfortunately, He is not supposed to be seen, heard or felt. So, He runs His world using people like you and me. And when you do your work without expecting anything in return, just for the joy of bringing happiness to others, that's when you'll realize it is not your hands which do the job it is the Hands of God. God bless,&lt;br /&gt;&lt;br /&gt;Dr. Devi Shetty April 1997, Bangalore&lt;br /&gt;&lt;br /&gt;- This letter was written by Dr. Devi Shetty in the year 1997 after he had completed 4000 surgeries on children.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110717861750519187?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.hrudayalaya.com/' title='Dr. Devi Shetty&apos;s letter'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110717861750519187/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110717861750519187' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110717861750519187'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110717861750519187'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/dr-devi-shettys-letter.html' title='Dr. Devi Shetty&apos;s letter'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110716519040338842</id><published>2005-01-31T15:23:00.000+05:30</published><updated>2005-01-31T15:23:10.403+05:30</updated><title type='text'>Love Story</title><content type='html'>&lt;center&gt;&lt;br /&gt;&lt;img src="http://images.amazon.com/images/P/B000059TEQ.01.LZZZZZZZ.jpg"&gt;&lt;br /&gt;&lt;/center&gt;&lt;br /&gt;While I was reading this, I was thinking how ameerican... how ameerican, but carried on as this was a quickie read and later began to enjoy the &lt;em&gt;bitch,bastard slangs of this goddamn good&lt;/em&gt; Love Story between Oliver Baratte IV (Ollie,prepie,a talented-all Ivy- Harvard law student) and his love Jennifer Cavilleri ( Jenny,good natured-fun loving-radcliffe).&lt;br /&gt;&lt;br /&gt;Got to know that its a famous one which many have read.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110716519040338842?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110716519040338842/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110716519040338842' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110716519040338842'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110716519040338842'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/love-story.html' title='Love Story'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110715596033754747</id><published>2005-01-31T13:46:00.000+05:30</published><updated>2005-01-31T12:49:20.336+05:30</updated><title type='text'>Vaishnov Jan</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-style: italic;"&gt;Vaishnov Jan to taynay kahyeeye&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Jay peerh paraaye janneyray&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Par dukkhey upkar karey teeyey,&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;man abhiman na anney ray&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-style: italic;"&gt;Sakal lokma Sahuney bandhey,&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Ninda Na karye kainee ray&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Baach kaachh, Man nischal Raakhey, &lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;dhan-dhan jananee tainee ray&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-style: italic;"&gt;Samdrishi nay trishna tyagee,&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;par-stree jaynay mat ray&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Vivihva thaki asatya na bolay,&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;par-dhan nav jhaley haath ray&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-style: italic;"&gt;Moh maaya vyaayey nahin Jeynay,&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;dridth vairagya jana manma ray&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Ram-nam-shoom taalee laagee,&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Sakal teerth seyna tanma ray&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-style: italic;"&gt;Vanloohee nay kapat rahit chhay,&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Kaam, Krodh nivarya ray&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;Bhane Narsinhyo tainoo darshan karta&lt;/span&gt;&lt;br /&gt; &lt;span style="font-style: italic;"&gt;kul ekotair taarya re.&lt;br /&gt;&lt;br /&gt;~~~~~~&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;A godlike man is one,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Who feels another’s pain&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Who shares another’s sorrow,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;And pride does disdain.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Who regards himself as the lowliest of the low,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Speaks not a word of evil against any one&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;One who keeps himself steadfast in words, body and mind,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Blessed is the mother who gives birth to such a son.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Who looks upon everyone as his equal and has renounced lust,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;And who honours women like he honours his mother&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Whose tongue knows not the taste of falsehood till his last breath,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Nor covets another’s worldly goods.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;He does not desire worldly things,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;For he treads the path of renunciation&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Ever on his lips is Rama’s holy name,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;All places of pilgrimage are within him.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;One who is not greedy and deceitful,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;And has conquered lust and anger&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Through such a man Saint Narsaiyon has a godly vision,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-size:85%;"&gt;&lt;span style="font-family: verdana;"&gt;Generations to come, of such a man, will attain salvation&lt;/span&gt;&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;/div&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110715596033754747?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110715596033754747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110715596033754747' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110715596033754747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110715596033754747'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/vaishnov-jan.html' title='Vaishnov Jan'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110668461641926629</id><published>2005-01-26T01:53:00.000+05:30</published><updated>2005-01-26T02:02:04.820+05:30</updated><title type='text'>FireFox and Slashdot</title><content type='html'>I guess Firefox and Slashdot are &lt;strong&gt;very poor companions!&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;First is this bug which I often face, while trying to submit a story or while commenting!&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;Invalid form key: Q9jRDo9JhK&lt;br /&gt;&lt;br /&gt;Chances are, you're behind a firewall or proxy,&lt;br /&gt;or clicked the Back button to accidentally reuse a form.&lt;br /&gt;Please try again. If the problem persists, and all other options&lt;br /&gt;have been tried, contact the site administrator."&lt;br /&gt;&lt;/pre&gt;I've mailed this to the Bill Cowboy as well.&lt;br /&gt;This is not observed /encountered if using M$ ie.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;And the next most irritating thing I am facing with FireFox + Slashdot is: &lt;b&gt; My Login is not retained.&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;I login to slashdot and have customized light-weight outlook with reading only +5 comments. But I tend to lose the logged in account inconsistenly. Sometimes, just hitting the refresh button. sometimes while doing "Read More" in a new tab, times when trying to submit a story, times when commenting.&lt;br /&gt;&lt;br /&gt;If this happened to you, would you not be irritated?&lt;br /&gt;I thought it was some cookie related, but set things right ( to accept all cookies and retain cookies from parent site) but nothing worked!&lt;br /&gt;&lt;br /&gt;Has anyone else faced the same problem? Am I alone in this world?&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110668461641926629?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://slashdot.org' title='FireFox and Slashdot'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110668461641926629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110668461641926629' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110668461641926629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110668461641926629'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/firefox-and-slashdot.html' title='FireFox and Slashdot'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110609554937480082</id><published>2005-01-19T05:38:00.000+05:30</published><updated>2005-01-20T20:23:50.270+05:30</updated><title type='text'>It was  five past midnight 2nd to 3rd December 1984, Bhopal. </title><content type='html'>&lt;div style="TEXT-ALIGN: center"&gt;&lt;img style="WIDTH: 270px; HEIGHT: 408px" src="http://a1204.g.akamai.net/7/1204/1401/04111116011/images.barnesandnoble.com/images/8600000/8608555.jpg" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Had stumbled across a detailed information on this incident on &lt;a href="http://usr.blogspot.com/2004/12/bhopal-disaster.html"&gt;Dec 3 2004&lt;/a&gt;, when I decided that I should be reading this book.&lt;br /&gt;&lt;br /&gt;Begins with the story of Ratan Nadar, a typical Advasi Indian peasant and the story follows his and his family's destiny. Without any kind of rhetoric nature, the story goes in a detailed manner presenting most of the information objectively. Ratan Nadar's children aged 5,6 and 8 going to work a match factory and handling toxic chemical which onces catches fire and padmini, the eldest discovers her brother dead.&lt;br /&gt;Ratan like many others continuosly faces hardships in his village. He moves to Bhopal,a big city,gets a job as a worker constructing the Bhopal Railway station.&lt;br /&gt;&lt;br /&gt;Union Carbide discovers sevin pesticide,which can improve the crop productivity. Plans to establish a factory in India, Bhopal. The chief architect Eduardo Munoz doubts the need for UC like factory in India, feeling the nature of India and its problems, but UC's board of directors get better of him.&lt;br /&gt;&lt;br /&gt;The motives are profit! But story reveals several earnest people establishing and working at the UC Plant in India and how Union Carbide is a dream company.&lt;br /&gt;&lt;br /&gt;Things take a turn.&lt;br /&gt;&lt;br /&gt;The book is about the people living at Oriya Bustee, Kali Ghats, their custom and their work and their relationship with UC. How things change. How people help each other when the real need arises. How people are indifferent to each other. How can some indifferent attitudes prove too costly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;i&gt;Concern for man himself and his safety must always form the chief interest in all technical endeavours. Never forget this in the midst of your diagrams and equations. &lt;i&gt;&lt;/i&gt;&lt;/i&gt;&lt;/h4&gt;&lt;p&gt;&lt;i&gt;&lt;i&gt;- Albert Einsten&lt;br /&gt;&lt;/i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&lt;br /&gt;&lt;br /&gt; &lt;/p&gt;&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110609554937480082?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://en.wikipedia.org/wiki/Bhopal_Disaster' title='It was  five past midnight 2nd to 3rd December 1984, Bhopal. '/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110609554937480082/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110609554937480082' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110609554937480082'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110609554937480082'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/it-was-five-past-midnight-2nd-to-3rd.html' title='It was  five past midnight 2nd to 3rd December 1984, Bhopal. '/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110589406811137152</id><published>2005-01-16T22:17:00.000+05:30</published><updated>2005-01-16T22:17:48.110+05:30</updated><title type='text'>Delicious Company</title><content type='html'>&lt;a href="http://www.delicious-monster.com/company.php"&gt;Delicious Company&lt;/a&gt; The website asked me to blog it,pressed a button from their page and here it goes.&lt;br /&gt;&lt;br /&gt;But interesting story indeed! Seven guys working at at coffee shop which is their office.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110589406811137152?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.delicious-monster.com/company.php' title='Delicious Company'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110589406811137152/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110589406811137152' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110589406811137152'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110589406811137152'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/delicious-company.html' title='Delicious Company'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110573452348385271</id><published>2005-01-15T01:58:00.000+05:30</published><updated>2005-01-15T01:58:43.483+05:30</updated><title type='text'>Fedora Core3 Media Check Failure Disk 2 and Disk3</title><content type='html'>If you face the Media Check Failure for Disk2 and Disk3 of Fedora Core3 and be adviced by the Media Check Tool as it would not be safe to continue installation, &lt;b&gt;don't despair&lt;/b&gt;! Yeah, I understand the frustation caused when you try to install latest FC3 after a download/ purchase.&lt;br /&gt;But remember that you are not alone, &lt;a href="https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=139213"&gt;Bugzilla Bug#139213&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is a not a Real Problem, your media is proper and you will be able to install the system completely. &lt;br /&gt;The issue here is, during the install DMA ( Direct Memory Access) mode is entered for faster installation ( + others) and Installer is trying to communicate with your Devices directly and your CDROM did not have a proper DMA working and hence this result. ( this is what I came to know,references below)&lt;br /&gt;&lt;br /&gt;So to solve this problem,during the Installation, give:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;linux ide=nodma&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Now you might find that CD2 and CD3 Media check &lt;strong&gt;Passes!&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Refer the following for some discussions:&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www.redhat.com/archives/fedora-list/2004-September/msg03073.html"&gt;https://www.redhat.com/archives/fedora-list/2004-September/msg03073.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.exocore.com/linux/rhl71dma/"&gt;http://www.exocore.com/linux/rhl71dma/&lt;/a&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110573452348385271?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=139213' title='Fedora Core3 Media Check Failure Disk 2 and Disk3'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110573452348385271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110573452348385271' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110573452348385271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110573452348385271'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/fedora-core3-media-check-failure-disk.html' title='Fedora Core3 Media Check Failure Disk 2 and Disk3'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110554713885760401</id><published>2005-01-12T21:48:00.000+05:30</published><updated>2005-01-12T21:55:38.856+05:30</updated><title type='text'>The Right to Read</title><content type='html'>Very Interesting account, especially if you are aware of this &lt;a href="http://www.fsf.org/philosophy/philosophy.html"&gt; philosophy&lt;/a&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;b&gt;The Right to Read&lt;/b&gt;  by &lt;a href="http://www.stallman.org"&gt;rms&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt; &lt;em&gt;This article appeared in the February 1997 issue of &lt;strong&gt;Communications of the ACM&lt;/strong&gt; (Volume 40, Number 2).&lt;/em&gt;&lt;/p&gt;   &lt;blockquote&gt;&lt;p&gt; 	     (from "The Road To Tycho", a collection of articles 	      about the antecedents of the Lunarian Revolution, 	      published in Luna City in 2096) &lt;/p&gt;&lt;/blockquote&gt;   &lt;p&gt; For Dan Halbert, the road to Tycho began in college--when Lissa Lenz asked to borrow his computer.  Hers had broken down, and unless she could borrow another, she would fail her midterm project.  There was no one she dared ask, except Dan.&lt;/p&gt;   &lt;p&gt; This put Dan in a dilemma.  He had to help her--but if he lent her his computer, she might read his books.  Aside from the fact that you could go to prison for many years for letting someone else read your books, the very idea shocked him at first.  Like everyone, he had been taught since elementary school that sharing books was nasty and wrong--something that only pirates would do.&lt;/p&gt;   &lt;p&gt; And there wasn't much chance that the SPA--the Software Protection Authority--would fail to catch him.  In his software class, Dan had learned that each book had a copyright monitor that reported when and where it was read, and by whom, to Central Licensing.  (They used this information to catch reading pirates, but also to sell personal interest profiles to retailers.)  The next time his computer was networked, Central Licensing would find out.  He, as computer owner, would receive the harshest punishment--for not taking pains to prevent the crime.&lt;/p&gt;   &lt;p&gt; Of course, Lissa did not necessarily intend to read his books.  She might want the computer only to write her midterm.  But Dan knew she came from a middle-class family and could hardly afford the tuition, let alone her reading fees.  Reading his books might be the only way she could graduate.  He understood this situation; he himself had had to borrow to pay for all the research papers he read.  (10% of those fees went to the researchers who wrote the papers; since Dan aimed for an academic career, he could hope that his own research papers, if frequently referenced, would bring in enough to repay this loan.)&lt;/p&gt;   &lt;p&gt; Later on, Dan would learn there was a time when anyone could go to the library and read journal articles, and even books, without having to pay.  There were independent scholars who read thousands of pages without government library grants.  But in the 1990s, both commercial and nonprofit journal publishers had begun charging fees for access. By 2047, libraries offering free public access to scholarly literature were a dim memory.&lt;/p&gt;   &lt;p&gt; There were ways, of course, to get around the SPA and Central Licensing.  They were themselves illegal.  Dan had had a classmate in software, Frank Martucci, who had obtained an illicit debugging tool, and used it to skip over the copyright monitor code when reading books.  But he had told too many friends about it, and one of them turned him in to the SPA for a reward (students deep in debt were easily tempted into betrayal).  In 2047, Frank was in prison, not for pirate reading, but for possessing a debugger.&lt;/p&gt;   &lt;p&gt; Dan would later learn that there was a time when anyone could have debugging tools.  There were even free debugging tools available on CD or downloadable over the net.  But ordinary users started using them to bypass copyright monitors, and eventually a judge ruled that this had become their principal use in actual practice.  This meant they were illegal; the debuggers' developers were sent to prison.&lt;/p&gt;   &lt;p&gt; Programmers still needed debugging tools, of course, but debugger vendors in 2047 distributed numbered copies only, and only to officially licensed and bonded programmers.  The debugger Dan used in software class was kept behind a special firewall so that it could be used only for class exercises.&lt;/p&gt;   &lt;p&gt; It was also possible to bypass the copyright monitors by installing a modified system kernel.  Dan would eventually find out about the free kernels, even entire free operating systems, that had existed around the turn of the century.  But not only were they illegal, like debuggers--you could not install one if you had one, without knowing your computer's root password.  And neither the FBI nor Microsoft Support would tell you that.&lt;/p&gt;   &lt;p&gt; Dan concluded that he couldn't simply lend Lissa his computer.  But he couldn't refuse to help her, because he loved her.  Every chance to speak with her filled him with delight.  And that she chose him to ask for help, that could mean she loved him too.&lt;/p&gt;   &lt;p&gt; Dan resolved the dilemma by doing something even more unthinkable--he lent her the computer, and told her his password.  This way, if Lissa read his books, Central Licensing would think he was reading them.  It was still a crime, but the SPA would not automatically find out about it.  They would only find out if Lissa reported him.&lt;/p&gt;   &lt;p&gt; Of course, if the school ever found out that he had given Lissa his own password, it would be curtains for both of them as students, regardless of what she had used it for.  School policy was that any interference with their means of monitoring students' computer use was grounds for disciplinary action.  It didn't matter whether you did anything harmful--the offense was making it hard for the administrators to check on you.  They assumed this meant you were doing something else forbidden, and they did not need to know what it was.&lt;/p&gt;   &lt;p&gt; Students were not usually expelled for this--not directly.  Instead they were banned from the school computer systems, and would inevitably fail all their classes.&lt;/p&gt;   &lt;p&gt; Later, Dan would learn that this kind of university policy started only in the 1980s, when university students in large numbers began using computers.  Previously, universities maintained a different approach to student discipline; they punished activities that were harmful, not those that merely raised suspicion.&lt;/p&gt;   &lt;p&gt; Lissa did not report Dan to the SPA.  His decision to help her led to their marriage, and also led them to question what they had been taught about piracy as children.  The couple began reading about the history of copyright, about the Soviet Union and its restrictions on copying, and even the original United States Constitution.  They moved to Luna, where they found others who had likewise gravitated away from the long arm of the SPA.  When the Tycho Uprising began in 2062, the universal right to read soon became one of its central aims.&lt;/p&gt; &lt;p&gt;&lt;br /&gt; Copyright 1996 Richard Stallman&lt;br /&gt; Verbatim copying and distribution of this entire article is permitted in any medium without royalty provided this notice is  preserved.&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;hr /&gt;&lt;br /&gt;There is also an Authors Note and some references in the &lt;a href="http://www.fsf.org/philosophy/right-to-read.html"&gt;main article&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110554713885760401?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.fsf.org/philosophy/right-to-read.html' title='The Right to Read'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110554713885760401/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110554713885760401' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110554713885760401'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110554713885760401'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/right-to-read.html' title='The Right to Read'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110530592826520853</id><published>2005-01-10T02:45:00.000+05:30</published><updated>2005-01-10T02:55:28.266+05:30</updated><title type='text'>Finished reading Five Point Someone</title><content type='html'>Well, it should have not taken so long to read it full. But had got that book when I was not in touch with reading books.&lt;br /&gt;Had met Manish at one of our BLUG meets and he had that book, I kindda wondered what this new book was and was looking through it. Just expected not another kind of  "&lt;span style="font-style: italic;"&gt;Count your eggs before they chicken&lt;/span&gt;" kindda crap. I have not read those, but really dont like to. Dont know why. Perhaps try to read them some time :)&lt;br /&gt;But Manish's review was, if you have enjoyed Dil Chata Hai, you might like this as well and he offered to lend this book to me to read.  I am sorry Manish it took this long and I have not met you next time.&lt;br /&gt;&lt;br /&gt;Lot of friends seem to enjoyed this one. Indeed it was.  Gowri is having this, shall check with zulfi and pass on to him a copy if he has not one already.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110530592826520853?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.fivepointsomeone.com/' title='Finished reading Five Point Someone'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110530592826520853/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110530592826520853' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110530592826520853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110530592826520853'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/finished-reading-five-point-someone.html' title='Finished reading Five Point Someone'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110501457072552256</id><published>2005-01-06T17:59:00.000+05:30</published><updated>2005-01-06T17:59:30.726+05:30</updated><title type='text'>Ode to a School Computer</title><content type='html'>( a fav one :)&lt;br /&gt;&lt;br /&gt;Ode to a School Computer&lt;br /&gt;By David Ahl&lt;br /&gt;&lt;br /&gt;I was stay'in after school a week or so ago&lt;br /&gt;'Cause I told a teacher where she could go&lt;br /&gt;&lt;br /&gt;She had me settin' in this big old room&lt;br /&gt;With a bunch of machines that just looked like doom&lt;br /&gt;&lt;br /&gt;There's this big Mutha machine with flashing' lights&lt;br /&gt;And a couple of funny-looking' electric typewrites&lt;br /&gt;&lt;br /&gt;Well I thought I'd type somethin' for the fun of it&lt;br /&gt;So I hunted and pecked out just one word - "shit"&lt;br /&gt;&lt;br /&gt;Before I could lean back in my chair and get steady&lt;br /&gt;That machine typed WHAT, and then it said READY&lt;br /&gt;&lt;br /&gt;So I typed a whole line of them four-letter words&lt;br /&gt;But it just replied WHAT and READY like it hadn't heard&lt;br /&gt;&lt;br /&gt;Well I figured since I couldn't go out fishin'&lt;br /&gt;I'd teach that stupid machine to listen&lt;br /&gt;&lt;br /&gt;So I picked up this book called Teach yourself BASIC&lt;br /&gt;And sat down at that Teletype prepared to face it&lt;br /&gt;&lt;br /&gt;First I found to make that machine type my bit&lt;br /&gt;I just had to put a PRINT in front of it&lt;br /&gt;&lt;br /&gt;And then I found out that thing could add&lt;br /&gt;And subtract and multiply and divide like mad&lt;br /&gt;&lt;br /&gt;I found out too it knew all kinds of games&lt;br /&gt;Like craps and blackjack and a cannon to aim&lt;br /&gt;&lt;br /&gt;I was havin' all kinds of fun when that teacher walked in&lt;br /&gt;She just looked at my output and started to grin&lt;br /&gt;&lt;br /&gt;I kind of sheepishly asked  if I could stay a while more&lt;br /&gt;She said: "Sure; when you just shut the door".&lt;br /&gt;&lt;br /&gt;I tried some more games like football and poker&lt;br /&gt;And a parachute jump written by some kind of joker&lt;br /&gt;&lt;br /&gt;There was one where I could try to land on the moon&lt;br /&gt;It would crash and blow up if fired the engines too soon&lt;br /&gt;&lt;br /&gt;Well, I played on through supper and into the night&lt;br /&gt;And then finally quit when I saw dawn's first light.&lt;br /&gt;&lt;br /&gt;Some girls, I know are while lot cuter&lt;br /&gt;But  I found a new kind of high with that computer.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110501457072552256?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110501457072552256/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110501457072552256' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110501457072552256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110501457072552256'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/ode-to-school-computer.html' title='Ode to a School Computer'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110497570059116953</id><published>2005-01-06T07:11:00.000+05:30</published><updated>2005-01-06T07:11:40.590+05:30</updated><title type='text'>jff</title><content type='html'>&lt;!-- Converted from text/plain format --&gt; &lt;P&gt;&lt;FONT size=2&gt;The Linux newsgroup kept creeping up the chart.At one point it  made the top forty and I was happy. That was pretty cool. I seem to remember  having written a fairly gloating article to comp.os.linux in which I basically  listed the various os(operating system) newsgroups, including Minix, and said,  "Hey look at this,we're more popular than Windows." Remember that, back then,  people who liked Windows were not on Internet. We made it to the top give  sometime in 1993. I went to bed that night brimming with  self-satisfaction,excited by the fact that Linux had become almost as popular as  sex.&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  - Linus.&lt;BR&gt;&lt;BR&gt;Just completed the &lt;EM&gt;jff &lt;/EM&gt;(just for fun).&lt;BR&gt;&lt;BR&gt;Had  nothing to take from it and it was wonderful.&lt;/FONT&gt; &lt;/P&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110497570059116953?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110497570059116953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110497570059116953' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110497570059116953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110497570059116953'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/jff.html' title='jff'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110496062600353403</id><published>2005-01-06T03:00:00.000+05:30</published><updated>2005-01-06T03:00:26.003+05:30</updated><title type='text'>Firefox again:</title><content type='html'>Went to about:config and replaced&lt;br /&gt;Google:&lt;br /&gt;http://www.google.com/search?lr=&amp;ie=UTF-8&amp;oe=UTF-8&amp;q=&lt;br /&gt;&lt;br /&gt;to:&lt;br /&gt;&lt;br /&gt;Dictionary:&lt;br /&gt;http://dictionary.reference.com/search?q=&lt;br /&gt;&lt;br /&gt;realized that lot of times I was searching for word-meanings when&lt;br /&gt;browsing through the pages and often, I did this using right-click on&lt;br /&gt;the highlighted page,googling it and then using the definition link on&lt;br /&gt;the top bar.&lt;br /&gt;&lt;br /&gt;So now its reduced to a single step process.&lt;br /&gt;&lt;br /&gt;-Time to work on /get knowledge of some extensions. The one discussed&lt;br /&gt;previously and having a google right click menu,wherein on the chosen&lt;br /&gt;word, I could chose to Search web,do Image search,do define: or simply&lt;br /&gt;check the denition from dictionary.com from the right click menu.&lt;br /&gt;Choosing a word and having Google deskbar and using key-combos is a&lt;br /&gt;multiple step process and I dont want to google deskbar or transfer the&lt;br /&gt;highlighted to the FireFox search box at right, I rarely use and often&lt;br /&gt;use the extension to disable it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110496062600353403?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110496062600353403/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110496062600353403' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110496062600353403'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110496062600353403'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/firefox-again.html' title='Firefox again:'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110493708843852824</id><published>2005-01-05T20:28:00.000+05:30</published><updated>2005-01-05T20:28:08.436+05:30</updated><title type='text'>find in linux</title><content type='html'>find / -name "regex"&lt;br /&gt; &lt;br /&gt;find / | xargs grep -r -A5 -B5 "regex"&lt;br /&gt; &lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110493708843852824?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110493708843852824/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110493708843852824' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110493708843852824'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110493708843852824'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/find-in-linux.html' title='find in linux'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110485351944606334</id><published>2005-01-04T21:15:00.000+05:30</published><updated>2005-01-04T21:15:19.446+05:30</updated><title type='text'>Some Refreshing Quiz</title><content type='html'>  &lt;BR&gt; She once famously said, &amp;#8220;I'm just like a menu for my male fans. They look but they can't afford me.&amp;#8221; Featured in a famous ad campaign for a sports product that had an even more famous tagline, she found herself embarrassed by a nude fan who sported the tagline on a placard and streaked into one of her matches. Who is this fading beauty?&lt;BR&gt; &lt;BR&gt; &lt;B&gt;Anna Kournikova&amp;nbsp; &lt;/B&gt;The ad was a campaign for a sports bra and the tagline went, &amp;#8220;Only the balls bounce.&lt;BR&gt; &lt;BR&gt; &lt;BR&gt; She was the winner of the 1999 Sony Viewers&amp;#8217; Choice Miss India Award. Her debut in Bollywood was tagged with a contractual obligation which prevented her from signing any other movie until the date of release of the movie.The director of the movie offered this as explanation &amp;#8211; &amp;#8220;If she signs up another movie, the makers might want to flash her in minis. Now that doesn't necessarily suit the character of _____ that I'm trying to present in the film.&amp;#8221;&amp;nbsp; She was seen on the idiot box in a show called &amp;#8216;Close Up Antakshari&amp;#8217; along with Annu Kapoor.Who are we talking about?&lt;BR&gt; &lt;BR&gt; &lt;BR&gt; &lt;B&gt;Gayatri Joshi &lt;/B&gt;(Swades)&lt;BR&gt; &lt;BR&gt; &lt;BR&gt; A stunning Assamese beauty, she defies the model norm by expressing a fondness for Mathematics and solving puzzles during breaks in shows. Known at one time as possessing the &amp;#8216;best pout&amp;#8217; in the country, she had fair success on the small screen through the Gabbar Remix video with Nirmal Pandey. Which stunner?&lt;BR&gt; &lt;BR&gt; &lt;B&gt;Namrata Barua&lt;BR&gt; &lt;/B&gt;&lt;BR&gt; &lt;BR&gt; She has been chosen to endorse the Arisia range of diamonds and was the first Indian politician to be included in the Guinness Book of Records for &amp;#8216;Margin of victory.&amp;#8217; Who are we talking about?&lt;BR&gt; &lt;BR&gt; &lt;B&gt;Gayatri Devi,&lt;/B&gt; who once made it to a list of the Ten Most Beautiful Women in the World.&lt;BR&gt; &lt;BR&gt; &lt;BR&gt; &lt;BR&gt; She was responsible for bringing the first Apple Macintosh into India. However, she has seen days when obtaining a font in 3D meant cutting it out in wood, painting it and then photographing it. Her company was responsible for the brand building of the Himalayan Drug Company and MTR Food Products. Who are we talking about?&lt;BR&gt; &lt;BR&gt; &amp;quot;The Real Salute&amp;quot; is a ten minute long documentary about whom?&lt;BR&gt; &lt;BR&gt; &lt;B&gt;Kiran Bedi&lt;/B&gt;&lt;BR&gt; &lt;BR&gt; This lady held the title of Most Powerful Business woman every year since fortune magazine began it's annual list of most powerful women in business in 1998.But this year she was beaten for the top slot by e-Bays' Meg Whitman. Who's she?&lt;BR&gt; &lt;BR&gt; &lt;B&gt;Carly Fiorina&lt;/B&gt;&lt;BR&gt; &lt;BR&gt; &lt;BR&gt; &lt;BR&gt; The British Royal Mint in Wales, U.K. released a new coin series honoring a particular movie which had 48 deifferent coins all showing different charachters from the movie. The values ranged from 50 cents to 10 dollars and they can be used for real money in New Zealand. Now u have to tell me which movie and why this particular favor for new zealand?&lt;BR&gt; &lt;BR&gt; &lt;B&gt;LoTR&lt;/B&gt;&lt;BR&gt; &lt;BR&gt; For every 1% growth in China's GDP, Indian exports fall by?&lt;BR&gt; &lt;BR&gt; &lt;B&gt;0.13%. Three international economists conducted this piece of research. The research found that the more a country's exports are composed of intermediate and capital goods, the less affected that country is by Chinese exports.&lt;BR&gt; &lt;BR&gt; &lt;/B&gt;&lt;BR&gt; &lt;TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%"&gt; &lt;TR&gt; &lt;TD&gt; http://usr.blogspot.com &lt;/TD&gt; &lt;/TR&gt; &lt;/TABLE&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110485351944606334?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110485351944606334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110485351944606334' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110485351944606334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110485351944606334'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2005/01/some-refreshing-quiz.html' title='Some Refreshing Quiz'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110434075005017134</id><published>2004-12-29T22:49:00.000+05:30</published><updated>2004-12-29T22:49:10.050+05:30</updated><title type='text'>FireFox Extension Idea</title><content type='html'>I select a portion of the website, which has lots of links and choose to&lt;br /&gt;open the links as tabs.&lt;br /&gt;All the links should open as in the multiple tabs.&lt;br /&gt;&lt;br /&gt;I guess this would help me while reading slashdot and similar sites&lt;br /&gt;which has lots of hyperlinks.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;http://usr.blogspot.com &lt;br /&gt;&lt;br /&gt;All true wisdom is found on T-shirts.&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110434075005017134?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110434075005017134/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110434075005017134' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110434075005017134'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110434075005017134'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2004/12/firefox-extension-idea.html' title='FireFox Extension Idea'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5899547.post-110423394369309242</id><published>2004-12-28T16:58:00.000+05:30</published><updated>2004-12-28T17:36:48.380+05:30</updated><title type='text'>2004 Indian Ocean Earthquake</title><content type='html'>&lt;a href="http://en.wikipedia.org/wiki/2004_Indian_Ocean_earthquake"&gt;&lt;img style="width: 414px; height: 510px;" src="http://staff.aist.go.jp/kenji.satake/animation.gif" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Check for the Infomation and news&lt;a href="http://en.wikipedia.org/wiki/2004_Indian_Ocean_earthquake"&gt;  here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;h3&gt;Calling for some Immediate Action:&lt;/h3&gt; &lt;div style="text-align: left;"&gt; &lt;p&gt;Large amounts of humanitarian aid are needed due to widespread damage to infrastructure, food and water shortages and economic damage to the fishing and tourism industries. Epidemics are of special concern, as they are highly likely due to the high population density and tropical climate of the affected areas. The United Nations has stated that the largest relief operation in history is underway.&lt;/p&gt;  &lt;p&gt;The overwhelming concern of humanitarian and government agencies is to quickly identify and bury the dead before they become a health issue and contribute to the spread of diseases such as &lt;a href="http://en.wikipedia.org/wiki/Cholera" title="Cholera"&gt;cholera&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Diphtheria" title="Diphtheria"&gt;diphtheria&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Dysentery" title="Dysentery"&gt;dysentery&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Typhoid" title="Typhoid"&gt;typhoid&lt;/a&gt;. Other high priorities are delivery of medical supplies and personnel to overwhelmed hospitals and clinics, tent shelters and clothing to people who have lost their houses and belongings, and potable water. Many usual sources of water were spoiled either by salt water, broken by the force of the tsunami, or contaminated with bodies of dead people or livestock, requiring water purification equipment or trucking potable water into the affected region. (Information from wikipedia)&lt;br /&gt;&lt;/p&gt; &lt;p&gt;These are the following sites which are accepting &lt;span style="font-weight: bold;"&gt;donations for relief efforts&lt;/span&gt;:&lt;br /&gt;&lt;/p&gt; &lt;/div&gt;&lt;br /&gt;&lt;a href="http://pay.hindu.com/thrfpay/thrfpay.jsp"&gt;The Hindu Relief Fund  &lt;/a&gt;&lt;span style="font-size:78%;"&gt;&lt;br /&gt;&lt;a href="http://pay.hindu.com/thrfpay/thrfpay.jsp"&gt;(Accepting Online Donation using  CreditCard)&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://pmindia.nic.in/relief.htm"&gt;Indian Prime Ministers Relief Fund&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.tn.gov.in/misc/cmprf2003.htm"&gt;Tamil Nadu Cheif Ministers Relief Fund&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/2004_Indian_Ocean_earthquake#Sites_accepting_on-line_donations_for_relief_efforts"&gt;Others&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5899547-110423394369309242?l=orsenthil.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://en.wikipedia.org/wiki/2004_Indian_Ocean_earthquake' title='2004 Indian Ocean Earthquake'/><link rel='replies' type='application/atom+xml' href='http://orsenthil.blogspot.com/feeds/110423394369309242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5899547&amp;postID=110423394369309242' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110423394369309242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5899547/posts/default/110423394369309242'/><link rel='alternate' type='text/html' href='http://orsenthil.blogspot.com/2004/12/2004-indian-ocean-earthquake.html' title='2004 Indian Ocean Earthquake'/><author><name>Senthil Kumaran</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh3.googleusercontent.com/-xzrzQ5Ehqr4/AAAAAAAAAAI/AAAAAAAAAAA/4xHGk-b3vAk/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry></feed>
