Skip to content

Instantly share code, notes, and snippets.

@magnunleno
Created September 14, 2014 03:49
Show Gist options
  • Select an option

  • Save magnunleno/8c3f369063e1ccbe1f6a to your computer and use it in GitHub Desktop.

Select an option

Save magnunleno/8c3f369063e1ccbe1f6a to your computer and use it in GitHub Desktop.
#!/usr/bin/env python2
# encoding: utf-8
# Decoding: https://twitter.com/diegoboot/status/510846108973953024
bins = [
'01001000', '01100001', '01110000',
'01110000', '01111001', '00100000',
'01010000', '01110010', '01101111',
'01100111', '01110010', '01100001',
'01101101', '01101101', '01100101',
'01110010', '00100111', '01110011',
'00100000', '01000100', '01100001',
'01111001', '00100001',
]
print ''.join([chr(int(i, 2)) for i in bins])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment