Skip to content

Instantly share code, notes, and snippets.

@mistydemeo
Created February 19, 2014 05:15
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 mistydemeo/9086427 to your computer and use it in GitHub Desktop.
Save mistydemeo/9086427 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import sys
import upsidedown
if len(sys.argv) < 2:
table = u'┻━┻'
else:
arg = u' '.join(sys.argv[1:]).decode('utf-8')
table = upsidedown.transform(arg)
print(u"(╯°□°)╯︵" + table)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment