Search This Blog
Wednesday, September 2, 2009
Friday, August 28, 2009
A few people I admire most
![]() | Abhiram Natarajan - For his never ending repository of algorithms and swear words |
| Anup B Prakash - Simply awesome at everything he does | ![]() |
![]() | Chaya Ganesh - For being such a wonderful person |
| Rama B - For shamelessly lying about his academic abilities all the time | ![]() |
![]() | Netra Malagi - For being a geek, and an open source enthusiast right from the beginning |
| Prashant Borole - Coder++, writes his own kernels, file systems and what not. IMO, one of the best systems guys in the world | ![]() |
![]() | Sriram Kashyap - An extremely helpful Geek++ |
Sunday, August 23, 2009
A lecture series on Analysis and design of algorithms
A lecture series on Analysis and design of algorithms
Just happened to find it on youtube :) .The above set of videos is from the under grad algorithms course offered by Prof. Abhiram Ranade and Prof. Saisundararaman Vishwanathan at IIT Bombay. More subjects here
Just happened to find it on youtube :) .The above set of videos is from the under grad algorithms course offered by Prof. Abhiram Ranade and Prof. Saisundararaman Vishwanathan at IIT Bombay. More subjects here
Friday, August 14, 2009
Bought an Acer 5738 :)


Comes with Linux, 3GB DDR3 RAM, Core 2 Duo T6500 2.1GHz, 320GB hard disk, Gigabit ethernet card, fingerprint reader, an HDMI port (pretty useless unless you have a decent graphics card), multi touch touchpad (allows to zoom using a 2-finger motion), laptop bag, and the usual stuff. More here.
Price: Rs. 34,000
Saturday, August 8, 2009
About IIT profs and exams
In my last post, I said that I would post something about SVN clients. Since it's pretty boring, I'll do that some other time :)
Now, coming to the topic, there are different kinds of exams...the general idea is that nothing from the allowed material comes in the exams.
Another prof usually doesn't have a time limit on the exam. People come to the exam hall, think....think....think, write whatever they can figure out, and leave when they are too tired to think any more, or just get hungry. And there is a certain prof who said, "Leave the exam hall in <=2 Hours, get 3 bonus marks!"
There are some profs who give "unrelated questions" like "Do you think Obama will be a better president than Bush?", just so that students can take a break from thinking, and relax. These questions, of course, do not carry any marks.
Though weird, the good thing about all these exams is that it's "marks for thought", rather than "marks for how well you can mug or how much you can write".
Now, coming to the topic, there are different kinds of exams...the general idea is that nothing from the allowed material comes in the exams.
- Closed book: Nothing allowed. The easiest kind of exam.
- Open notes: The most common type of exam. We are allowed to take our notes, print outs of slides and a few research papers.
- Cheat sheet: 1 or 2 A4 size sheets are allowed. Contents must be handwritten. The number of sides that can be used is pre-specified.
- Open book: The toughest. You can take any book (any number of books) you want.
Another prof usually doesn't have a time limit on the exam. People come to the exam hall, think....think....think, write whatever they can figure out, and leave when they are too tired to think any more, or just get hungry. And there is a certain prof who said, "Leave the exam hall in <=2 Hours, get 3 bonus marks!"
There are some profs who give "unrelated questions" like "Do you think Obama will be a better president than Bush?", just so that students can take a break from thinking, and relax. These questions, of course, do not carry any marks.
Though weird, the good thing about all these exams is that it's "marks for thought", rather than "marks for how well you can mug or how much you can write".
Wednesday, July 15, 2009
How to set up SVN
I wanted to set up an SVN server for my project recently. Here is the small script that I wrote for configuring SVN. Just copy-paste it in a file and run it. It'll guide you through the configuration process.
-------------------------------------------
-------------------------------------------------
To start svnserver,
/users/proj/prashanth.kamle/svnrepos is the path of the directory in which the SVN repository would reside (/users/proj/prashanth.kamle is the current directory).
To stop the SVN server, just kill the process (or use the script below)
In my next post, I'll explain how to access SVN from eclipse. Till then, happy subversioning :)
-------------------------------------------
#!/usr/bin/bash
svnadmin create svnrepos #creates a directory called svnrepos
#in the current directory, and
#creates the config files
printf "[general]\nanon-access = none\nauth-access = write\npassword-db = passwd\n" > svnrepos/conf/svnserve.conf
printf "[users]\n" > svnrepos/conf/passwd
while [ 1 -gt 0 ]
do
printf "Username: " #create username,password for
read user #whom access is required
if [ $user == "q" ] #press "q" to stop accepting username, passwords
then
break
fi
printf "Password: "
read pass
printf "$user"" = ""$pass\n" >> svnrepos/conf/passwd
done
-------------------------------------------------
To start svnserver,
svnserve -r /users/proj/prashanth.kamle/svnrepos -d
/users/proj/prashanth.kamle/svnrepos is the path of the directory in which the SVN repository would reside (/users/proj/prashanth.kamle is the current directory).
To stop the SVN server, just kill the process (or use the script below)
#!/bin/bash pid=`ps -A|grep svnserve| cut -d" " -f1` kill $pid
In my next post, I'll explain how to access SVN from eclipse. Till then, happy subversioning :)
Monday, June 29, 2009
Subscribe to:
Posts (Atom)
.jpg)





