Older blog entries for JonRock (starting at number 0)

I finished my month-long project a couple days early after a brainstorm yesterday, so I had a beer with lunch today. Don't tell my boss.

Here's a nifty perl snippet I came up with during the course of the project:

# uniq(("A","A","B","A","C","B")) ==> ("C","A","B")
# Order is not preserved.
sub uniq { return keys %{{map {$_ => $_} @_}} }

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!