博文

Scripting News: Wednesday, September 3, 2025

Wednesday, September 3, 2025 Podcast: Last chance for the open web . # I want to start reading a bunch of WordPress community blogs . # Linkblog items for the day I can't imagine anyone gives a fuck what chief justice John Roberts thinks about anything. politico.com 5 forecasts early climate models got right – the evidence is all around you. theconversation.com Utah's congressional maps must be redrawn right away, judge rules. pbs.org Microsoft releases 6502 BASIC as open source. opensource.microsoft.com Where did all the WordPress editors go? herve.bzh Pharmacists decry COVID Vaccine Delay. spectrumlocalnews.com Trump says he's set to order federal intervention in Chicago and Baltimore. apnews.com It's time for Chuck Schumer and Hakeem Jeffries to step down. theguardian.com Trump's Most Fateful Teardown Is Happening Now. nytimes.com Homophobe Rand Paul slams gay health expert Daskalakis. advo...

🔥 (233) Writable Computed Refs, Hidden Components, and Render Functions

图片
​ ​ Read this on my blog Hi! This week is a bit quieter for me. I just wrapped up the launch of Advanced Reactivity , so I'm switching gears a little. So, no new articles for you this week, but I've got some from the archives that you might have missed! And of course, your tips, as always. Have a fantastic week! — Michael 🔥 Writable Computed Refs Computed refs are cool and all, but did you know you can create writable computed refs? const firstName = ref ( '' ); const lastName = ref ( '' ); const fullName = computed ({ get : () => ` ${ firstName . value } ${ lastName . value } ` , set : ( val ) => { const split = val . split ( ' ' ); // ['Michael', 'Thiessen'] firstName . value = split [ 0 ]; // 'Michael' lastName . value = split [ 1 ]; // 'Thiessen' } }); fullName . value = 'Michael T...

Scripting News: Tuesday, September 2, 2025

图片
Tuesday, September 2, 2025 CSS Grid where have you been all my life? Very rational, simple. # General note: When I say RSS, I recognize that there are other feed formats, but I don't want to confuse things. The software makes all that transparent, so let's make it transparent for the users too, ok? # WordLand + FeedLand will ask... # If all the people who love RSS and make software for it, feed readers, editors, blogging software, put our heads together, we could make a great network for people to write on, that would be so exciting, it would pull a lot of interest from the silos. If momentum builds, they will eventually add RSS as an inbound and outbound format because they will want to be on this network. # We, as writers, shouldn't have to live with the compromises that come from having to make 5 versions of everything, and still you don't have a way to share a lot of the interesting stuff people write. # If we choose to...

Scripting News: Monday, September 1, 2025

图片
Monday, September 1, 2025 AI chatbots should drop the pretense of being human. # I want my blog on the same network as my social media. # A new kind of spam or phishing email. Appears to be a challenge by Twitter of one of my posts there as a copyright infringement, which it most definitely is not. You have to look closely at the URL it takes you to, which is on this domain. assents-x.com. Hmm at first looks legit, but look more closely. # I've been watching a lot of baseball recently. Over the years I've developed as a programmer, and they've radically changed the way baseball is played. Pitchers used to try to pitch a complete game , but now that never happens. Sometimes they take a pitcher out in the first inning if he's pitched over say 70 pitches, because there's no point, what he's doing obviously isn't working, and he's getting close to the maximum pitches they'd let him do, esp if he's young and a hot prospect,...

Weekly Vue News #213 - Level Up Nuxt: Drizzle ORM, Lazy Hydration & Core Web Vital Gains

图片
Weekly Vue News #213 Level Up Nuxt: Drizzle ORM, Lazy Hydration & Core Web Vital Gains View online Hi 👋 You can now search for links published in previous issues of this newsletter — give it a try . This feature was requested by a subscriber, and I also find it very useful. I always strive to avoid sharing the same link twice, so you'll only get the latest news without any duplicates. Enjoy this issue and have a lovely week ☀️ Vue ...