This is a test.
June 2008
Mon 16 Jun 2008
Sat 14 Jun 2008
So I have seen a few films lately notably ‘Iron Man‘, ‘The Chronicles of Narnia: Prince Caspian‘, and as of this moment I am watching ‘In the Name of the King: A Dungeon Siege Tale‘. It seems like all of these movies should have been good. Two of them were one of them not so much.
Thu 5 Jun 2008
DARPA does awesome awesome stuff. Now they are funding the devlopment of a computer that will manage the battlefields of the future. This combined with advances in the area of what can only be called cybernetics not to mention laser weapons is an amazing portrait of the future. There are two problems I see arising from this: 1.) There aren’t that many people left on the planet dumb enough to engage in global war. 2.) What the hell are sci-fi authors going to write about?
Wed 4 Jun 2008
Geek answer to flower petals,, in python
Posted by Drew under personal , philosophy , programing[7] Comments
import random import time i = round(random.randint(10,20) j = 0 love = random.randint(0,1) while(j < i): j = j + 1 if(love == 1): print "loves me\n" love = 0 else: print "loves me not\n" love = 1 time.sleep(1)