Tag Archives: development

Failed Lighthouse test

Fixing the NO_LCP error in Lighthouse

by

I redesigned this site recently. You might have noticed. Maybe not if it’s your first time here, that’s ok too. Those full page splash images with everything fading into view look pretty snazzy but there’s one small problem: the Lighthouse test’s Largest Contentful Paint test fails to pick up on any element that starts at…

Posted in CSS | Tagged , , | 1 Comment

Load JQuery from Google’s CDN with local fallback in WordPress

by

The advantages of loading scripts from Google’s CDN are fairly obvious – for a common script such as jQuery, we’re on to a better-than-even chance that the user will already have the script in their browser’s cache from other sites, reducing the total download weight of your site. Even if they don’t, the file will…

Posted in WordPress | Tagged , , , | Leave a comment

Setting up the Perfect Web Development Environment, Part 1

by

Inspired by Elliot Jay Stocks’ recent posts on his iMac plus Air setup, I thought I’d document how to set up a seamless development environment between desktop and laptop. If you intend to set up a similar environment, you’ll need to perform these steps identically on both machines. Part 2 of this series will deal…

Posted in Code | Tagged , , , , , | Leave a comment

The Real WTF is…

by

If you’ve never read The Daily WTF, it’s a fantastic site run by Alex Papadimoulis highlighting the horrors that readers have found and submitted in real production code. Reading it is a heady blend of “oops, I used to do that” mixed with some absolutely abysmal stuff that you’d swear couldn’t possibly be real. Just…

Posted in Code | Tagged , , , , | Leave a comment

Installing and Configuring SVNServe and TortoiseSVN on Windows

by

After you’ve been working with code for a while, source control is a godsend. It provides a way of tracking changes, prevents conflicts and generally saves your bacon. Here’s how to set it up on Windows 7. Installation First grab the latest SlikSVN and TortoiseSVN packages for your platform – x86 and x64 versions are…

Posted in Code | Tagged , , , , | 17 Comments

Mistyped URL? Duplicate content? .htaccess and mod_rewrite to the rescue

by

It’s been a while since I’ve posted, so I thought I’d jot down a couple of ways Apache and mod_rewrite can save your life. Not literally of course, unless your website’s been linked to your life-support system by a crazed psychopath – but it should make your readers’ lives easier. Isn’t that what we’re supposed…

Posted in Apache | Tagged , , , , | 5 Comments

On the Importance of a Coding Standard

by

mail() fail I was recently called upon to troubleshoot the mail script powering a website’s contact form, which for some reason unbeknownst to anyone was failing silently. It should’ve been an easy fix, but the more I dug into it, the more confused I became, and resorted to dumping variables to see if I could…

Posted in PHP | Tagged , , , , , | Leave a comment