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

<channel>
	<title>as.i.like.it</title>
	<atom:link href="http://ankitwise.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ankitwise.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 01 Jul 2011 06:04:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ankitwise.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>as.i.like.it</title>
		<link>http://ankitwise.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ankitwise.wordpress.com/osd.xml" title="as.i.like.it" />
	<atom:link rel='hub' href='http://ankitwise.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Course registration by a &#8216;robot&#8217; :)</title>
		<link>http://ankitwise.wordpress.com/2009/08/11/course-registration-by-a-robot/</link>
		<comments>http://ankitwise.wordpress.com/2009/08/11/course-registration-by-a-robot/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 14:00:55 +0000</pubDate>
		<dc:creator>ankitwise</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://ankitwise.wordpress.com/?p=82</guid>
		<description><![CDATA[Everyone knows, course registration is the suckiest part of the semester. Apart from the fucked up ISAS portal, its because of the following steps that each one of us needs to perform - 1) Fill up the form in a damn hurry. 2) Check if all the courses are entered properly. 3) Click the &#8216;Update&#8217; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=82&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Everyone knows, course registration is the suckiest part of the semester. Apart from the fucked up ISAS portal, its because of the following steps that each one of us needs to perform -</p>
<p>1) Fill up the form in a damn hurry.<br />
2) Check if all the courses are entered properly.<br />
3) Click the &#8216;Update&#8217; button.<br />
4) Hope that you are in.</p>
<p>Now, step 2 is a very big problem. If you do it, you are late, and if you don&#8217;t, you may be dead before you know it. So, I decided to let my computer take control of step 1. Hence, started searching if there is anything that can automatically type letters, and found a Java class called &#8216;Robot&#8217;. Without wasting any time, wrote a simple program that can fill my form just as I would possibly have done. Here it goes, entering my courses&#8230;</p>
<p>&#8212;Start Program&#8212;</p>
<pre><font color="brown">
import java.awt.Robot;

class CourseRegistration {

    private static Robot robot;

    public static void Type(int key) {

        robot.keyPress(key);
        robot.keyRelease(key);
    }

