Monday, February 27, 2006

You Might Be A Winner

So a few months back, I got a random email from someone at musictoday.com saying that I had won a contest they were holding, and the prize was a copy of "Smofe and Smang", by Mike Doughty.

Now, I didn't actually remember entering a contest, but I did buy a t-shirt from them a while back, so I figured maybe I had entered and just forgotten about it. Anyway, I went on with my life, and about a month later I got another email from the asking for a mailing address to send it to. I replied, and forgot about it again. Up until they asked for an address I sort of figured it was a mistake or something.

Anyway, it showed up in the mail today, so I guess the whole thing really was legit.

It's pretty amusing, this is actually the first stuff by Doughty I ever heard, but I was never able to buy it because it hasn't been available for sale in years. Nice to finally have the actual album, considering that I've been listening to the mp3s since I was first introduced to his music by Ben ;-)

Sunday, February 26, 2006

Data Center Fun

So Paul, Justin, and I took a trip out to the colocation site that holds a bunch of the ASF servers today. We had to replace a failed hard drive in minotaur, the machine that hosts http://svn.apache.org/, do some operating system upgrades/installs for a few other systems, and a variety of other tweaks that required physical access to the machines.

Anyway, since I'm making an effort to actually take pictures these days, there is some photographic evidence on my Flickr account. Enjoy.

Oh, and predictably it appears that the serial console cable on the machine I installed Ubuntu on was jostled a bit as we were closing things up, cause I can't get into it now. And sshd wasn't installed as part of the default install, so now we can't get into it. Great. Looks like somebody's gonna be making another trip out there soon...

Saturday, February 25, 2006

ETL 0.1.0 Release

So a while back I was playing around with a templating language based on APR. I've still been playing with it, off and on, and it's finally ready for a new release.

I've made a bunch of changes since the last version, including renaming it from "APR-Template" to "ETL" since this isn't actually a part of the APR project, switching from a hand rolled lexer and parser to a lexer based on re2c and a parser based on lemon, and the addition of some new features, like filters to html/xml/url encode output. This version also handles utf8 templates correctly, which is a nice bonus we got as part of the switch to re2c.

Note that from the users point of view, the fact that I use re2c and lemon is totally transparent, they generate regular old C code, which is shipped as part of the release tarball, so the transition from the old lexer/parser to the new one is purely a developer visible thing, other than the fact that the new way of doing things makes it way easier to add new features ;-)

It's still lacking a number of features, but it's far enough along that it can be used for basic tasks, and the groundwork is there for finishing up the remaining features I want to add.

Anyway, if you're looking for a template language to embed into your Apache HTTPD module or other APR based application, feel free to grab it at http://electricjellyfish.net/garrett/etl/etl-0.1.0.tar.gz. Feedback, as always, is more than welcome.

Sunday, February 19, 2006

Jellyfish!

Some friends were in town this weekend, and since they're into fish we went to the Monterey Bay Aquarium. If you ever have the chance to go I absolutely recommend it. Even with the swarms of annoying kids you get at that kind of place on a three day weekend it was exceptionally cool.

I took a bunch of pictures, but unfortunately I'm out of practice enough that most of them kinda sucked. White balance way off, a little blurry, etc. I did get a few nice ones in one of the jellyfish tanks though, and I figure that's as good an excuse as any to actually use the Flickr pro account that Rob gave me oh, about a year ago.

Yes, I clearly need to spend more time taking pictures if all I have that's worth posting to my Flickr account are some shots from 4th of July two years ago and three pictures of jellyfish from this weekend. I'll have to see what I can do about that, both by digging through my iPhoto archive to see what's worthwhile in there and actually getting out and taking some pictures from time to time.

Monday, February 6, 2006

Kick Ass!

So a friend of mine just showed me what his startup has been working on, and man is it cool. I got in on the private beta, and let me tell you, they're going to change everything.

Sunday, February 5, 2006

Subversion Upgrades

So I rolled Subversion 1.3.x out on http://svn.apache.org/ last night. So far so good, everything seems to be working fine, and the benefits of the new code are already quite clear in some cases. For example, you can now run 'svn diff -r 10:11 http://svn.apache.org/repos/asf' and it'll actually return an answer quite quickly, where previously it would spend forever and a day tracing back through history trying to comfirm that your target path hadn't moved in the revisions between HEAD and your targets...

The next step will be turning on Operational Logging for mod_dav_svn, so we can get some easy to parse log info about what exactly people are doing with the ASF Subversion repositories. I'm quite curious about this, so hopefully I'll be able to get some nice statistics on how our Subversion traffic looks over the course of a week or so.