Every Risk player knows if you want to protect North America you don't stop at Greenland. You grab Iceland too so that whoever has Europe doesn't get their continental bonus. /s
Microblog
Health care in America is obviously very screwed up. That said, there are resources out there available for people, but it's hard getting the word out about them.
For instance, people with a disability have access to a special savings account called an ABLE account. If you or someone you know is losing benefits because they have too much money in savings, this account is their way out of that problem.
https://www.ablenrc.org/what-is-able/what-are-able-accounts/
I say this as someone who really enjoys writing JavaScript.
https://social.lol/@bw/115901138426144070
No problem exists in this world that can’t be exacerbated by JavaScript.
I've been getting into a solo TTRPG called Ironsworn: Starforged. I have a goal of doing more creative writing this year. I wanted it to be at a slower pace than the normal, tight-deadline, NaNoWriMo-style writing that I often attempt.
I don't usually publish my creative writing, but I decided to publish my playthrough of this game as a website, partly for funsies but also to keep me motivated. This isn't great fiction, mind you. It's a game, so the pacing is a bit different than a normal story.
If anyone would know, it would be Fedi peeps!
https://howse.social/@tj/115867891583374473
I’m a happy Obsidian user but Trilium Notes looks pretty cool, especially if you want a personal wiki or prefer a rich text experience over Markdown. https://triliumnotes.org/
Bought vitamin D
Received human hair instead
Close, but no cigar
Happy Insurrection Day to all who celebrate.
Sometimes I find interesting things on the internet and I DM them to friends or coworkers. I decided that I needed to put them on my website instead, so I added link post functionality to my blog (and feed)!
Wishing all my Fediverse peeps a happy new year. https://blakewatson.com/journal/2025-my-year-in-review/
I've been using this icon for over a year and honestly I need Momo icons for all my apps now.
https://socel.net/@heyheymomo/115690508085071064
When it comes to website backends for personal projects, I try to use just enough to get the job done. That's historically been PHP and Fat-Free Framework. But now I'm giving Flight PHP a spin.
I've also used Express/ Node and Cloudflare Workers/Hono.
I'm lazy and I don't want a maintenance burden. So I find that PHP is nice most of the time, as it can run pretty much anywhere super easily.
My D&D character's current XP is 23,456. 😌
If you are like me and tired of radio Christmas music and want something more chill, let me throw out my go-to recommendation.
Trying to decide on a project for my holiday time off. Maybe a web-based game?
Here is a more easily copyable version https://bw.paste.lol/omg.lol-snowfall
https://social.lol/@bw/115707707248739139
Add snowfall to any webpage with this code:
```
<script defer type="module" src="https://unpkg.com/@zachleat/snow-fall@1.0.1/snow-fall.js"></script>
<script type="module" defer>
const snow = document.createElement('snow-fall');
document.body.prepend(snow)
</script>
```
The liquid glass design in Preview on macOS is kind of annoying. At certain widths the sidebar overlays the content seemingly arbitrarily just for an effect. If there's any app where you don't want UI arbitrarily covering up your content it's in an app called Preview.
In Vue 2, what's the best pattern for letting a child component know that some action in the parent component has occurred? Methods I've used are: 1) a child prop that gets changed by the parent, 2) the consumer gets a ref on the child component and manually calls a function, 3) an event bus for pub/sub.