Stuart Homfray

@jackplug.bsky.social

Central Europe-dwelling Brit, frontend 🐒 Loving kids, wife, football and curry (order subject to change)

Me, an accessibility designer losing his chill: If you do that, no one using assistive tech will be able to use this Dev: Okay but is it really a problem if it isn't accessible? Me: We need to make sure that everyone can access this Dev: What do you mean everyone?? Me:

a man in a suit is crying and says `` everyone '' .

Alt: A man maniacally shouting "EVERYONE!", enunciating and drawing out every ear-piercing syllable. Clip from the film The Professional.

media.tenor.com

The boast of Farage was being a populist, appealing directly to the people But Reform UK policies of scrapping our NHS lower minimum wage more privatisation, tax cuts for superrich are universally unpopular And so is the corruption which surrounds Farage ... meme via Politics UK

Bild

On March 26, 2026, during a debate on violence against women in Germany’s Bundestag, left-wing MP Kathrin Gebel was repeatedly interrupted by AfD MP Martin Reichardt. She responded: “Mr. Reichardt, the clitoris has 3,000 nerve endings, and you’re still more sensitive. That’s quite an achievement.”

Web history disappears when it can’t be preserved. Today, many publishers are blocking the Wayback Machine from archiving parts of the public web, putting decades of digital history at risk. Tell publishers: don’t block the #WaybackMachine Sign the petition ➡️ www.savethearchive.com/newsleaders/

Tell New York Times, The Atlantic, and USA Today to keep the crucial work of journalists in the Wayback Machine!

The news isn’t getting preserved in the Wayback Machine anymore because major media outlets are blocking it.

savethearchive.com

#tinyCSStip I like shorthands, I find them immensely useful. But it doesn't always make sense to drop it all in the shorthand and having repetitions. Yeah, you can store that `.2s` in a #CSS variable. But is it really worth it if you're not even using it elsewhere in addition to not being dynamic?

.nay { /* ❌ DON'T ❌ */
  transition: 
    color .2s, 
    padding .2s
}

.yay { /* ✅ DO ✅ */
  transition: .2s;
  transition-property: color, padding
}