Skip to content

Instantly share code, notes, and snippets.

@dbrgn
Created July 25, 2013 09:13
Show Gist options
  • Save dbrgn/6078106 to your computer and use it in GitHub Desktop.
Save dbrgn/6078106 to your computer and use it in GitHub Desktop.
google geekweek
from functools import partial
hexint = partial(int, base=16)
code = '53 65 61 72 63 68 20 59 6f 75 54 75 62 65 20 66 6f 72 20 2f 20 67 65 65 6b 77 65 65 6b'
numbers = map(hexint, code.split())
print ''.join(map(chr, numbers))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment