博文

目前显示的是 六月 26, 2024的博文

Scripting News: Wednesday, June 26, 2024

图片
Wednesday, June 26, 2024 Podcast : The Fediverse is doomed unless subscription gets easy, fast. Twitter kicked butt when it came out in 2006 and the butt it kicked was the feed iverse. Why? Because it was too damned hard and unnecessarily complicated to subscribe to a feed. In Twitter there was a button on each feed page that said Subscribe. Click the button and you're subscribed. That's it. May sound like a small matter, but it's not. Listen wherever you get your podcasts. I've been dying to say that. 12 minutes. # Summary of yesterday's news: You should now be able to subscribe to my podcasts. Use the search function in your favorite podcast client and look for Scripting News. This is what it looks like in Apple Podcasts, for example. # Wordle Kitty prevails! # Wordle Kitty hunkers down in an epic battle with Wordle Monkey on stage at Carnegie Hall in NYC for the honor of kittens everywhere. She ultimately prevails, but not without

🔥 (#171) Vuedle: Wordle with Nuxt Server Components

图片
I hope you're having a great week! I've been hard at work, digging into different parts of Nuxt that I've never used before and learning a lot. All so I can have some really great tips for the upcoming Nuxt Tips Collection. But I took a break from that this week and did my first live streams — we built Vuedle, a Wordle clone that uses Nuxt server components and ships minimal JS. You can catch part 1 and part 2 on YouTube. I plan to do a livestream each week. For now, slowly working on this app and adding more fun stuff to it. Enjoy the rest of the newsletter! — Michael 🔥 Private properties with script setup You can limit what properties are available when a component is accessed by $ref : export default { expose : [ 'makeItPublic' ], data () { return { privateData : 'Keep me a secret!' , }; }, computed : { makeItPublic () { return this . privateData . toUpperCase