- Russell is going to work at Yahoo. Props, maybe now we'll see more mobile services from them - although I expect most of it to be (as usual) almost completely US-centric.
- "They're a couple of songs short of a playlist, for sure". pfig has promised some pics of the UK Apple Store - meanwhile, Portugal remains part of the Third World as far as Apple is concerned...
- Random Python/GTK hint: Want to use GTK functions in a batch script but have no X display? Just launch an Xvfb before you import gtk:
import os xpid = os.spawnlp(os.P_NOWAIT, "Xvfb", "Xvfb", ":10 -screen scrn 1024x768x16") os.environ["DISPLAY"] = ":10" import gtk ...