Alexander Monakov
amonakov@mastodon.gamedev.place
Posts
-
Post #2690513
In CSS, is there a crime^Wway to unset max-height if the element was "focused" somehow? I'm looking at collapsing quote blocks in public-inbox. I can do .q { display: inline-block; max-height: 9em; overflow-y: auto; resize: vertical; } .q[style*=height] { max-height: unset; } which collapses blocks, and lets me resize them. But if I add .q:active { max-height: unset; } that's not useful, because the block is expanded only as long as the mouse button is...
-
Post #2150978
“The way they handled it was heartless.” https://time.com/article/2026/04/30/oracle-layoffs-ai-tech-jobs/
-
Post #2150976
Oh, so that's why PC HPET runs at that frequency (from https://en.wikipedia.org/wiki/Color_burst)
-
Post #1494565
My take on HTML templating: https://codeberg.org/amonakov/fml.py (my Python is cringe probably, please be gentle)