I hereby claim:
- I am teeberg on github.
- I am teeberg (https://keybase.io/teeberg) on keybase.
- I have a public key ASAOEVMjPukgdgsoiB6pcgDzINW1COpCBP0wuQiWNDp9UQo
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| import logging | |
| import select | |
| import socket | |
| import struct | |
| import sys | |
| from socketserver import ThreadingMixIn, TCPServer, StreamRequestHandler | |
| logging.basicConfig(level=logging.DEBUG) | |
| SOCKS_VERSION = 5 |
| # coding=utf-8 | |
| from __future__ import absolute_import, division, print_function, unicode_literals | |
| import sys | |
| import termios | |
| def csi(num): | |
| """ | |
| Control Sequence Introducer |
| import json | |
| import logging | |
| import os | |
| import sys | |
| from os.path import dirname, join | |
| from time import sleep | |
| sys.path.insert(0, join(dirname(__file__), '.env')) | |
| import arrow |
| function eb() { | |
| if [[ $# > 0 && $1 == "ssh" ]]; then | |
| "$(which eb)" ssh -e "$(which ebssh.py)" "${@:2}" | |
| else | |
| "$(which eb)" "$@" | |
| fi | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import os | |
| import pprint | |
| import subprocess | |
| import sys | |
| from optparse import make_option | |
| from urllib import quote_plus | |
| from urlparse import urljoin | |
| import dateutil.parser |