Skip to content

Instantly share code, notes, and snippets.

@scottcunningham
Created June 15, 2016 14:13
Show Gist options
  • Save scottcunningham/965b4c1bbcc9461feb3a33b56ac54cee to your computer and use it in GitHub Desktop.
Save scottcunningham/965b4c1bbcc9461feb3a33b56ac54cee to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import os
import time
frames = [
'''
,
_|_
-==<_-__|)
_|_|_>
'''
,
'''
__.__
_|_
\==<_-__|)
_|_|_>
'''
,
'''
____.____
_|_
|==<_-__|)
_|_|_>
'''
,
'''
__,__
_|_
/==<_-__|)
_|_|_>
'''
]
while True:
for frame in frames:
a = os.system('clear')
print frame
time.sleep(0.03)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment