HTML5 I’m Using Today- Custom Data Attributes

I have two technology goals over the summer. One is to finally do some meaningful Python work. I’ve been sniffing around Python for a couple of years now and still don’t have any real experience with it under my belt. Hopefully I can change that this summer.* The other, more on-topic goal is to absolutely […]

Google Releases Page Speed (and I add a few lines to my to-do list)

Check it out: Google Page Speed Beyond the plugin itself, the rules are definitely of interest:

What This is All About

Hi, my name is Rob Larsen and this is a new blog for me. I’ve decided to move all of my web technology and business of the internet writing over to one place so that people focused on that stuff can be spared the sketchbook images, movie writing and sports rambling I do over at […]

A JavaScript Curiosity Regarding addEventListener

I’m wondering why this code fails to stop a form submission document.forms[0].addEventListener(“submit”,falsify, false); function falsify() { return false; } and this code successfully kills it? document.forms[1].onsubmit = falsify; function falsify() { return false; } Try it out (Firefox/Safari/Chrome/Opera only- there’s no addEventListener support in Internet Explorer). The form action on both is an alert. The […]

Code I Like: Batch Subversion Rename (Replace Underscore with Hyphen), Bash Script

That’s an unwieldy title, if I ever saw (wrote?) one. Still it describes the code in question exactly, so unwieldy will have to do for this post. Anyway, for SEO purposes I’ve wanted to rename some of my files from underscore delineated (_) to hyphen delineated (-) for a couple of years now. I chose […]