Category Archives: Code

Greasemonkey FTW

// ==UserScript== // @name Get Medieval // @namespace http://get-medieval.livejournal.com/ // @description Fixes broken comic images. // @include http://get-medieval.livejournal.com/ // ==/UserScript== var images = document.getElementsByTagName(‘img’); for (var i in images){ var src = new String(images[i].src); if (src.match(/ainself.net/)){ if (!src.match(/gif/)){ src = … Continue reading

Posted in Code | Tagged , | 6 Comments

Water

Water! is a Google Maps mashup displaying all the public water fountains in Vancouver. The crazy thing about it is that he does it in drupal, and he builds it from scratch in ten minutes using the admin interface. There’s … Continue reading

Posted in Code | Tagged | Leave a comment