<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>Prometheus</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/" />
<modified>2004-11-20T12:38:04Z</modified>
<tagline>My Thoughts - My Words - My Mind</tagline>
<id>tag:prometheus.rationalmind.net,2004://4</id>
<generator url="http://www.movabletype.org/" version="3.121">Movable Type</generator>
<copyright>Copyright (c) 2004, dpillay</copyright>
<entry>
<title>Victor Hugo!</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/11/victor_hugo.html" />
<modified>2004-11-20T12:38:04Z</modified>
<issued>2004-11-20T12:35:53Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1145</id>
<created>2004-11-20T12:35:53Z</created>
<summary type="text/plain">Today I recieved two books both by the author Victor Hugo!! I finally get the chance to read his works. The books I got are &quot;The Hunchback of Notre-Dame&quot; and &quot;Les Miserables&quot;. Looking forward to some fascinating reading!!...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Miscellaneous</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Today I recieved two books both by the author Victor Hugo!! I finally get the chance to read his works. The books I got are "The Hunchback of Notre-Dame" and "Les Miserables".</p>

<p>Looking forward to some fascinating reading!!</p>]]>

</content>
</entry>
<entry>
<title>It&apos;s Been a While</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/11/its_been_a_whil.html" />
<modified>2004-11-20T09:12:27Z</modified>
<issued>2004-11-20T09:08:44Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1144</id>
<created>2004-11-20T09:08:44Z</created>
<summary type="text/plain">It&apos;s been a while since I last posted. Lots of great things have happened in the last 3 months. The course at C-DAC is going real good, learnt quite a few things out here. Will write more on it later....</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Miscellaneous</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>It's been a while since I last posted. Lots of great things have happened in the last 3 months. The course at C-DAC is going real good, learnt quite a few things out here. Will write more on it later.<br />
</p>]]>

</content>
</entry>
<entry>
<title>The Objectivism Research CD-ROM</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/06/the_objectivism_1.html" />
<modified>2004-06-15T17:04:03Z</modified>
<issued>2004-06-15T16:50:23Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1038</id>
<created>2004-06-15T16:50:23Z</created>
<summary type="text/plain">I recieved today my copy of The Objectivism Research CD-ROM!! Finally I get to read the remaining works of Ayn Rand, those which I could never before get my hands on. Especially looking forward to read &quot;Capitalism: The Unknown Ideal&quot;...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Philosophy</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>I recieved today my copy of The Objectivism Research CD-ROM!! Finally I get to read the remaining works of Ayn Rand, those which I could never before get my hands on. Especially looking forward to read <em>"Capitalism: The Unknown Ideal"</em> and <em>"Introduction to Objectivist Epistemology"</em>. I'm going to truly enjoy the rest of my vacations!!</p>

<p>Here's to Ayn Rand, for the person she was and for the invaluable gift she left behind for all of us, Objectivism!</p>

<p><em>"I swear by my life and my love of it that I will never live for the sake of another man, nor ask another man to live for mine."</em> - <a href="http://www.aynrand.org" target=_blank>Ayn Rand</a><br />
</p>]]>

</content>
</entry>
<entry>
<title>N-queens Solution</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/06/nqueens_solutio.html" />
<modified>2004-06-10T10:16:39Z</modified>
<issued>2004-06-09T18:16:03Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1034</id>
<created>2004-06-09T18:16:03Z</created>
<summary type="text/plain">Heard about the 8-queens problem? I think most CS guys are familiar with it. I was generally trying to brush up with my C++, so I thought I&apos;d try to generate the solutions to the 8-queens problem (there are 92...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Programming</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Heard about the 8-queens problem? I think most CS guys are familiar with it. I was generally trying to brush up with my C++, so I thought I'd try to generate the solutions to the 8-queens problem (there are 92 of them). Then I thought if I'm going for a solver might as well make it a generic one and so I wrote the following code to solve n-queens for any given n.</p>

<p>The source code can be found here : <a href="http://prometheus.rationalmind.net/files/win/ChessWinOptimum.zip">Windows</a> & <a href="http://prometheus.rationalmind.net/files/linux/ChessLinuxOptimum.zip">Linux</a></p>

<p>If you want some R&D, that is the ones in which I tried to find all possible permutations (which resulted in duplicates), then those can be found here: <a href="http://prometheus.rationalmind.net/files/win/ChessWin.tar.bz2">Windows</a> & <a href="http://prometheus.rationalmind.net/files/linux/ChessLinux.tar.bz2">Linux</a>. These programs are much slower than the previous one's.</p>

<p>Have fun with the code!!!<br />
</p>]]>

