Microposts
- Bun + Astro seems to have some weird bug where it doesn’t hot-reload a page on change. Seems to be a Vite issue? Found a fix here: Case mismatched .astro components do not hot reload when running dev server · Issue #4419 · withastro/astro
- “Notice there is a line break before the text starts in the block above. That line break will render, which can be highly annoying. There is no great CSS way to handle that.” - CSS Tricks on styling
pretags - You can set custom properties, then redefine them in a different scope:
#microposts
You know, you’d think that a community that revolves around a concept like “cozy gaming” would be wholesome - but that’s not always the case. Some people are especially precious of certain IP. You’ll hear things like “omg stardew ripoff”, “wow its so much like stardew it turns me off”
But… Stardew itself is not wholly original, lol. No one says that about Harvest Moon (maybe they did back then? idk). Seeing shit like that annoys and disappoints me. Like, I just hear about good games, man
#microposts
Linux is nice but there are 1001 ways to install something
I pretty much have to look up installation instructions most of the time
#microposts
Something to try:
Especially when the elbows fire up you have to drop the reps for a bit. I love (1,2,3)x3 in clusters. Do 1,2,3 reps with 45-60s rest between sets then take a 2-3 min break and repeat two more times. You end up getting 18 reps at a really heavy weight. Once you can complete the whole ladder add a few pounds. If it feels really heavy I may spend 2 or 3 workouts at the same weight to make more of a step cycle instead of straight linear.
bru h i’m going through a css book and I don’t rmb css being this hard
like i guess the simple stuff is easy and the hard things are impossible
and it isn’t so much like a traditional programming language in that you can “reason about things” (I’m not saying it’s not a programming language - don’t @ me) as it is a bunch of seemingly arbitrary rules that you have to sort of remember
TIL:
<style>
:root {
--some-var: red;
}
main {
background: var(--some-var);
}
main.dark {
--some-var: pink;
}
</style>