Newman's Own Honey Flax Flakes and Silk soy milk go really well together.
Orange juice + cranberry juice is really good too.
Sunday, October 25, 2009
Wednesday, October 21, 2009
Recovering an email attachment in python
To decode an attachment from the text of an email (using python), like:
use the following python script:
and you will recover your attachment (for me it was the following image (i didn't catch the disk even though the photo indicates i did) ).
--------------060805040508050904080009
Content-Type: image/jpeg;
name="img_3282.jpg"
Content-Transfer-Encoding: base64
Content-Disposition: inline;
filename="img_3282.jpg"
/9j/4AAQSkZJRgABAQEASABIAAD/4R5TRXhpZgAASUkqAAgAAAAJAA8BAgAGAAAAegAAABAB
AgAYAAAAgAAAABIBAwABAAAAAQAAABoBBQABAAAAmAAAABsBBQABAAAAoAAAACgBAwABAAAA
... ... ...
gFFdbQfZ9xIfe25gnfGOx+X+VTlt1VxCyMUeItGAec+5/SluCRQmiYhjIuHB27lzjPHP6VZm
059iM/7yJh4gCjsAc445GaSb7h02Da1jkgPgy7EGDuU55Hv+dKrUq5QqP//Z
use the following python script:
#!/usr/bin/env python
import sys
import mimetools
def main():
infile = open(sys.argv[1], 'r')
outfile = open(sys.argv[2], 'wb')
mimetools.decode(infile, outfile, 'base64')
print 'Greg is a bunneh.'
if __name__ == "__main__":
main()
and you will recover your attachment (for me it was the following image (i didn't catch the disk even though the photo indicates i did) ).
Friday, October 9, 2009
Subscribe to:
Comments (Atom)
