Skip to content

Instantly share code, notes, and snippets.

@nerflad
Last active April 5, 2016 00:16
Show Gist options
  • Save nerflad/cd42274466d4259d81890c4dba7c124c to your computer and use it in GitHub Desktop.
Save nerflad/cd42274466d4259d81890c4dba7c124c to your computer and use it in GitHub Desktop.
For use by the TSA instead of their $1.4m iOS app...
import os, datetime, random
while True:
os.system('clear')
print "ENTER to continue, or type 'quit'"
print datetime.datetime.now()
print ''
print(random.choice(('Left', 'Right')))
print ''
prompt = raw_input("")
if prompt == 'quit':
quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment