Skip to content

Instantly share code, notes, and snippets.

@yurimalheiros
Created February 23, 2011 12:42
Show Gist options
  • Save yurimalheiros/840381 to your computer and use it in GitHub Desktop.
Save yurimalheiros/840381 to your computer and use it in GitHub Desktop.
Decoding Masterbranch email subject
number = number = "0111001101101101011010010110110001100101"
print "".join([chr(int(number[i:i+8],2)) for i in range(0, len(number), 8)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment