Created
October 12, 2017 19:49
-
-
Save hummus/06bfaaa501875db1992d66a081282597 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python -c 'import string; CHARS=string.digits + string.ascii_lowercase; b36e = lambda integer,encoded="": encoded if integer<=0 else b36e(integer//36, CHARS[integer%36] + encoded); import sys; print b36e(int(sys.argv[1], 16))' ACEBACEACE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment