Blog

Dan Q found GC3W69Q Philpstoun wander – Who stole the bridge?

This checkin to GC3W69Q Philpstoun wander - Who stole the bridge? reflects a geocaching.com log entry. See more of Dan's cache logs.

Found easily with fleeblewidget: we’ve come up from Oxford and we’re cycling from Glasgow to Edinburgh as part of our anniversary celebrations. Lovely spot, and yes, surely it was a bridge, once. TFTC!

See more posts about our 2019 anniversary break?

Dan Q found GC5N0VG The Bridge Of Sighs

This checkin to GC5N0VG The Bridge Of Sighs reflects a geocaching.com log entry. See more of Dan's cache logs.

Found with fleeblewidget at the start of our anniversary break cycling around Scotland. Our sleeper train got cancelled (grr) so we arrived from London on a rail replacement coach (ugh) and started our morning exploring the necropolis and finding this little cache. Super easy find, TFTC!

See more posts about our 2019 anniversary break?

Dan Q found GC5DP66 Plackett Link

This checkin to GC5DP66 Plackett Link reflects a geocaching.com log entry. See more of Dan's cache logs.

Some serious vegetation got in my way here, but not for long. Hmm; got to the end of that path faster than I expected… perhaps I’ve time to find a couple more caches before the others wake and breakfast becomes a possibility…

Dan Q found GC7A2PB 2. Placket Pathway

This checkin to GC7A2PB 2. Placket Pathway reflects a geocaching.com log entry. See more of Dan's cache logs.

Wish I’d brought my GPSr; didn’t expect to be caching today so I’m running off my phone and it doesn’t do as good a job once close to GZ. Found this in the end, but as others have noted this isn’t a clip-lock container – description needs updating!

Dan Q found GC7A2NK 1. Placket Pathway

This checkin to GC7A2NK 1. Placket Pathway reflects a geocaching.com log entry. See more of Dan's cache logs.

After a garden party next door last night I think I was first to wake up this morning as the sun shone through my tent. I was literally just sleeping in the field adjoining, not a hundred metres or so from the cache (the buildings here are in my partner‘s aunts garden!). Hopping the fence wasn’t tempting, so I left her garden normally then came down the path like I was supposed to and soon had the cache in hand.

Campsite in the Paddock behind Ruth's aunt's house

Reply to: A modern font loading strategy with the vanilla JS FontFaceSet.load() method

This is a reply to a post published elsewhere. Its content might be duplicated as a traditional comment at the original source.

Chris Ferdinandi‘s daily tip for yesterday addressed a common familiar to Web developers using custom fonts (i.e. basically all of them):

In many browsers, if a custom typeface is declared but hasn’t finished downloading and parsing yet, browsers will leave space for the text but not render it until the file is ready.

This is often called a Flash Of Invisible Text (or FOIT).

In a now slightly outdated article, Ilya Grigorik, a web performance engineer at Google, reports:

29% of page loads on Chrome for Android displayed blank text: the user agent knew the text it needed to paint, but was blocked from doing so due to the unavailable font resource. In the median case the blank text time was ~350 ms, ~750 ms for the 75th percentile, and a scary ~2300 ms for the 95th.

To make matters worse, some mobile browsers never timeout a failed font file, and therefore never show text in a fallback typeface if the custom one fails to load. You get nothing at all.

Let’s talk about how to fix that.

Chris is right…

He’s right that the FOIT is annoying, and he’s right that for most text (and especially body text) the best result would be if a fallback system font was used immediately and swapped-out for the designer’s preferred font as soon as it becomes available: this maximises usability, especially on slower devices and connections. His solution is this:

  1. Set the font to a fallback font initially.
  2. Set the font to the preferred font once a CSS class is applied to a root element.
  3. Use Javascript to set apply that CSS class either when FontFaceSet.load() indicates that the font is available, and (via a cookie) for as long as the font file is expected to appear in the browser cache.