</content>
</entry>
<entry>
<title>Gentoo Linux</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/06/gentoo_linux.html" />
<modified>2004-06-05T13:15:03Z</modified>
<issued>2004-06-05T11:15:05Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1033</id>
<created>2004-06-05T11:15:05Z</created>
<summary type="text/plain">Just installed Gentoo Linux on my machine a few days back. So now, I have a dual boot of Windows XP Professional and Gentoo. I was earlier using Red Hat 9.0, but I got really bored of it and hence...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Programming</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Just installed Gentoo Linux on my machine a few days back. So now, I have a dual boot of Windows XP Professional and Gentoo. I was earlier using Red Hat 9.0, but I got really bored of it and hence decided to go for Gentoo.</p>

<p>Their installation uses the Knoppix concept of LiveCD and is pretty cool. I wrote a script which can help newbie users install Gentoo using the Stage 3 tarball. The script can be found <a href="http://prometheus.rationalmind.net/files/linux/gentooinstall.tar.bz2">here.</a> This particular version of the script is not tested, I used a more machine specific script for myself. Once I installed Gentoo and updated the system, I converted the script to it's present form, hence it may contain errors. If you find any, please inform me about it.</p>

<p>Gentoo's package management system "Portage" simply rocks!! All in all, since I'm still in a R&D sort of a phase with GNU/Linux, I have to say that Gentoo has been a lot of fun to work with and learn.<br />
</p>]]>

</content>
</entry>
<entry>
<title>Off to Bangalore!!</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/06/off_to_bangalor.html" />
<modified>2004-06-01T16:06:43Z</modified>
<issued>2004-06-01T15:57:47Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1031</id>
<created>2004-06-01T15:57:47Z</created>
<summary type="text/plain">Well, today turned out to be a very good day indeed. I was greeted early in the morning with the news that I had got into the Centre for Development of Advanced Computing (C-DAC), Bangalore. It&apos;s a one year Full-Time...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>College</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Well, today turned out to be a very good day indeed. I was greeted early in the morning with the news that I had got into the Centre for Development of Advanced Computing (C-DAC), Bangalore. It's a one year Full-Time Post Graduation Diploma in Software Technology (FPGDST). The course starts in the second week of August!!</p>

<p>Here's to Bangalore and a challenging year ahead!<br />
</p>]]>

</content>
</entry>
<entry>
<title>List of Books</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/list_of_books.html" />
<modified>2004-05-25T05:30:21Z</modified>
<issued>2004-05-25T05:25:36Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1029</id>
<created>2004-05-25T05:25:36Z</created>
<summary type="text/plain">In my two months of vacation, I&apos;d like to read/re-read the following books. I say re-read &apos;cause some of them have been read by me before, I just need to brush up. 1) The C++ Programming Language - Bjarne Stroustrup...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Programming</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>In my two months of vacation, I'd like to read/re-read the following books. I say re-read 'cause some of them have been read by me before, I just need to brush up.</p>

<p>1) The C++ Programming Language - Bjarne Stroustrup<br />
2) Mathematics for 3D Game Programming & Computer Graphics - Eric Lengyel<br />
3) OpenGL Game Programming - Dave Astle<br />
4) 3D Game Engine Design - David Eberly<br />
5) Artificial Intelligence - Russell, Norvig</p>

<p>Long list eh? I hope I can go through all of them, 'cause I'll be soon recieving the "The Objectivist Research CD-Rom". And I just know I won't be able to put that down.</p>

<p>Productive two months? HELL YEAH!!<br />
</p>]]>

</content>
</entry>
<entry>
<title>Free at Last!!!</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/free_at_last.html" />
<modified>2004-06-01T16:18:33Z</modified>
<issued>2004-05-25T04:01:47Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1028</id>
<created>2004-05-25T04:01:47Z</created>
<summary type="text/plain">Yesterday marked the end of my Engineering course!! One more year of college through a Post Graduation in Software Technology and then I&apos;ll be out in the real world!! Can&apos;t wait for it!! Well, here&apos;s to even more productive years...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>College</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Yesterday marked the end of my Engineering course!! One more year of college through a Post Graduation in Software Technology and then I'll be out in the real world!! Can't wait for it!!</p>

