HTML5 + WordPress Resource Links From my WordCamp Boston Presentation

Owing to the contrast on the A/V system, my last slide was illegible, so here are all the links that folks couldn’t see. The presentation itself: HTML5 + WordPress And the resource links: The working group http://www.whatwg.org/ Mark Pilgrim’s HTML5 book Dive into HTML5 The Modernizr library Modernizr The outliner http://gsnedders.html5.org/outliner/ The post talking about […]

Two Front End Development Interview Questions No One Has Been Getting Recently + One I’m Afraid to Even Ask

Yes, I’m still helping out with screening candidates. I haven’t yet interviewed someone to replace me, but there’s still a week to go. Anyway, we’ve had a couple of technical questions that candidates universally failed to answer. Why share them here? For starters I just want to know if we’re crazy to expect people to […]

Recent Reading (JavaScript Library CDNs, User-Agent Strings, Hacks, Hacks and Hacks)

Should You Use JavaScript Library CDNs? Interesting reading. Here’s the salient bit: Or, more simply: If we use Google’s JavaScript Library CDN, we are asking the majority of our website visitors (who don’t have jQuery already cached) to take a 1/3 of a second penalty (the time to connection to Google’s CDN) to potentially save […]

I’m Messing Around With an HTML5 Version of the Default WordPress Theme

WordCamp Boston is less than a week away, and as part of my presentation I wanted to show the new elements in an environment that basically everyone that works on WordPress sites will recognize- the default theme. To that end, I mocked up a functioning HTML5ized version of the home page to use as an […]

Rethinking the “How To Serve IE-Specific CSS” Question

This is my old pattern: <!DOCTYPE html> <html lang="en-US"> <title>Internet Exploder</title> <link rel="stylesheet" href="/_assets/styles/styles.css" /> <!–[if gte IE 5.5]> <![if lt IE 7]> <link rel="stylesheet" href="/_assets/styles/ie6.css" /> <![endif]> <![if IE 7]> <link rel="stylesheet" href="/_assets/styles/ie7.css" /> <![endif]> <![if gt IE 7]> <link rel="stylesheet" href="/_assets/styles/ie8.css" /> <![endif]> <![endif]–> </head> <body id="home"> Simple. It serves a new style […]