This approach is not without its problems. It requires Javascript (users for whom Javascript fails for some reason won’t see the font at all, but may still have to download the font file!), conflates cookie lifetime with cache lifetime (the two can be cleared independently, cookies can sometimes be synchronised across devices that don’t necessarily share caches, etc.), and uses Javascript techniques that don’t work in some browsers (Edge and Internet Explorer are both capable of showing custom web fonts but both will use the fallback font unless either (a) further Javascript is added (which Chris doesn’t supply) or (b) browser detection and/or conditional comments are used to trigger different behaviour in these browsers (which is icky).

…but he’s also wrong…

If only there was a better way to prevent the FOIT. One which degrades gracefully in older browsers, doesn’t require Javascript, doesn’t make assumptions about user cookie/cache configuration, and ideally involves a lot less code. It turns out, there is!

The font-display CSS directive exists to solve this exact issue [MDN]. Here’s what it looks like being used to solve the problem Chris presents (example taken from my blog’s CSS!):

@font-face{
  font-family:"Raleway";
  font-style:normal;
  font-weight:400;
  src: local("Raleway"),
       local("Raleway-Regular"),
       url(/wp-content/themes/q18/fonts/raleway-v11-latin-regular.woff2) format("woff2"),
       url(/wp-content/themes/q18/fonts/raleway-v11-latin-regular.woff) format("woff");
  font-display:swap;
}

Setting font-display: swap in the @font-face block tells the browser to use fallback fonts in place of this font while it loads. That’s probably exactly what you want for text fonts and especially body text; it means that the user sees the text as soon as possible and it’s swapped-out for the preferred font the moment it becomes available: no Javascript necessary! Conversely, font-display: block is a better choice for icon fonts where you want to force the browser to wait as long as possible for the font file to load (because any content rendered using it makes no sense otherwise).

font-display works out-of-the-box with Chrome, Firefox, and Safari and with the next version of Edge; older versions of Edge and Internet Explorer will simply fall-back to their default behaviour (FOIT where-necessary) – this is a progressive enhancement technique. But instead of a couple of dozen lines of Javascript, it’s a single line of CSS.

The only downside is that Google Web Fonts won’t add this directive, so you’ll need to self-host your font files (which is really easy, by the way: there’s a tool that’ll show you how). You should consider doing this anyway, of course: CDNs introduce a number of problems and no longer provide the relative performance benefits they used to. So self-host your fonts, add font-display: swap, and enjoy the most-lightweight and well-standardised approach possible to combatting the FOIT.

Note #14082

A hundred zucks

In the remote chance that @Facebook‘s #LibraCoin [Wikipedia] takes off, I suggest that the appropriate slang term for the currency shall be zucks.

As in: “I’ll bet you a hundred zucks that this new #cryptocurrency will be barely more-successful than Dogecoin, and far less-cute.”

£20 for a boiled egg, one piece of toast and a mug of tea?

This is a repost promoting content originally published elsewhere. See more things Dan's reposted.

Egg and toast

£20 for a boiled egg, one piece of toast and a mug of tea?

The story of a modern London cafe…

(Read to end of thread before commenting!)

An amazing thread well-worth reading to the end. Went in expecting a joke about hipsters, millennials, and avocado-on-toast… finished with something much more.

Note #14062

wewillrock.eu

We Will Rock . EU

You know how sometimes you get an idea, and you already wrote and extended the code that makes it possible so surely you only need to do a little audio editing and CSS animation tweaking and graphic design and HOLY SHIT HOW DID IT GET SO LATE?

Totally worth it.

Also available via dat:// here or there.

Note #14044

Lots of interesting results from the @bodleianlibs staff survey. Pleased to have my suspicions confirmed about my department’s propensity to be accepting of individuals: it’s the only one where a majority of people strongly agreed with the statement “I feel able to by myself at work” and one of only two where nobody disagreed with it. That feels like an accurate representation of my experience with my team these last 7-8 years!

'I feel able to by myself at work' staff survey results chart showing my department strongly agrees