Initial commit

master
valerio 2017-09-27 21:09:29 +02:00
commit c17cdd6e7e
3 changed files with 2374083 additions and 0 deletions

2
.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
*.swp

2374058
deep.throat 100644

File diff suppressed because it is too large Load Diff

23
player.py 100755
View File

@ -0,0 +1,23 @@
#! /usr/bin/env python3
# Credits: Vuk Cosic - Deep ASCII - 1998
from time import sleep
def main():
with open('deep.throat') as f:
content = f.read()
frames = content.split('[2K')[1:]
try:
print('\n' * 100)
for frame in frames:
print(frame)
sleep(1/25)
except KeyboardInterrupt:
print('\r')
if __name__ == '__main__':
main()