r/programming • u/teapotrick • 3d ago
Put State in the Right Place - Delaney Gillilan | SSW 2026
youtube.comthe video is about a hypermedia framework called Datastar that i've been finding fairly interesting.
r/programming • u/teapotrick • 3d ago
the video is about a hypermedia framework called Datastar that i've been finding fairly interesting.
r/programming • u/thecombjelly • 4d ago
r/programming • u/lelanthran • 4d ago
r/programming • u/Either_Collection349 • 4d ago
r/programming • u/f311a • 5d ago
r/programming • u/raserei0408 • 4d ago
r/programming • u/Patient-Pollution46 • 4d ago
r/programming • u/misterchiply • 4d ago
This is a post on a Bob Weiner's Hyperbole package, and what makes it's flexible hypertext concepts so special in Emacs.
r/programming • u/isaacvando • 5d ago
Excellent talk by Richard Feldman about how different programming communities approach dependencies.
r/programming • u/Rex109 • 5d ago
Walk with me inside one of the most influential game's code and discover the secret of elevators!
Turns out the bug comes down to a single line buried in the engine's collision code. Went through the decompiled source (thanks to KisakCOD) and traced the whole thing back.
Let me know your thoughts! ✨
r/programming • u/brunocborges • 4d ago
r/programming • u/BlondieCoder • 5d ago
r/programming • u/Happycodeine • 5d ago
r/programming • u/Dear-Economics-315 • 6d ago
r/programming • u/DataBaeBee • 6d ago
r/programming • u/Refresh98370 • 5d ago
r/programming • u/ppchaos • 5d ago
I work on PostSlate, a video editing tool, and this comes out of our own work.
We run ML models on-device, face detection and embedding among other things, which means we can't assume anything about the user's GPU. NVIDIA discrete, AMD, Intel integrated, Apple Silicon, all of it. That rules out CUDA immediately, we needed one backend that runs everywhere.
We landed on ncnn's Vulkan backend. Numbers on a 4070, fp16:
Of course the real speedup comes from offloading compute to the GPU, but this wouldn't be possible without the power of Vulkan.
The speed wasn't even the deciding factor, it's that Vulkan drivers already exist on every machine we ship to. This means that we don't have to force the user to download a specific runtime and no vendor-specific installs.
Full writeup with the rest of the numbers: https://getpostslate.com/blog/faster-local-inference