Title
The title of this blog is rightly attributed to my roommate Nathan Grout. It''s biblically epic.
In other news: the double apostrophe will not go away.
Theme
This site uses Drupal 6.x. The theme is called "internet_jobs" found here: Theme Garden. I've modified it ever so slightly.
Clone VDI
To ensure a safe backup of a VDI file for virtual box, from the terminal run this command:
VBoxManage clonevdi SRC DEST
SRC is of course the source file (eg: ~/.VirtualBox/Windows.vdi) while DEST is the destination (eg: /media/disk/Windows_BAK.vdi).
From what I understand a simply copying the .vdi file will not work when you try to run the virtual machine.
Random?
46514821
Here's the php code:
<?php
srand ((double) microtime ( )* 1000000 );
$random_number = rand ( );
echo "$random_number\n" ;
?>
srand ((double) microtime ( )* 1000000 );
$random_number = rand ( );
echo "$random_number\n" ;
?>