Save the date: Kernel Recipes is back! 🎉
From September 22-24, 2025, we’re diving into 3 days of kernel discussions, talks and community fun.
Stay tuned!
The next Portland Linux Kernel meetup will be on Thursday, January 23rd from 6:00 PM to 9:00 PM PST at Lucky Labrador Beer Hall, 1945 NW Quimby St: https://www.meetup.com/portland-linux-kernel-meetup/events/305517704/ #Linux #LinuxKernel #Portland #PDX #PortlandPDX
Nvidia CEO says company has plans for desktop chip designed with MediaTek
> "We're going to make that a mainstream product," Huang said. "We'll support it with all the things that we do to support professional and high-quality software, and the PC (manufacturers) will make it available to end users."
Massachusetts Avenue, Cambridge, in Central Square.
#MA_S45LCS
I will present Mirror Hall for the first time at #FOSDEM next month [1], and wrote a guide on how to develop similar home-grown desktop streamer solutions last month [2].
There's only a couple of weekends until then for small improvements to the app, so if you have any particular wishes let me know! 🪄
I’ve posted an end-of-year update for my GCC translation validation tool, smtgcc, to the GCC mailing list:
https://gcc.gnu.org/pipermail/gcc/2024-December/245315.html
Everything Open 2025 program is now published.
Presentation “Enhancing spatial safety in the Linux kernel: Fixing thousands of -Wfamnae warnings” by Gustavo A. R. Silva
Program: https://2025.everythingopen.au/schedule/
Tickets: https://2025.everythingopen.au/attend/tickets/
How today started: "ah, time for the easy bit of this library, open a unix socket and talk with the codec I've written"
How today is going: posix spec open on one screen, manpages on another, linux kernel source code front and center. One of these three is lying, and by Jove I aim to discover which it is.
I generated a 12-character commit SHA prefix collision with the start of Linux's git history. It took about 6 hours on an RTX 3080 GPU:
https://people.kernel.org/kees/colliding-with-the-sha-prefix-of-linuxs-initial-git-commit
if you're interested in actually overthrowing Big Android (rather than living off Googles scraps) be sure to come by the #LinuxMobile assembly this congress. There's a revolution brewing :3
in switzerland you aren't allowed to have a train with exactly 256 axles because of an integer overflow in the axle counting machine
i wish i could fix my software bugs by making it illegal to cause them
The complete schedule for the #eBPF devroom at #FOSDEM '25 is online ⚙️ 🐝
https://fosdem.org/2025/schedule/track/ebpf/
The devroom will take place on the Saturday (1st February) afternoon. I hope to see many of you at the event 🙂
Welcome to the War on Cars, Conor Dunne.
/cc: @TheWarOnCars
It’s a long article on these insanely bright car headlights, but it contains this paragraph ⬇️ https://www.theringer.com/2024/12/03/tech/headlight-brightness-cars-accidents?lid=dpe6tiyd81ev
#284 Given the following in C++
template <typename... T>
void f1(T......); // A
template <typename... T>
void f2(T..., ...); // B
Without checking, which is valid:
A. A
B. B
C. Both
D. Show results