博文

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

Scripting News: Wednesday, December 11, 2024

图片
Wednesday, December 11, 2024 Bingeworthy has an RSS feed (not public yet), and new ratings show up in my blogroll, of course. # I have United Healthcare insurance. I got it as part of my Medicare package when I turned 65. I've had good experience with them. I had major surgery in 2002, cost hundreds of thousands, included a one-week hospital stay and lots of followup treatments. I know the hospital did all the work with them, I was shielded from any complications, but as far as I know there were none. Never had a treatment questioned or denied. I had another insurance provider for many years after that, but when given a chance I went back to United. Just want to say, so far -- knock wood -- I am a happy customer. # Just added to my todo list -- add the option to use the WordPress REST interface in place of the WPCOM interface , this will give WordLand the ability to edit WordPress sites anywhere, not just on wordpress.com. When I made the choice to go with WPC...

🔥 (#195) Vue Toronto Panel, Inline Composables, and Reactive SVGs

图片
Read this on my blog Hey! I hope you're enjoying the last few weeks of 2024! Yesterday, I opened up early access for my new course, Composable Design Patterns . It's on a 35% off sale until Friday — after that, you'll have to wait until it's finished to get it (in early 2025). Go here to learn more about it: Composable Design Patterns In November, Alex and I did a panel at VueConf Toronto , and it was fantastic! We had four speakers, including Evan You, Daniel Roe, Sigrid Huemer and John Leider. And of course, we've got some tips and more. Enjoy! — Michael 🔥 Inline Composables You can define composables inline, keeping them in your SFC file: < script setup > const useCount = ( i ) => { const count = ref ( 0 ); const increment = () => count . value += 1 ; const decrement = () => count . value -= 1 ; return { id : i , count , incremen...