Blog updates now going out through my Migroblog Laconica (and thus through to Twitter)

Since I wrote a Howto for installing Laconica on Debian Lenny, I thought I'd demonstrate that it works :)

How to install Laconica microblogging platform on Debian Lenny

Here's a quick howto on installing Laconica on Debian 5.0 (Lenny) with a PostgreSQL database backend.

Open Atrium.. Drupal++

I've been a Drupal user since the days of 4.x, and I've seen the project and its contributions grow immensely throughout the years. I've had a wide range of successes (and disasters, sometimes Drupal is not the answer for everything) implementing the fantastic opensource CMS for various organisations and campaigns.

This is the first time in a while I've been genuinely excited about where Drupal-inspired creativity can go.

Pitchfork MPD site down, 0.5.5 package mirrored elsewhere

I wanted to set up Pitchfork tonight on my home server, which I've used before.

With dismay I discovered that the Pitchfork website is currently down (and probably has been for a very long time!), so I couldn't easily download it.

Fortunately a fellow named Luke McReynolds has generously hosted a tarred bzip of v0.5.5 on his server. You can download it from there.

I've also added it to http://www.mig5.net/pitchfork-0.5.5.tar.bz2 to aid the effort.

php: Strip characters out of a string to just leave numbers

$string = "Test test total count 500000 bytes";
$string = preg_replace('#[^0-9]#','',strip_tags($string));
echo $string;