The Elegant Chaos Blog

July 01, 2010

Right, hopefully I’ve finished with upgrading my server and this website is back in the proper place.

If you notice any broken links, please let me know…

more...

If you’re noticing that some content on www.elegantchaos.com keeps appearing and disappearing mysteriously, it’s because I’m switching back and forth between the original version and the new Drupal 6 version which is running on an old (and slow) server.

Apologies if this confuses your rss news reader! Eventually I’ll finalise the update and switch over permanently to Drupal 6, at which point it will go onto my proper server and things will stop changing!

more...

June 27, 2010

As an experiment, I’ve ported this site across to Drupal 6.

The new version of the site is running on a test server at the moment, so you might notice a bit of a drop in performance, and one or two old links may be missing since I’ve not bothered to copy the old static content over yet.

Hopefully though, the basic stuff will work. I’m also hoping that moving to Drupal 6 will allow me to re-enable comments, and to add various other bits of functionality.

If you notice anything that seems to have gone badly astray, give me a yell!

more...

I’ve got a number of projects on the go at the moment, but most of them aren’t really ready for prime-time.

I do have one small Mac OS X project that I would like to get some feedback on.

It’s called Replicator (at the moment), and it is a simple utility intended to give the Finder a “Create Document…” menu that allows you to right-click in any folder and make a new file of a given type.

You can find the details here, and download a free beta copy to test. And find bugs. And, hopefully, give me some feedback about what I’ve done wrong and how to do it better.

more...

Occasionally I’ve had errors where Software Update refused to download something, telling me that I didn’t have permissions to save the updated file.

In previous systems I think these files went into the /tmp folder, but in Snow Leopard they don’t, and I’ve finally managed to work out where they do go - /Library/Updates.

On my machine, somehow, I’d ended up with a couple of folders inside this one which were owned by another user, and which didn’t have group write permission.

To fix the problem, I did the following in a terminal window:

  • sudo chown -R :admin /Library/Updates

  • sudo chmod -R a+rwx /Library/Updates

You need to replace with your actual user name. In fact, I suspect that it doesn't matter who owns the files as long as they belong to the admin group, so if you want to be a little bit more security conscious, you could probably do this:

  • sudo chown -R :admin /Library/Updates

  • sudo chmod -R g+rwx /Library/Updates

more...