Ruby Script to Localise Images for Offline HTML

I’m maintaining a custom HTML5 slide framework. A little similar to the canonical slides.html5rocks.com insofar as, well, it’s HTML5 and slides horizontally! But the key difference is that it’s very markup-based - What You See Is What You Need (WYSIWYN)...

The Tragedy and Triumph of Podcasts

It’s now about 6 years since I discovered podcasts while listening to a pre-podcast podcast, The Gillmor Gang. It’s everything I ever wanted from radio talkback - niche topics, on-demand listening, access anywhere, rich metadata, and no music - I’ve...

Javascript WTFe3

> parseInt(1000) 1000 > parseInt(1000.0) 1000 > parseInt("1000.0") 1000 > parseInt(1e3) 1000 > parseInt("1e3") 1