    public static void FillForm(){

        int i;
        // Select the first field by pressing a 'TAB'
        Type(9);
        // Register for Major Project II by pressing 'M' 3 times
        for (i=0;i&lt;3;i++) Type(&#39;M&#39;);
        // Select the next field by pressing &#39;TAB&#39; 3 times
        for (i=0;i&lt;3;i++) Type(9);
        // Register for Project (4 C 7th sem) by Pressing &#39;P&#39; 18 times
        for (i=0;i&lt;18;i++)Type(&#39;P&#39;);
        // Select the next field by pressing &#39;TAB&#39; 3 times
        for (i=0;i&lt;3;i++) Type(9);
        // Register for Linear Programming by pressing &#39;L&#39; 5 times
        for (i=0;i&lt;5;i++) Type(&#39;L&#39;);
        // Select the next field by pressing &#39;TAB&#39; 3 times
        for (i=0;i&lt;3;i++) Type(9);
        // Register for English Literature by pressing &#39;E&#39; 8 times
        for (i=0;i&lt;8;i++) Type(&#39;E&#39;);
        // Finally, just to be safe, press a &#39;TAB&#39;
        Type(9);
        // Done!
    }

    public static void main(String[] args) {

        try {
            Thread.sleep(1000);
            robot = new Robot();
            FillForm();
        } catch (Exception e) {
        }
    }
}

</font></pre>
<p>&#8212;End Program&#8212;</p>
<p>Steps (although quite obvious) one need to follow after making suitable changes are -<br />
1) Open the special registration page.<br />
2) Make the fields &#8216;&#8212;None&#8212;&#8217; and set the mark above the actual form.<br />
3) Compile the program.<br />
4) Run it and alt-tab the special registration page within 1 sec.<br />
5) Update and be happy.</p>
<p>PS0) May be some of us already knew about it. Anyways its interesting.<br />
PS1) Found &#8220;Motto : ?&#8221; written on our colleges&#8217; wiki page. No offence but that seems true.<br />
PS2) Happy next sem to all of you. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>samwise</p>
<br />Posted in Computers, Fun, Technical  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankitwise.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankitwise.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankitwise.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankitwise.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankitwise.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankitwise.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankitwise.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankitwise.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankitwise.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankitwise.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankitwise.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankitwise.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankitwise.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankitwise.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=82&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankitwise.wordpress.com/2009/08/11/course-registration-by-a-robot/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/383fe2fc6af6eefd1ff544a8a64bebf3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Samwise</media:title>
		</media:content>
	</item>
		<item>
		<title>Surf&#8217;s Up</title>
		<link>http://ankitwise.wordpress.com/2008/05/22/surfs-up/</link>
		<comments>http://ankitwise.wordpress.com/2008/05/22/surfs-up/#comments</comments>
		<pubDate>Thu, 22 May 2008 18:29:13 +0000</pubDate>
		<dc:creator>ankitwise</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://ankitwise.wordpress.com/?p=29</guid>
		<description><![CDATA[&#8220;You know, kid, never give up. Find a way, &#8217;cause that&#8217;s what winners do&#8221;. OMG! When did I last heard anything like this in an animated feature. I don&#8217;t think I ever did. This is the 2007 Academy Award nominated &#8220;Surf&#8217;s Up&#8221; from Sony Pictures Animation and believe me this one is surely two thumbs [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=29&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;You know, kid, never give up. Find a way, &#8217;cause that&#8217;s what winners do&#8221;. OMG! When did I last heard anything like this in an animated feature. I don&#8217;t think I ever did. This is the 2007 Academy Award nominated &#8220;Surf&#8217;s Up&#8221;  from Sony Pictures Animation and believe me this one is surely two thumbs up. The film is a mockumentary on the life of a rockhopper penguin Cody Maverick. Its striking, dazzling, hilarious, backed up by its amazing soundtrack with songs like &#8220;Drive&#8221; by Incubus, &#8220;Holiday&#8221; and &#8220;Welcome to Paradise&#8221; by Green Day featuring in the film. I think many of us won&#8217;t see it just because its not a Disney or a Pixar flick, but its so much better than its biggest rival Pixar&#8217;s 2007 Academy Award winner &#8220;Ratatouille&#8221;. Some pics btw &#8230;</p>
<p><span style="color:brown;">Surf&#8217;s Up Poster</span><br />
<a href="http://ankitwise.files.wordpress.com/2008/05/1179762883.jpg"><img class="aligncenter size-full wp-image-35" src="http://ankitwise.files.wordpress.com/2008/05/1179762883.jpg?w=530&#038;h=330" alt="" width="530" height="330" /></a></p>
<p><span style="color:brown;">Chicken Joe, full of luck, out of brains</span><br />
<a href="http://ankitwise.files.wordpress.com/2008/05/chicken-joe.jpg"><img class="aligncenter size-medium wp-image-38" src="http://ankitwise.files.wordpress.com/2008/05/chicken-joe.jpg?w=530&#038;h=330" alt="" width="530" height="330" /></a></p>
<p>PS time&#8230;<br />
0:- Song of the day &#8211; Love Hurts by Incubus<br />
1:- My latest wallpaper</p>
<p><span style="color:brown;">Drew Barrymore</span><br />
<a href="http://ankitwise.files.wordpress.com/2008/05/drew-barrymore-1024x768-3889.jpg"><img class="aligncenter size-medium wp-image-39" src="http://ankitwise.files.wordpress.com/2008/05/drew-barrymore-1024x768-3889.jpg?w=530&#038;h=330" alt="" width="530" height="330" /></a></p>
<p>Aw man, I&#8217;m in love with her.</p>
<p>samwise</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ankitwise.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ankitwise.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankitwise.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankitwise.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankitwise.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankitwise.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankitwise.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankitwise.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankitwise.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankitwise.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankitwise.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankitwise.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankitwise.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankitwise.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankitwise.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankitwise.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=29&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankitwise.wordpress.com/2008/05/22/surfs-up/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/383fe2fc6af6eefd1ff544a8a64bebf3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Samwise</media:title>
		</media:content>

		<media:content url="http://ankitwise.files.wordpress.com/2008/05/1179762883.jpg" medium="image" />

		<media:content url="http://ankitwise.files.wordpress.com/2008/05/chicken-joe.jpg?w=300" medium="image" />

		<media:content url="http://ankitwise.files.wordpress.com/2008/05/drew-barrymore-1024x768-3889.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>&#8220;Desperate Roses&#8221;</title>
		<link>http://ankitwise.wordpress.com/2008/02/02/desperate-roses/</link>
		<comments>http://ankitwise.wordpress.com/2008/02/02/desperate-roses/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 08:42:30 +0000</pubDate>
		<dc:creator>ankitwise</dc:creator>
				<category><![CDATA[Hope]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Mood]]></category>
		<category><![CDATA[Poem]]></category>

		<guid isPermaLink="false">http://ankitwise.wordpress.com/?p=26</guid>
		<description><![CDATA[I always wanted to do this. Write a poem, though a short one, may not be as good as I thought it should have been. I suppose, each one of us would have felt this atleast one time in his/her life. This is one of those moments when you are feeling so lost, and you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=26&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I always wanted to do this. Write a poem, though a short one, may not be as good as I thought it should have been. I suppose, each one of us would have felt this atleast one time in his/her life. This is one of those moments when you are feeling so lost, and you are not sure what the things around mean. So, here it goes&#8230;</p>
<p>&#8220;<font color="#333333">Desperate Roses</font>&#8220;</p>
<p><font color="#993300">Soaring like a ship<br />
Sinking like a kite<br />
Intelligent like a mule<br />
Dumb like a scientist<br />
I&#8217;m not in my best of the pose<br />
Am as desperate as a rose</font></p>
<p><font color="#993300">I can feel the moment<br />
I can feel it within<br />
But I can&#8217;t feel myself<br />
My feet are still<br />
Am I wrong, am I right<br />
I don&#8217;t know, I can&#8217;t decide</font></p>
<p><font color="#993300">But I know, I&#8217;m very strong<br />
My heart says I am<br />
To overcome this moment<br />
I&#8217;ll come out with a plan<br />
Then this world will see something<br />
Unexpected as I am</font></p>
<p>That&#8217;s it. I&#8217;m not sure why I chose the words &#8220;desperate as a rose&#8221;, may be cause a rose so desperately wants to reach its fate, the hands of a simple, beautiful girl.</p>
<p>PS0 : I am desperate to go home, someone&#8217;s waiting with a surprise.<br />
PS1 : How the hell in the world I got an &#8216;A&#8217; in OT ?<br />
PS2 : Life is getting more and more hectic here.</p>
<p>samwise</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ankitwise.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ankitwise.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankitwise.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankitwise.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankitwise.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankitwise.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankitwise.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankitwise.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankitwise.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankitwise.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankitwise.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankitwise.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankitwise.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankitwise.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankitwise.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankitwise.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=26&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankitwise.wordpress.com/2008/02/02/desperate-roses/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/383fe2fc6af6eefd1ff544a8a64bebf3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Samwise</media:title>
		</media:content>
	</item>
		<item>
		<title>God Damn, Damn Small Linux aka DSL</title>
		<link>http://ankitwise.wordpress.com/2007/10/15/god-damn-damn-small-linux-aka-dsl/</link>
		<comments>http://ankitwise.wordpress.com/2007/10/15/god-damn-damn-small-linux-aka-dsl/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 09:11:16 +0000</pubDate>
		<dc:creator>ankitwise</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://ankitwise.wordpress.com/2007/10/15/god-damn-damn-small-linux-aka-dsl/</guid>
		<description><![CDATA[This is my first post, and I am not gonna talk funny here&#8230;..or am I! That was a sunday night, project was finally over ( wish Jawahar has the same thoughts), with just some documentation remaining. Bored with enough of orkutting and movie watching ( just finished watching Shawshank Redemption for the fourth time ), [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=7&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>        This is my first post, and I am not gonna talk funny here&#8230;..or am I!</p>
<p>That was a sunday night, project was finally over ( wish Jawahar has the same thoughts), with just some documentation remaining. Bored with enough of orkutting and movie watching ( just finished watching <font color="#993300">Shawshank Redemption</font> for the fourth time ), I just glanced at my desktop to find something interesting, and see what did I find&#8230;<font color="#993300">.</font><font color="#993300">QEMU</font> Manager. Lets use it again&#8230;..oh yes the first time I used it for <font color="#993300">Ubuntu 7.04</font> and that went so slow and heavy that the terminal used to open like the curtains drop after finishing of an act in a theater. Fed Up. After all that&#8217;s quite a full fleshed, heavy linux (Ubuntu RoX).</p>
<p>Now, what should I do wid QEMU. That&#8217;s pinching in my eyes. Lets  try something terribly small. <font color="#993300">Damn Small Linux</font>. Many ya geeks out there would definitely have heard about that damn thing. That&#8217;s a business card size bootable Live CD desktop derivative of  <font color="#993300">Knoppix</font>. I downloaded the 49.5 MB DSL3.4.4  ISO (that&#8217;s strangely and terribly small for an OS, wonder what will it have for the users!). I can&#8217;t wait, lets try.</p>
<p>Loaded the ISO in a virtual drive&#8230;.</p>
<p>Configured and started QEMU&#8230;.</p>
<p>And vrooooom&#8230;.within 15-20 sec it took me to its DSL world. A pleasant looking desktop loaded wid  neither  a  menu  button nor even a taskbar, but wid some applications hanging out here and there on the window ( <font color="#993300">Fluxbox</font> window manager, as they call it ). They say, install &#8220;<font color="#993300">icewm</font>&#8221; if you wanna get a taskbar and a menu&#8230;I say, why do you always have to follow the traditional way.  Here are some DSL screenshots&#8230;</p>
<p><a href="http://ankitwise.files.wordpress.com/2007/10/desktop.jpg" title="DSL Desktop">  </a><a href="http://ankitwise.files.wordpress.com/2007/10/desktop2.jpg" title="Desktop"><img src="http://ankitwise.files.wordpress.com/2007/10/desktop2.thumbnail.jpg?w=200" alt="Desktop" width="200" height="150/"></a> <a href="http://ankitwise.files.wordpress.com/2007/10/more.jpg" title="More Applications"><img src="http://ankitwise.files.wordpress.com/2007/10/more.thumbnail.jpg?w=200&#038;h=150" alt="More Applications" width="200" height="150" /></a>             <a href="http://ankitwise.files.wordpress.com/2007/10/apps3.jpg" title="Applications Running"><img src="http://ankitwise.files.wordpress.com/2007/10/apps3.thumbnail.jpg?w=200" alt="Applications Running" width="200" height="150/"></a><a href="http://ankitwise.files.wordpress.com/2007/10/net.jpg" title="Internet on DSL"> </a></p>
<p>Upper right corner of the desktop shows some system parameters. When I ran a firefox, <font color="#993300">xzgv</font>( Image Viewer ), <font color="#993300">Beaver<br />
</font>( editor ),<font color="#993300"> </font><font color="#993300">Siag</font> (spreadsheet) and xmms, it showed&#8230;</p>
<p>Processes : 35</p>
<p>CPU usage : 2% ( may be that&#8217;s why P.K.Reddy was always worried about CPU sitting idle )</p>
<p>Ram : 40.8 MB ( and what did I gave&#8230;512 MB )</p>
<p>In the lower right corner is an applet for mixer settings and drive mounting. And of course concentrated in the upper left corner are icons for useful applications. This damn thing can even boot from a USB drive. The most hilarious part was its ability to boot on a system without a hard drive. It uses <font color="#993300">ramdisk</font> as its installation area. All the useful applications are just a right mouse click away. There is a postscript viewer, a <font color="#993300">Sqlite Book</font>, options of configuring ssh, ftp, nfs servers and many more. DSL panel concentrates most of the system configurations and management options in a single spot.</p>
<p><a href="http://ankitwise.files.wordpress.com/2007/10/bizcard.jpg" title="BizCard"><img src="http://ankitwise.files.wordpress.com/2007/10/bizcard.thumbnail.jpg?w=200" alt="BizCard" width="200" height="150/"></a>   <a href="http://ankitwise.files.wordpress.com/2007/10/moreapps.jpg" title="moreapps.jpg"> </a><a href="http://ankitwise.files.wordpress.com/2007/10/moreapps.jpg" title="moreapps.jpg"><img src="http://ankitwise.files.wordpress.com/2007/10/moreapps.thumbnail.jpg?w=200" alt="moreapps.jpg" width="200" height="150/"></a><a href="http://ankitwise.files.wordpress.com/2007/10/simple1.jpg" title="Simple">       <img src="http://ankitwise.files.wordpress.com/2007/10/simple1.thumbnail.jpg?w=200&#038;h=150" alt="Simple" width="200" height="150"></a></p>
<p>The night passed swiftly. As morning approached, I turned off my virtual machine&#8230;.and slept. And if you are still wondering why didn&#8217;t I install it on my system&#8230;&#8230;.RECONSIDER!</p>
<p>samwise</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ankitwise.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ankitwise.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankitwise.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankitwise.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankitwise.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankitwise.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankitwise.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankitwise.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankitwise.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankitwise.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankitwise.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankitwise.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankitwise.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankitwise.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankitwise.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankitwise.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankitwise.wordpress.com&amp;blog=1713451&amp;post=7&amp;subd=ankitwise&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankitwise.wordpress.com/2007/10/15/god-damn-damn-small-linux-aka-dsl/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/383fe2fc6af6eefd1ff544a8a64bebf3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Samwise</media:title>
		</media:content>

		<media:content url="http://ankitwise.files.wordpress.com/2007/10/desktop2.thumbnail.jpg" medium="image">
			<media:title type="html">Desktop</media:title>
		</media:content>

		<media:content url="http://ankitwise.files.wordpress.com/2007/10/more.thumbnail.jpg" medium="image">
			<media:title type="html">More Applications</media:title>
		</media:content>

		<media:content url="http://ankitwise.files.wordpress.com/2007/10/apps3.thumbnail.jpg" medium="image">
			<media:title type="html">Applications Running</media:title>
		</media:content>

		<media:content url="http://ankitwise.files.wordpress.com/2007/10/bizcard.thumbnail.jpg" medium="image">
			<media:title type="html">BizCard</media:title>
		</media:content>

		<media:content url="http://ankitwise.files.wordpress.com/2007/10/moreapps.thumbnail.jpg" medium="image">
			<media:title type="html">moreapps.jpg</media:title>
		</media:content>

		<media:content url="http://ankitwise.files.wordpress.com/2007/10/simple1.thumbnail.jpg" medium="image">
			<media:title type="html">Simple</media:title>
		</media:content>
	</item>
	</channel>
</rss>
