Cool "now and then" San Francisco photos from 1945 and 2008, looking up Waller from Filmore. Use the slider to compare them. My home occupies a few pixels in the upper left of the photo. (tags: sanfrancisco)
How to get access to runtime style information for elements in JavaScript in a browser independent way.
Actually this could be improved by using defaultView for some browsers instead of window.
var view = document.defaultView ? document.defaultView : window;
var style = view.getComputedStyle ? view.getComputedStyle(obj, "") : obj.currentStyle ; (tags: [programming](http://delicious.com/eob/programming) [javascript](http://delicious.com/eob/javascript) [css](http://delicious.com/eob/css))
Command-line executable to generate bitmap or PDF from a URL (tags: webpageprinting tool web)