June 2008


This is a test.

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.

(more…)

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?

(more…)

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)