Headless WordPress on the JAMstack

Browser Version Release Spectrum

February 5, 2020

Whenever a browser upgrades versions, it’s a little marketing event, and rightly so. Looks like for Firefox it’s about once a month, Chrome is ~6 weeks, and Safari is once a year. Chrome 80 just dropped, as they say, and we get a video and blog post. What strikes me about releases like this these […]

Read more ⟶

HTTPS is Easy!

February 5, 2020

I’ve been guilty of publicly bemoaning the complexity of HTTPS. In the past, I’ve purchased SSL certificates from third-party vendors and had trouble installing them. I’ve had certificates expire and had to scramble to fix them. I’ve had to poke and prod hosting companies to help me ensure things were going to renew correctly, and […]

Read more ⟶

Native Image Lazy Loading in Chrome Is Way Too Eager

February 5, 2020

Interesting research from Aaron Peters on <img loading=”lazy” … >: On my 13 inch macbook, with Dock positioned on the left, the viewport height in Chrome is 786 pixels so images with loading=”lazy” that are more than 4x the viewport down the page are eagerly fetched by Chrome on page load. In my opinion, that is waaaaay […]

Read more ⟶

CSS4 is a Bad Idea

February 5, 2020

Louis Lazaris, reacting to the idea of CSS4: The reason “CSS3” worked is because it was real. It was the successor to “CSS2.1”. Everything after CSS2.1 was considered to be under the umbrella of “CSS3”. The gist is that CSS4 isn’t real, so won’t work, and we don’t need it anyway. Perhaps I overestimate the […]

Read more ⟶

Creating an Editable Webpage With Google Spreadsheets and Tabletop.js

February 5, 2020

Please raise your hand if you’ve ever faced never-ending content revision requests from your clients. It’s not that the changes themselves are difficult, but wouldn’t it be less complicated if clients could just make the revisions themselves? That would save everyone valuable time, and  allow you to turn your attention to more important tasks. In […]

Read more ⟶

Select an Element with a Non-Empty Attribute

February 5, 2020

Short answer: Longer answer (same conclusion, just an explanation on why we might need this): Say you have an element that you style with a special data-attribute: You want to target that element and do special things when highlighting. That data-type attribute is part of a template, so it can have any value you set. […]

Read more ⟶

CSS4

February 4, 2020

Tab Atkins in 2012: There has never been a CSS4. There will never be a CSS4. CSS4 is not a thing that exists.

Read more ⟶

How To Create A Headless WordPress Site On The Jamstack

February 4, 2020

Just this morning, Chris shared a streamlined way to get a static site up and running with Netlify. As it happens, Sarah and I also wrote up a little something that expands that idea where a static site can pull content from WordPress using the REST API. Using Vue, Nuxt, axios, and Netlify, it’s possible […]

Read more ⟶

PHP is A-OK for Templating

February 4, 2020

PHP templating often gets a bad rap for facilitating subpar code — but that doesn’t have to be the case. Let’s look at how PHP projects can enforce a basic Model, View, Controller (MVC) structure without depending on a purpose-built templating engine.

Read more ⟶

Overcomplicatin’

February 4, 2020

There’s some famous quote that goes something like… When we’re young, we make simple things because that’s all we know. Then we learn how to make complex things so we make complex things. When we grow old, we learn to make simple things again. Brad recently wrote about this abstractly in regard to musicianship, but […]

Read more ⟶

Possibly The Easiest Way to Run an SSG

February 4, 2020

“Static Site Generator,” that is. We’ll get to that in a second. Netlify is a sponsor of this site (thank you very much), and I see Zach Leatherman has gone to work over there now. Very cool. Zach is the creator of Eleventy, an SSG for Node. One thing of the many notable things about […]

Read more ⟶

The Three Types of Code

February 3, 2020

Every time I start a new project, I organize the code I’m looking at into three types, or categories if you like. And I think these types can be applied to any codebase, any language, any technology or open source project. Whether I’m writing HTML or CSS or building a React component, thinking about these […]

Read more ⟶

Freezing User-Agent Strings

February 3, 2020

There’s been news about Chrome freezing their User-Agent string (and all other major browsers are on board). That means they’ll still have a User-Agent (UA) string (that comes across in headers and is available in JavaScript as navigator.userAgent. By freezing it, it will be less useful over time in detecting the browser/platform/version, although the quoted […]

Read more ⟶

How to Create an Animated Countdown Timer With HTML, CSS and JavaScript

February 3, 2020

Have you ever needed a countdown timer on a project? For something like that, it might be natural to reach for a plugin, but it’s actually a lot more straightforward to make one than you might think and only requires the trifecta of HTML, CSS and JavaScript. Let’s make one together!

Read more ⟶

Get Moving (or not) with CSS Motion Path

February 3, 2020

We just linked up the idea that offset-path can be cleverly used to set type on a path. Don’t miss Michelle Barker’s experimentation either, with drawing paths or animating text along a path. Dan Wilson has also been following this tech for quite a while and points out why the sudden surge of interest in […]

Read more ⟶

Full Stack Panic

February 1, 2020

A new podcast from Sean Fioritto inspired by Joel Califa’s term “Full Stack Anxiety”. … the little voice in your head says … “I should know all of this. Do I even know what I’m doing?” Why do web developers the world over feel like this? There is an episode with Joel talking about it […]

Read more ⟶

Innovation Can’t Keep the Web Fast

January 31, 2020

Every so often, the fruits of innovation bear fruit in the form of improvements to the foundational layers of the web. In 2015, HTTP/2 became a published standard in an effort to update an aging protocol. This was was both necessary and overdue, as HTTP/1 rendered web performance as an arcane sort of discipline in […]

Read more ⟶

Smaller HTML Payloads with Service Workers

January 31, 2020

Short story: Philip Walton has a clever idea for using service workers to cache the top and bottom of HTML files, reducing a lot of network weight. Longer thoughts: When you’re building a really simple website, you can get away with literally writing raw HTML. It doesn’t take long to need a bit more abstraction […]

Read more ⟶

Lightning-Fast Web Performance

January 31, 2020

If you’re interested in leveling up your knowledge and skill of web performance, you can’t do better than learning directly from Scott Jehl.

Read more ⟶

Sticky Table of Contents with Scrolling Active States

January 30, 2020

Say you have a two-column layout: a main column with content. Say it has a lot of content, with sections that requires scrolling. And let’s toss in a sidebar column that is largely empty, such that you can safely put a position: sticky; table of contents over there for all that content in the main […]

Read more ⟶