博文

目前显示的是 十月 2, 2024的博文

Scripting News: Wednesday, October 2, 2024

Wednesday, October 2, 2024 Counting down to 30 . # When news excuses lies and when all the viewers know they're doing it, we're beyond the point of no return. # Trade Secrets Radio: What is podcasting? This is the exact moment, 9/24/2004, that podcasting got its name and its definition. It's pretty short. We knew what we were doing. We loved what RSS did for news. Now we were doing the same for radio. Not just talking about it, but finally -- doing it. It worked, pretty freaking well. There's a podcast episode to go with it, coming out shortly. # I have been looking for this picture of John Palfrey, and just found it via digging through the archive for September 2004. # It has been pointed out that this blog will be 30 years old on October 7 , not October 10, as I had previously reported. The clock at the bottom of story pages is correct. It currently reads: 29 years, 11 months, 25 days, 19 hours, 1 minute, 34 seconds. # Pod-catching-up

🔥 (#185) useHead, Teleport, and Lightweight State Management

图片
Read this on my blog Hey! Tomorrow is the first session of my new workshop, Advanced Frontend Testing. Once I've finished the 3 sessions, I'll be turning the material into a self-paced course. I'll be giving you more updates here as I build that out. This first session focuses on: Testing strategy — how do you know what to test and how much? Using mocks well (it's often a source of pain and you may not even realize it) Faking the network with MSW. A simpler alternative to direct mocking. Generating test data with FakerJS. Today I've got a new podcast episode for you, as well as some tips. Enjoy your week! — Michael 🔥 Using useHead The useHead composable from VueUse (and included with Nuxt by default) makes it really easy to manage page metadata like the title : useHead ({ titleTemplate : ( title ) => ` ${ title } — Michael's Blog` , }); We can also add in any sort of tag, including meta tags, script tags, s