<p>Well, here's to even more productive years ahead and to the two months of well deserved rest that begins today. I finally get to finish all those computer books!<br />
</p>]]>

</content>
</entry>
<entry>
<title>The Common Minimum Programme of Congress</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/the_common_mini.html" />
<modified>2004-05-22T14:07:06Z</modified>
<issued>2004-05-22T03:40:46Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1027</id>
<created>2004-05-22T03:40:46Z</created>
<summary type="text/plain">Over at rediff.com, I just read the CMP of the United Progressive Alliance (Congress and it allies). One point made was that &quot;All regulatory institutions will be strengthened to ensure that competition is free and fair. These institutions will be...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Politics</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Over at <a href="http://www.rediff.com" target=_blank>rediff.com</a>, I just read the CMP of the United Progressive Alliance (Congress and it allies).</p>

<p>One point made was that <em>"All regulatory institutions will be strengthened to ensure that competition is free and fair. These institutions will be run professionally."</em></p>

<p>LOL!!!! Perhaps they should read up on what constitutes "competition".</p>

<p>The CMP is laden with more social than economic growth. The repeated connotations to "rural prosperity" & "poverty abolishment", keeps making me think of more elaborate state expenditure. Those taken out of context are great, but whose money are they going to drain to achieve it. Thats the question.<br />
</p>]]>

</content>
</entry>
<entry>
<title>Pro-Reform Prime Minister!</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/proreform_prime.html" />
<modified>2004-05-20T03:54:35Z</modified>
<issued>2004-05-20T03:44:14Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1024</id>
<created>2004-05-20T03:44:14Z</created>
<summary type="text/plain">Yesterday, it was finally ratified that Dr. Manmohan Singh will be the new Prime Minister of India. Being an economist who is pro-reform, this is definitely good news. He has said that the reforms will continue though with a &quot;human-face&quot;....</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Politics</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Yesterday, it was finally ratified that Dr. Manmohan Singh will be the new Prime Minister of India. Being an economist who is pro-reform, this is definitely good news. He has said that the reforms will continue though with a "human-face". We'll wait to see exactly what that implies.</p>

<p>One thing's for sure, at this stage our economic future does look brighter. The reaction at Dalal Street is certainly indicative of that.<br />
</p>]]>

</content>
</entry>
<entry>
<title>The Art of Studying</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/the_art_of_stud.html" />
<modified>2004-05-18T16:39:52Z</modified>
<issued>2004-05-18T15:39:18Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1021</id>
<created>2004-05-18T15:39:18Z</created>
<summary type="text/plain">Being in the midst of my final semester engineering exams, I found myself contemplating the various methodologies that students employ to study a subject. I think this can be broadly classified as those who study by rote memorization and those...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>College</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Being in the midst of my final semester engineering exams, I found myself contemplating the various methodologies that students employ to study a subject. I think this can be broadly classified as those who study by rote memorization and those who conceptually try to understand (at varying degrees) that which they are trying to study.</p>

<p>Every student, irrespective of their particular year of schooling, has his own perspective about how one should go about studying. There are hordes of students who just go through every subject on rote memory. The consequence of this is you have engineers who don't know the difference between a computer based control system and a manually operated lever (hey!! both of them get us equal marks!). I know of so many, who know every formula in the book by heart but when asked to apply it to a particular problem have no clue as to where to start.</p>

<p>This isn't just about the students. It also deals with the way they were taught in the first place. If you are told again and again as a kid to by-heart every word from the text, you keep doing that without seeing how it harms you. Teachers can make or break a mind by telling it not to question or try to understand that which they are confronted with.</p>

<p>The primary purpose of studying is not to pass your exams or please your parents, but to enhance your efficacy for when you foray out into the world. A world of challenges, competence and profit. Those hours of rote memorization may get you into a job, but it will not substitute that which is required to keep your job, a thinking mind.</p>

<p>As far as I can remember, I never submitted to this credo. I have always been one of those who believe, with good reason, that a person should always comprehend that which one is studying. If you are opening your mouth to say "Hey! Marks are important!", don't, they are, in the context of keeping yourself in college, but do you suppose that one goes about getting them just by by-hearting every goddamned word in the book? What purpose would that serve? What would happen to you with a paper which was actually challenging? What aspect of your studies could you then rely upon to solve an unorthodox problem? What knowledge would you carry on beyond your college? Answer - NONE. That is what rote memorization brings you, paper money for what should have been gold. It will take you only that far, no more.</p>

