Summertime in Cambridge
Definitely summer today.


Quentin Stafford-Fraser's blog
One should always have something sensational to read on the net...
Definitely summer today.


[Original Link] Dave Shea's 'Zen Garden' is a wonderful demonstration of the power of CSS. Recommended for anybody who designs web sites. [link from Scripting News]
I've just been doing a (much less ambitious) web site. Since it's been a while since I last did any substantial HTML coding, I've been finding it a real joy to use CSS with the realistic expectation that almost all of the intended audience will be able to see the results as I intended.
[Original Link] David Berlind tells it like it is. Bluetooth is great when it works, but more often than not, it doesn't. One of the follow-up comments says, "Bluetooth is destined to be the Edsel of IT...". And another, "...at some point we have to take stock and decide whether it is worthwhile to continue investing in an architecture that has taken so long to deliver so little". Sad, but true. It works flawlessly for me but only in one specific situation: connecting my Mac to one of the small number of Apple-approved Ericsson phones.
I've written about this before: I linked to an osOpinions article and also to a BusinessWeek article, among others. The BW article has now disappeared behind a pay-for-access barrier. So I'm likely to link to them in future about as often as I try linking to my Bluetooth headset.
When you update a blog, many systems have the ability to 'ping' another site to tell it that something has changed, typically using the weblogs.com XML-RPC interface.
I wanted to be able to receive these pings and to perform some simple operation as a result; in this case grabbing an file from the associated Movable Type blog. Here is a very simple Python CGI script which does just that, based on Jan-Klaas Kollhof's neat little xmlrpc server module.
Update: This works with Movable Type - in your weblog config you can specify it as one of the sites to be notified by typing the CGI script's URL into the 'Others' box. However, MT has a bug which gives it a tendency to misinterpret the results and think that the ping has failed when it has in fact succeeded. The call returns two values, and MT assumes that they will be in a specific order when the order is, in fact, irrelevant. To fix this, edit the lib/MT/XMLRPC.pm file and change:
my($error, $msg) = $content =~
m!flerror.*?<boolean>(d+).*message.*?<value>(.+?)</value>!s;
to say
my($error) = $content =~ m!flerror.*?<boolean>(d+)</boolean>!s;
my($msg) = $content =~ m!message.*?<value>(.+?)</value>!s;
at approx line 71.
At Ndiyo we budgeted just £50/month for software for the organisation.
We've used almost none of that budget.
[Original Link] Perhaps the first non-Mac I might have in the sitting room?
[Original Link] I thought The Matrix was really rather a good movie. Anything which can hold its own despite having the appalling Keanu Reeves as the main character must have somethng going for it.
But reading this review of the sequel makes me think I'll give that a miss.
[Original Link] I've always been fascinated by France's Minitel system since first seeing a new terminal when on an 'exchange' trip just after it was launched in '83. John Naughton writes:
BBC Online story. Funny how things change: once upon a time, France was the only country in the world with a serious e-commerce and online information infrastructure -- via the closed but freely available Minitel system. That was in 1983, the year the Internet was switched on. Then came the Web, and with it the idea that boring old steam-age Minitel was finished. Well, maybe it was, but the Web has yet to deliver the same reliability and micro-billing capability. [Memex 1.1]
[Original Link] Jim Fruchterman on 'Social Enterprise'. Jim's organisation, Benetech, from their unassuming offices in Palo Alto, is doing some good work in difficult times.
[Original Link] One of the things I find most interesting about the introduction of new technologies is the speed at which social etiquette has to adapt to cope with them. This NY Times article includes an estimate that there are now 3 million blogs out there. Perhaps only a small proportion of them are active, but that's still quite a number.