Notices by anna (navi@social.vlhl.dev), page 2
-
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 21:46:26 JST anna @ada @MiaWinter @javascript also cooking ain't baking
baking is quite literally chemistry and if you change things without knowing what you're changing, it won't come out right -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 20:58:16 JST anna ../.././gcc/cp/method.cc:2738:18: error: expected unqualified-id before ‘defer’
2738 | deferring_kind defer = dk_no_deferred;
okay this i wasn't expecting -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 20:45:57 JST anna if two women's only speaking lines on a movie is them talking about their girlfriends
does the movie pass the bechdel test -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 19:34:29 JST anna > /dev/null:1: internal compiler error: Segmentation fault
wha, how did i do that -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 18:56:39 JST anna @lanodan i'm imagining now what kind of physics would exist in a universe with constant density -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 18:47:03 JST anna my mom just tried to convince me that 1 cup is 200 grams
not 1 cup of what i was measuring, but 1 cup in general, as in 1 cup of anything is always 200 grams
and when i questioned her on it she said she didn't wanna discuss because i'm too stubborn??
sorry mom but your physics ain't physicing -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 17:50:44 JST anna the steam deck showed me my desk is uneven -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 11:52:04 JST anna i found a new wallpaper to use
it's 1080p on my 1440p screen? yes
but it's good wallpaper -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 11:24:43 JST anna @lanodan openrc was basically on life support, any development was purely reactive (only fixing bugs and issues), while other active inits/service managers were actually going somewhere (systemd and dinit)
on one hand, that is the reason i got into the team so easily-- i basically announced a fork (and got into ::gentoo), the next day william invited me
on another, i kinda want to believe i could've got into the team even if it were being actively developed
(i'm kinda having a weird mental de-realization episode today) -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 10:19:14 JST anna sometimes i have similar feelings with "how did i get to become an openrc developer/maintainer" as well tbh
RE: https://social.vlhl.dev/objects/6779549c-413a-4a29-8276-a4973c95a5d5 -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 10:13:22 JST anna got a PoC for defer in gcc
it's bad, but it's a PoC
now idk how to test it lol (like really how do i run a gcc that i built from source without it complaining it can't find other binaries) -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 09:11:20 JST anna spent 15 minutes looking for where "struct function" was defined
and grep didn't help bc there's a macro between `struct` and `function` on the definition :neofox_flop__w_: -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 08:41:05 JST anna @pinskia tho i'll probably need to modify return and goto anyway because you can't do compile time jumps from a deferred statement to outside it -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 08:40:37 JST anna @pinskia yep, that’s how it’s supposed to work:
char *foo = strdup("nya"); defer free(foo); return strlen(foo);should be valid and return 3, which seems to match.
so, plan: same thing with messing around on stmt trees, but then modify pop_scope to move them into the finally block, and something something make every scope have an implicit try
-
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 08:29:53 JST anna @pinskia i'd need to double check on how finally works around `return` values, but probably can reuse that logic, yeah! -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 08:17:57 JST anna okay looked at it a bit
current plan involved changing current_stmt_tree to have a statement tree specifically for current deferred statements
this would make defer’d stuff go there, and then when handling return, goto, continue, break, and lbracket, i’d just merge the deferred statement tree into the function one
-
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 07:37:44 JST anna @pinskia it probably is trying to index every c/c++ source file it finds
i'll see if i can somehow omit the test suite from the list, but i know if i open any .cc file, after a few seconds nvim tells me the lsp has crashed -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 07:27:28 JST anna gcc is so big it crashes ccls constantly -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Tuesday, 12-Nov-2024 07:22:52 JST anna how does gcc fail at "make clean"??? -
Embed this notice
anna (navi@social.vlhl.dev)'s status on Monday, 11-Nov-2024 08:41:25 JST anna @julia every wasm webapp i see does that "make the whole site a canvas and just render to it" thing that completely ignores assistive tech because the html tree is basically empty
i'd say this is common because it's the easy way to port desktop renderers to web, but it sucks