Skip to content

Instantly share code, notes, and snippets.

@melissaboiko
Created October 14, 2010 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melissaboiko/626535 to your computer and use it in GitHub Desktop.
Save melissaboiko/626535 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# from:
# http://i.imgur.com/7atJf.png
# http://www.reddit.com/r/offbeat/comments/dqtxn/a_friend_of_mine_postulates_that_if_you_stick_two/
#
# available at http://namakajiri.net/misc/2awesome.py
import random
awesome = [
'rocket',
'laser',
'dinosaur',
'old people',
'tiger',
'chicken',
'steel',
'crystal',
'engine',
'lady',
'baby',
'rhino',
'panda',
'apocalypse',
'zombie',
'ninja',
'harrison ford',
'space',
'underpants',
'future',
'robot',
'chocolate',
'shark',
'jet',
'gun',
'guitar solo',
'beard',
'sparkle',
'fire',
]
print 'Content-type: text/plain;charset=utf-8'
print
print random.choice(awesome), random.choice(awesome)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment