Created
September 14, 2014 03:49
-
-
Save magnunleno/8c3f369063e1ccbe1f6a 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
| #!/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