Also, is it possible on tg to restore deleted link preview and generate the preview for a non-first hyperlink?
~ Is there a monospace font that covers the Mathematical Operators (U+2200--U+22FF) block?
Link to post
Link to post
Vftdan Channel
vftdan – B020
Maybe instead of a DAW I should try something like MuseScore :thonk:
💯4
> Krapivin was not held back by the conventional wisdom for the simple reason that he was unaware of it.
🔥1🥴1
~ 🔁︎ Klara in the hidden land
Holy shit: https://www.wired.com/story/undergraduate-upends-a-40-year-old-data-science-conjecture/
For the non-programmers: hash tables are one of those things you learn about in your first year as a CS student, and very likely in your first CS class. Not something you expect to read about conjecture-breaking, complexity-bounds-changing new implementations of.
Full paper: https://arxiv.org/abs/2501.02305
Link to post
Holy shit: https://www.wired.com/story/undergraduate-upends-a-40-year-old-data-science-conjecture/
For the non-programmers: hash tables are one of those things you learn about in your first year as a CS student, and very likely in your first CS class. Not something you expect to read about conjecture-breaking, complexity-bounds-changing new implementations of.
Full paper: https://arxiv.org/abs/2501.02305
Link to post
🔥1
~
Link to post
Failure [INSTALL_FAILED_INVALID_APK: /data/app/vmdl1725832797.tmp/base.apk specified package org.mozilla.fenix inconsistent with org.mozilla.firefox_beta]Link to post
>
>
Why...
find libs/ -name '*.o' -exec touch {} \; && nice make -j6 install>
Building CXX object libs/...cpp.oWhy...
Vftdan Channel
~ Uhh... Does _Generic in #C typecheck non-chosen branches? Link to post
But it seems that it only has generated errors for all scalar branches, so it makes even less sense
Vftdan Channel
But it seems that it only has generated errors for all scalar branches, so it makes even less sense
Or maybe even not all, but only same-sized
Vftdan Channel
But it seems that it only has generated errors for all scalar branches, so it makes even less sense
No, I misread the error message, it points to the line with non-scalar types, it just seems to implicitly interpret
scalar as {scalar}.
Vftdan Channel
~ Uhh... Does _Generic in #C typecheck non-chosen branches? Link to post
After a preprocessing I get a code of this form and it fails to compile with
static assertion failed: "Unreachable":printf(_Generic(0,
int: "Hello, world!\n",
default: sizeof(struct{_Static_assert(0, "Unreachable"); int dummy;})
));
Vftdan Channel
After a preprocessing I get a code of this form and it fails to compile with static assertion failed: "Unreachable": printf(_Generic(0, int: "Hello, world!\n", default: sizeof(struct{_Static_assert(0, "Unreachable"); int dummy;}) ));
(originally there was illegal conversion instead of static assertion)
Vftdan Channel
~ Uhh... Does _Generic in #C typecheck non-chosen branches? Link to post
Also,
Shouldn't it have these instead:
?
stdbool.h has these lines:#define true 1
#define false 0
Shouldn't it have these instead:
#define true ((_Bool)1)
#define false ((_Bool)0)
?