Pleae don't do this
Hello is this tef?
Yes. Who is this?
David
Who?
| ______ | |
| < what > | |
| ------ | |
| \ | |
| \ | |
| ^__^ | |
| _______/(oo) | |
| /\/( /(__) | |
| | W----|| |~| | |
| || || |~| ~~ |
Pleae don't do this
Hello is this tef?
Yes. Who is this?
David
Who?
| $ zip app.zip __main__.py | |
| adding: __main__.py (deflated 76%) | |
| $ echo '#!/usr/local/bin/python3' > app | |
| $ cat app.zip >> app | |
| $ chmod +x app | |
| $ ./app | |
| usage: ./app <filter> <filter> <filter> |
| (build_env)lin-kernighan:ToolBelt tef$ pip wheel ToolBelt | |
| ERROR: 'pip wheel' requires the 'wheel' package. To fix this, run: pip install wheel | |
| (build_env)lin-kernighan:ToolBelt tef$ pip wheel -b | |
| Usage: | |
| pip wheel [options] <requirement specifier> ... | |
| pip wheel [options] -r <requirements file> ... | |
| pip wheel [options] <vcs project url> ... | |
| pip wheel [options] <local project path> ... | |
| pip wheel [options] <archive url/path> ... |
| import sys | |
| output = [] | |
| for line in sys.stdin.readlines(): | |
| line = line.split() | |
| for n in range(len(line)): | |
| output.append(" ".join(line[n:]+line[:n])) | |
| for line in sorted(output): | |
| print line |
| ⢀⣠⡶⣦⣄ | |
| ⣀⡤⣤⣸⡷ ⢾⣀⣤⣤⣀ | |
| ⢸⡯⠁⠉⠉ ⠈⠉⠁⠈⣽ | |
| ⣀⡀ ⠘⠓⣦ ⢀⡶⠚ ⢀⣀ | |
| ⢰⡓⠋⠓⣳ ⢰⡞⠋ ⠛⣳ ⣞⠛⠙⣳⡆ | |
| ⢠⡶⠏⠷⠾⠁ ⠹⠶⠏⠷⠾⠋ ⠹⠶⠟⠻⠶⠏ ⠙⠷⠿⠹⢶⡄ | |
| ⢸⣃⡀ ⢀⣹⡇ | |
| ⢀⣄⡿ ⢿⣄⡀ | |
| ⢸⠆ ⢼⡇ | |
| ⠈⠛⠷⠟⢻⡆ ⣼⡟⠻⠾⠛⠁ |
| ⢆ | |
| ⢠⠃ | |
| ⡠⠋⠉⠁ | |
| ⠱⣀⣀⡰⠉⠉⠱⡀ | |
| ⡤⠤⡄ ⡜ | |
| ⢎ ⢈⠆ ⠈⠦⠤⢄ | |
| ⢈⠆ ⢎ ⢀⠖⠒⢆ ⢈⠆ | |
| ⢠⠒⠒⠃ ⠓⠒⠃ ⠓⠒⠃ | |
| ⠣⡀ ⡠⠋⠉⠣⡀ | |
| ⣀⣀⡀⠉⠉⠱⡀ ⠱⡀ ⡰⠁ |
| ⡤⠤⡄ | |
| ⢀⠖⠒⢆ | |
| ⠘⡄ ⡜ | |
| ⢠⠒⠒⠁ ⠑⠒⢢ | |
| ⠑⠤⢤ ⢠⠤⠔⠁ | |
| ⢠⠒⢢ ⢀⠇ ⢇ ⢠⠒⢢ | |
| import os | |
| import sys | |
| from datetime import datetime, timedelta | |
| from subprocess import check_output, check_call as spawn | |
| def make_dates(): | |
| start = datetime(2013,3,3,12,00,00) | |
| reps = 1 | |
| for x in range(365*8): |