List of local geek communities (work-in-progress)

I talked with a local PHP developer today, who’d seen my blog, and we talked some CakePHP, frameworks, servers, the general state of scripting languages, and so forth. And then we came to the subject of local communities, where developers meet up and talk shop. And, as a Copenhagener, I don’t know very much about …

LiveHTTPHeaders Firefox extension alive again

For those of you who did not get the memo: the excellent LiveHTTPHeaders Firefox extension is up and running again, on Firefox 1.5. It is an extension that monitors what goes in and out of your browser. Helpful, helpful. Mr Savard, maker of the thing, says on the site “I hope this will be useful …

Dave Clarke quote

Computer scientist/bikeist Dave Clarke (05 Sep 2006) says (about Ruby on Rails being taught in colleges: I think there are many important computer science concepts to be learned from studying RoR. Typically, one should consider the language, be it Java, Ruby or C, to be the vehicle which helps one to learn concepts, rather than …

Snippet: remove .svn directories

Snippet to recursively drop Subversion control of a directory. It removes the .svn directories, and their contents. find . -name “.svn” -exec rm -rf {} \; Credit: Zed Shaw, at the Mongrel mailing list. (Note to contemporary readers: Crazy old info) Oh, and if you are using Mongrel, and need help with it, there is …

More Io Learning

[Io](http://www.iolanguage.com/)’s very self-documenting, at least when it comes to “what parameters does this and that take?” This is a little walk-through that gets you up and running in the interpreter. Get a binary from the downlaods page, and then come back here. There is a docs slot — with some text about what the method …