Every Halloween costume you ev…

Every Halloween costume you ever had was a failure compared to this: http://www.youtube.com/watch?v=yG8CUHGb1Y4 (via @TheBloggess)

Virtual Multiblog 2.6.1

Just released Virtual Multiblog v2.6.1. The primary new feature in the 2.6 line is auto-plugins.

That is, you can specify plugins that are automatically activated for all (or just some) blogs.

Check it out!

Mac OS 9 lives!

Mac OS 9 lives! And it has a browser: http://classilla.org/

An ode to long URLs

An ode to long URLs – and a suggestion or two: http://bit.ly/syESq

10,000 words advocating “sub p…

10,000 words advocating “sub plugins” for WordPress, only to discover I’ve just reinvented something called “Interfaces” http://lists.automattic.com/pipermail/wp-hackers/2009-June/026567.html

[2011-12-21 edit: updated broken link]

Virtual Multiblog helper app

Hackadelic has released a (beta) WordPress plugin designed to automate using Virtual Multiblog. This is still in development, but the initial test I did looks promising. Basically the plugin creates an interface in the WP admin for creating new virtual installs.

If you’re interested in playing with unfinished software, go check out the Hackadelic Multiblog Kit. Looking forward to v1.0!

A Brief History of JavaScript

1995 – Brendan Eich reads up on every mistake ever made in designing a programming language, invents a few more, and creates LiveScript. Later, in an effort to cash in on the popularity of Java the language is renamed JavaScript. Later still, in an effort to cash in on the popularity of skin diseases the language is renamed ECMAScript.

One Div Zero: A Brief, Incomplete, and Mostly Wrong History of Programming Languages.

Strider Core — coming soon

It’s been pretty quiet around here lately, mainly because I’ve been working on something but having trouble hammering the last few problems out of it.

As I work on the various plugins I make for WordPress, I find that there are several common bits of code appearing in all of them, and as I improved it in one place I would then have to go through and copy/paste (with modifications here and there) to the other plugins. This is a pain to keep track of, so I figured it would be a good idea to create a set of “core” files that I could simply drop in and have work. I found this had various implications, such as what happens when two plugins are using the same core set — duplicate function names and conflicts suddenly started popping up. How about when two plugins have differing versions of the core files?

So Strider Core was born. Among other things, I’ve created a system wherein different plugins can all run on Strider Core, and if they each have different versions of the core files, it will figure out which one has the highest version and use that for all of those plugins. Thus if Plugin A includes Strider Core 1.0, and Plugin B has Strider Core 1.1, the 1.1 core will be loaded for both plugins. Thus, activating one plugin can actually improve the functionality of other plugins.

Most of what I’m including in the first go are little bits of polish for the Admin — such as settings links from the Manage Plugins page, Menu icons, and the like. One significant addition, however, (and the thing I can’t quite get working right…) is a third party version checking system. Thus, anyone who makes plugins that are not hosted on WP-Extend will be able to have their plugin check for new versions simply by integrating Strider Core and adding a single line to the code.

That’s the plan anyway.

I’m going to try and get things going this weekend (with some luck), but even if I don’t get the version checking going, I will probably do a “beta” release so people can see what’s happening. I know some people have expressed interest in this system, so perhaps better to get it out sooner and get feedback before the “prime time” release.

If you’re interested, keep a lookout for an update to my Log Deprecated Calls plugin, as that is going to be the first plugin to use the new system.