Skip to content

Instantly share code, notes, and snippets.

@mistydemeo
Created June 27, 2014 21:27
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/9b3c36fea25aa8c2f9f3 to your computer and use it in GitHub Desktop.
Save mistydemeo/9b3c36fea25aa8c2f9f3 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) != 3:
tables = [u'┻━┻', u'┻━┻']
else:
tables = map(upsidedown.transform, sys.argv[1:3])
print(u"{}︵ヽ(`Д´)ノ︵{}".format(*tables).encode("utf-8"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment