Skip to content

Instantly share code, notes, and snippets.

@hashar
Created October 6, 2015 20:47
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 hashar/dfd9a75333161ccbbb2a to your computer and use it in GitHub Desktop.
Save hashar/dfd9a75333161ccbbb2a to your computer and use it in GitHub Desktop.
Wait for 503 for a few seconds while dancing
#!/usr/bin/env python3
import random
import time
arm = 'v^<>'
eye = '^Oo*'
body = '\r%s(%s%s)%s'
for t in range(0, 9):
print(body % (
random.choice(arm),
random.choice(eye),
random.choice(eye),
random.choice(arm),
))
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment