Skip to content

Instantly share code, notes, and snippets.

@hummus
Created October 12, 2017 19:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hummus/06bfaaa501875db1992d66a081282597 to your computer and use it in GitHub Desktop.
Save hummus/06bfaaa501875db1992d66a081282597 to your computer and use it in GitHub Desktop.
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