iPlayer hacked again
The hack for the iPlayer from last week was closed by the BBC, but only by more obsfucation. Therefore, there is a patch for last weeks script which fixes the problem.
Reading the comments there are a few people out there working on making this better, and it looks like there is a script to generate an RSS feed for the iplayer website.
New London Architecture
Went and saw the Underground: Londons Hidden Architecture at New London Architecture this weekend.
They had a big model of central London which was pretty cool.
Command line Gnome Notification 1
From the “it’s almost certainly been done better somewhere else” department, here is my script to fire off a Gnome Notification after a shell command finishes.
a python script:
#!/usr/bin/python
from pynotify import *
import sys
def notify(message=""):
n = Notification("Command Line Completed", message)
n.show()
init("cli notify")
if len(sys.argv) > 1:
notify(sys.argv[1])
else:
notify()
Then just add it to your path and you can append it onto some command:
echo monkey && mynotify.py "some message"
You then get a notification like so:


