Your cart is currently empty!
Came across this today. The thing that struck me is Ben and I go to sleep at the same time, but he got up 2 hours earlier in the morning than I do. Two hour lunch breaks — good idea. Time to plan and time to reflect each day. I’m going to try to work…
Mark V Shaney was a fake Usenet user whose posting were automatically generated using markov chains. http://en.wikipedia.org/wiki/Mark_V_Shaney I read about this a few weeks ago and thought that it would be interesting to try and create a Mark V Shaney twitter account that would be trained using the twitter fire hose. The result was the twitter…
·
Connecting to a Google Gmail account is easy with Python using the built in imaplib library. It’s possible to download, read, mark and delete messages in your gmail account by scripting it. Here’s a very simple script that prints out the latest email received: #!/usr/bin/env python import imaplib M=imaplib.IMAP4_SSL(‘imap.gmail.com’, 993) M.login(‘myemailaddress@gmail.com’,’password’) status, count = M.select(‘Inbox’)…