<p>Unfortunately, the Indian Education system is not one which tries to expand a child's mind. What it does do (or tries) is to kill every small moment of independent thought by substituting marks for knowledge. One professor , a few years back, proved this very eloquently by saying "Let's get the marks first, then we'll think about knowledge".</p>

<p>Ayn Rand in "The Comprachicos" once said "The only purpose of education is to teach a student how to live his life — by developing his mind and equipping him to deal with reality. The training he needs is theoretical, i.e., conceptual. He has to be taught to think, to understand, to integrate, to prove. He has to be taught the essentials of the knowledge discovered in the past — and he has to be equipped to acquire further knowledge by his own effort."</p>

<p>I have not had the pleasure of being a part of such an education system (apart, say the one I follow in my own mind), here's to the possibility that our children can.<br />
</p>]]>

</content>
</entry>
<entry>
<title>A Socialist future for India??</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/a_socialist_fut.html" />
<modified>2004-05-17T14:38:56Z</modified>
<issued>2004-05-17T13:08:36Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1017</id>
<created>2004-05-17T13:08:36Z</created>
<summary type="text/plain">Recently the Congress Party swept the Indian Elections ousting the BJP. Being ideologically socialist, the future of the Indian Economy could be heading for doom, if they go about making too many economic policy changes! If you want to look...</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Politics</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>Recently the Congress Party swept the Indian Elections ousting the BJP. Being ideologically socialist, the future of the Indian Economy could be heading for doom, if they go about making too many economic policy changes!</p>

<p>If you want to look for Sonia Gandhi's (the leader of the Congress Party) ideology, you don't really have to look too far. The fact that she has asked the "Communist Party of India (Marxist)" and the other "Communist Party of India" to join an alliance with them, so as to form a government, speaks volumes in itself.</p>

<p>The Congress Party sometime back made a statement to the effect that "We should be able to reserve jobs for minorities even in Private Companies". Any party capable of making such statements are obviously socialist and as such can only lead my countries economy to doom. Another interesting fact is that the alliance (atleast the CPI(M)) very much has it in mind to do away with the "Disinvestment Policies" of the previous government. That could really harm us.</p>

<p>I think the fact that socialists and communists are coming to power is a major step backward for us, as a country and an economy.<br />
</p>]]>

</content>
</entry>
<entry>
<title>Final Semester Exams!!!</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/final_semester.html" />
<modified>2004-05-17T14:38:16Z</modified>
<issued>2004-05-16T15:47:21Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1016</id>
<created>2004-05-16T15:47:21Z</created>
<summary type="text/plain">The one constant dream I have had for 4 years now has been to see the end of my engineering course. Well, the time has come. The coming week will see the beginning and end of my final semester examinations....</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>College</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>The one constant dream I have had for 4 years now has been to see the end of my engineering course. Well, the time has come. The coming week will see the beginning and end of my final semester examinations. I will be saying goodbye to a college that has by itself taught me nothing.</p>

<p>It's on to bigger and better things now.</p>]]>

</content>
</entry>
<entry>
<title>The start of something good</title>
<link rel="alternate" type="text/html" href="http://prometheus.rationalmind.net/archives/2004/05/the_start_of_so.html" />
<modified>2004-05-22T14:09:06Z</modified>
<issued>2004-05-16T00:45:22Z</issued>
<id>tag:prometheus.rationalmind.net,2004://4.1015</id>
<created>2004-05-16T00:45:22Z</created>
<summary type="text/plain">This is it, I finally have my rationalmind.net blog. I have my final semester examinations starting tomorrow (17th), hence I will have to refrain from writing too much for now. Come the 25th of May and I&apos;m a free bird....</summary>
<author>
<name>dpillay</name>

<email>dpillay@rationalmind.net</email>
</author>
<dc:subject>Miscellaneous</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://prometheus.rationalmind.net/">
<![CDATA[<p>This is it, I finally have my rationalmind.net blog. I have my final semester examinations starting tomorrow (17th), hence I will have to refrain from writing too much for now. Come the 25th of May and I'm a free bird.</p>

<p>Till then.</p>]]>

</content>
</entry>

</feed>