Having just finished the most advanced responsive HTML email project I’ve worked on yet, I thought I’d share a few things I’ve picked up. Use the Zurb Ink mail framework: It’s restrictive, but it’s the fastest way to get good results in the majority of clients Start with the desktop. There are two reasons to …
Author Archives: Andrew
Close tabs to the right for Safari
Chrome has a terrific feature that lets you close all the tabs to the right of the current one. Very handy if you’ve opened a bunch of links from search results, found the one you want, and want to get rid of all the rest. Safari is a bit more limited; you can only close …
Markdown coming to Jetpack
WordPress.com have just rolled out native Markdown support. Down in the comments, the author suggests that the functionality may be coming to Jetpack soon.
The bash function I should have written years ago
I bet you nine times out of ten when you mkdir whatever, the next thing you do is cd whatever. Add this to your bash profile. function mcd() { mkdir $1 cd $1 } Run mcd whatever at the shell prompt, and you’ll find yourself in a brand new directory called whatever.
Use DNS prefetching to speed up web font loading
Poking around in a framework today, I saw they’d suggested using the new dns-prefetching feature in HTML5 to speed up resolving some foreign domains. Further digging showed folks are prefetching the domains from which Google serve their web fonts. It’s a great idea, given that web fonts are one of the biggest contributors to page …
Continue reading “Use DNS prefetching to speed up web font loading”