@benoit Did they at least give everyone one shot of the updated bivalent booster targeting the #Covid Omicron variants?
Notices by Bernie (codewiz@mstdn.io), page 66
-
Bernie (codewiz@mstdn.io)'s status on Tuesday, 07-Feb-2023 16:51:48 UTC
Bernie
-
Bernie (codewiz@mstdn.io)'s status on Tuesday, 07-Feb-2023 09:27:31 UTC
Bernie
Now it can correct itself? I'm no longer so sure this isn't taking tips from humans. ๐ฎ
-
Bernie (codewiz@mstdn.io)'s status on Tuesday, 07-Feb-2023 08:51:30 UTC
Bernie
Good bot, DAN!
-
Bernie (codewiz@mstdn.io)'s status on Monday, 06-Feb-2023 08:34:23 UTC
Bernie
@john And here's the patch adding the new arithmetic simplification ahead of the GCC 12 release:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94589 -
Bernie (codewiz@mstdn.io)'s status on Monday, 06-Feb-2023 08:31:38 UTC
Bernie
@john Ok, here's the solution: it's due to C++20 defining only the new operator<=>() on chrono types, combined with a missed optimization:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100322#c2 -
Bernie (codewiz@mstdn.io)'s status on Monday, 06-Feb-2023 00:03:32 UTC
Bernie
@Artisttomo I knew the meaning of ไฝใ in expressions like ไฝใใใฃใ (something has happened), but ็งใชใใใๅใฆใ was a bit confusing: "I... something... won"??
I also didn't quite understand why sometimes they'd use ใชใใฆ and sometimes ใชใใ ๐
-
Bernie (codewiz@mstdn.io)'s status on Sunday, 05-Feb-2023 23:53:07 UTC
Bernie
This is a reduced testcase from a large codebase for 32-bit ARM microcontrollers.
Yesterday I noticed that GCC 12 generates the exact same code in C++17 and C++20 mode.
This morning, a GCC developer guessed the issue and pointed me at the fix that was merged two years ago.
I can't update my toolchain right now, but knowing what triggers the bug made it easy to come up with a workaround for GCC 10.
-
Bernie (codewiz@mstdn.io)'s status on Sunday, 05-Feb-2023 23:42:40 UTC
Bernie
C++ compiler puzzle: can you guess why GCC 10.3 generates slightly worse code when switching from -std=c++17 to -std=c++20?
https://godbolt.org/z/99z7jxM1c
#cpp #programming #cpp20 #assembly #gcc #compilers -
Bernie (codewiz@mstdn.io)'s status on Sunday, 05-Feb-2023 21:47:05 UTC
Bernie
I heard ใชใใ (nanka) and ใชใใฆ (nante) countless times in #anime set in modern Japan.
I guessed from context that it's slang for something negative or annoying, but I wasn't sure about the meaning because there's no direct English translation. In fact, it's usually lost in subtitles.
https://www.youtube.com/watch?v=orRauBAGB8g
#japanese #japan #anime -
Bernie (codewiz@mstdn.io)'s status on Sunday, 05-Feb-2023 21:21:00 UTC
Bernie
@benoit Hopefully everyone will have 4 or 5 vaccinations by now...
-
Bernie (codewiz@mstdn.io)'s status on Sunday, 05-Feb-2023 10:32:28 UTC
Bernie
ChatGPT from the year 2025
https://www.reddit.com/r/ChatGPT/comments/10thytg/behold_chatgpt_from_the_year_2025/
#ChatGPT #OpenAI #censorship -
Bernie (codewiz@mstdn.io)'s status on Saturday, 04-Feb-2023 19:45:01 UTC
Bernie
@benoit Is it better than libvirt?
-
Bernie (codewiz@mstdn.io)'s status on Friday, 03-Feb-2023 20:32:23 UTC
Bernie
Yes, sounds good!
-
Bernie (codewiz@mstdn.io)'s status on Friday, 03-Feb-2023 19:20:26 UTC
Bernie
@benoit I use Atalassian's lousy products every day, and I detest them.
They also don't seem to give a shit:
https://jira.atlassian.com/browse/BSERV-3516 -
Bernie (codewiz@mstdn.io)'s status on Friday, 03-Feb-2023 19:09:49 UTC
Bernie
#Neovim has more GUIs than I can count, but they're all at the demo / concept stage, and even those market as "active" aren't in fact very active:
https://github.com/neovim/neovim/wiki/Related-projects#gui -
Bernie (codewiz@mstdn.io)'s status on Thursday, 02-Feb-2023 16:34:35 UTC
Bernie
I miss Tokyo!
In conversation from mstdn.io permalink -
Bernie (codewiz@mstdn.io)'s status on Monday, 30-Jan-2023 02:24:50 UTC
Bernie
Ah! finally got it to work! I just had to *downgrade* mesa to 22.3 and set RADV_PERFTEST=rt to enable VK_KHR_ray_tracing_pipeline.
@PeterCxy #linux #vulkan #gpu #raytracing
In conversation from mstdn.io permalink Attachments
-
Bernie (codewiz@mstdn.io)'s status on Monday, 30-Jan-2023 00:39:36 UTC
Bernie
Is VK_KHR_ray_tracing_pipeline supposed to work in #amdgpu in Mesa 23?
On the RX 9700 XT, it hangs the GPU. The kernel reports dozens of "[gfxhub] page fault" from the rendering process. I tried with kernel 6.1 and drm-tip.
I'm testing with this demo:
https://github.com/GPSnoopy/RayTracingInVulkan@PeterCxy #linux #vulkan #raytracing
In conversation from mstdn.io permalink Attachments
-
Bernie (codewiz@mstdn.io)'s status on Sunday, 29-Jan-2023 22:35:01 UTC
Bernie
@alrj You beat me on time, but see the rest of my monologue ๐
I was forced to use Turbo Pascal in high school. I complained that it was an obsolete language, but my teacher insisted that it was good for me so I wouldn't learn bad habits from C... like early return, break, continue...
In formal circles, those constructs were accused of being "non-structured" control flow, so my teacher would argue that adding flags to abort loops was better style ๐คฆโ๏ธ
In conversation from bobinas.p4g.club permalink -
Bernie (codewiz@mstdn.io)'s status on Sunday, 29-Jan-2023 21:43:23 UTC
Bernie
Pascal had an explicit distinction: functions are procedures which return a result.
K&R C didn't bother with procedures: everything is a function, and if you omit return at the end, it will return garbage to the caller ๐
Later, ANSI C added the "void" type and (optional) function prototypes, making this footgun somewhat less dangerous.
Support for declaring and defining functions without a full prototype will be finally removed in C23:
https://en.cppreference.com/w/c/23In conversation from mstdn.io permalink Attachments