Wednesday, December 9, 2009

Google chrome for Linux :)

Google chrome is now available for Linux :) Yay yay!



Tuesday, December 8, 2009

Panther again!

Got this in mail today. I really don't want my parents to read this!

C I R C U L A R


Sub : Sighting of Panther in the campus


Residents of the campus may recall previous circulars issued on the subject cited above. Panthers were seen at various places in the campus during the last few days. All out efforts are being made to ensure that the panther is trapped/chased away from the campus by the Forest Authorities. Special patrols are being deployed everyday to patrol the most vulnerable areas where the panther is being sighted frequently in jeep and motorcycles equipped with high power search lights and fire crackers.
Campus residents are requested to inform any suspicion about presence of leopard on the telephone numbers given below:


Main Building Security Control
Intercom no.: ****, **** & ****




For the purpose of precautionary measures, the campus residents are requested to observe the following:-
1)Not to provoke the animal by stone throwing or attempting to hit it with anything.


2)Not to take photograph, nor should the animal be followed or make provocative gestures.


3)If the cubs are sighted, do not indulge in any provocation whatsoever, as the panther accompanying the cubs can be highly dangerous.


4)Not to allow small children unaccompanied by adults to move around during night.


5)Not to sleep outside and, doors and windows should be secured.


6)Lonely and dark stretches of roads should not be used during night.


7)When dogs bark or run frantically at night, it may be taken as warning of panther’s presence nearby.


8)Panther is afraid of lights and cracker bursts. Hence, it is advisable to carry a torch and flick it around while moving at night.


9)In case of a pet dog, it should be kept indoors at night.


The Institute has approached the authorities concerned to remove/scare away the panthers. This section will be bursting crackers during nights. Hence do not panic on hearing sounds of crackers.

Sunday, December 6, 2009

Does this remind you of something?



Rafi
Lyrics here

Saturday, December 5, 2009

Placements, and a BIG thank you!


The last 3 days were really busy, with little time for food, bath or sleep. I'm writing this post to thank a few people who helped me so much during these 3 days.

Devshree, Prajakta, Ajinkya, Borrol, Adil, Ambika, Ashish, Chander, Somil - thank you sssooooooo much for everything you guys did.

Saurabh, Prashima, Kulk - You guys gave me an "I'm not alone" feeling, which was so reassuring. Thank you.

DPNs Sree and Rakesh - Thank you for everything.

On a lighter note, below is a pic of the goodies I got. Not getting placed early has some advantages :)



Thursday, November 19, 2009

Comments!

Recently, I have been getting comments like these...

Great blog as for me. It would be great to read something more about that theme.
By the way check the design I've made myself Young escort


Order In Brossard (Quebec) [url=http://www.wikipatterns.com/display/~wertinskoi] generic viagra kamagra caverta pillshoprxcom[/url] canada pharmacy chewable viagra. 

So, I'm disabling anonymous comments. And of course, a heartfelt f**k you to the people who are responsible for the above comments.
 
By the way, you can read the details here and here.

Update:
I've allowed anonymous comments again :) But have enabled word verification to prevent automated spam

Wednesday, November 18, 2009

I miss the colourful VTU marks sheets!



This is what we get at IITB


Monday, November 16, 2009

How to mount NTFS partition in Linux

Well, these days, NTFS partitions do get auto-mounted. But it may get a little irritating when you are asked for the admin password every time you boot your comp and click on the partition.

So, to make the mounting "truly" automated, you have to add an entry to the file /etc/fstab.

In my case, I had to add
/dev/sda3  /media/cdrive  ntfs-3g defaults

So, the first thing you have to do is - create a directory /media/cdrive. Then, to find out which device your ntfs partition is listed as, run

# fdisk -l
Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x01238b30

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1          26      208813+  83  Linux
/dev/sda3           29447       38913    76043677+   7  HPFS/NTFS
/dev/sda4              27       22978   184361940    f  W95 Ext'd (LBA)
/dev/sda5              27       20914   167782828+  83  Linux
/dev/sda6           20915       22873    15735636   83  Linux
/dev/sda7           22874       22978      843381   82  Linux swap / Solaris

From what I can see, my NTFS partition is /dev/sda3. This is how my /etc/fstab looks after making the entry.

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
# / was on /dev/sda6 during installation
UUID=295dd122-7bd3-49e3-8e94-e192bd48e741 /               ext4    errors=remount-ro 0       1
# /boot was on /dev/sda1 during installation
UUID=31640fe8-bd0a-409f-b09e-f340e31b87ce /boot           ext4    defaults        0       2
# /home was on /dev/sda5 during installation
UUID=88e313d9-2537-466d-9856-4ae03bf75f81 /home           ext4    defaults        0       2
# /media/cdrive was on /dev/sda3 during installation
UUID=286841F96841C672 /media/cdrive   ntfs    defaults,umask=007,gid=46 0       0
# swap was on /dev/sda7 during installation
UUID=872f1854-af38-48ee-807d-b46ec1db6a75 none            swap    sw              0       0
/dev/scd0       /media/cdrom0   udf,iso9660 user,noauto,exec,utf8 0       0
/dev/sda3 /media/cdrive ntfs-3g defaults



--------------------------------------------
Reboot. You'll find your partition mounted :)