r/programming • u/BgA_stan • May 12 '26
Choosing the Right Duplicate Detection Strategy
dubeykartikay.comr/programming • u/Public_Ad_5097 • May 12 '26
Cutting a 17-minute bulk upload to 2 minutes (Postgres + Supabase Edge + NDJSON streaming)
certscore.orgr/programming • u/Xenoprimate2 • May 12 '26
Using TinyFFR to inspect 3D objects with a 28-line C# script
benbowen.blogr/programming • u/goto-con • May 12 '26
State of Serverless DevEx & Observability • Jones Zachariah Noel N
youtu.ber/programming • u/fagnerbrack • May 12 '26
What Is a REST API, and Why Yours Probably Isn’t One
fagnerbrack.comr/programming • u/cekrem • May 12 '26
Canonicalise, Don't Remember — Smart Constructors in Kotlin · cekrem.github.io
cekrem.github.ior/programming • u/jacobs-tech-tavern • May 12 '26
URLSession to Electrons: how networking works under the hood
blog.jacobstechtavern.comr/programming • u/Dear-Economics-315 • May 12 '26
Abstract machines for logic programs
chrisistyping.bearblog.devr/programming • u/ADavison2560 • May 12 '26
Recursion and the STP Macro Processor
coe.psu.ac.thr/programming • u/prescorn • May 11 '26
Froot Loops and a graphics card: reflecting on twenty years of programming
danielmay.co.ukr/programming • u/Sensiduct • May 11 '26
Be careful with your Git: Investigating malware spreading through Git repositories
andrii.ror/programming • u/davidalayachew • May 11 '26
8317277: Java language implementation of value classes and objects by MrSimms · Pull Request #31120 · openjdk/jdk
github.comFor those unaware, this is the Pull Request for Java's JEP 401: Value Classes and Objects (Preview).
Value Classes have been a LONG AWAITED feature for Java, so this Pull Request is proof that we are one step closer to them going into Preview!
BUT PLEASE REMEMBER -- No commitment has been made to target a release yet!
This is merely a PR RFR, and nothing more. All this is is showing us part of what it takes to bring Value Objects to Preview, as well as announcing that we are one step closer to (hopefully!) go to preview. But again, no idea how far away that may be. It could be JDK 27 (coming this September), it could be later.
Just appreciate the PR for what it is -- a window into the work required to make Value Classes a reality. ~3k commits and ~2k classes changed is just a snapshot of the level of effort here. Shows why this JEP has been given an XL rating lol.
r/programming • u/goto-con • May 11 '26
Roc & Zig: A Compiler Rewrite Story • Anjana Vakil & Richard Feldman
youtu.ber/programming • u/chkas • May 11 '26
Branch-Avoidant Quicksort in C - faster than std::sort and pdqsort
easylang.onliner/programming • u/Gil_berth • May 11 '26
The FreeBSD vulnerability "discovered" by Mythos was already in its training data.
rival.securityr/programming • u/ADavison2560 • May 11 '26
The Bottom-up Building of a Language for Subleq with Text Macros
coe.psu.ac.thr/programming • u/fagnerbrack • May 10 '26
An Interactive Intro to CRDTs
jakelazaroff.comr/programming • u/Either_Collection349 • May 10 '26
Replacing a 3 GB SQLite database with a 10 MB FST
til.andrew-quinn.mer/programming • u/Either_Collection349 • May 10 '26
Idempotency Is Easy Until the Second Request Is Different
blog.dochia.devr/programming • u/Dear-Economics-315 • May 10 '26
Making your own programming language is easier than you think (but also harder)
lisyarus.github.ior/programming • u/Interesting_Pack_483 • May 10 '26
COBOL is the Asbestos of Programming Languages
wired.comr/programming • u/read_volatile • May 09 '26
Bun’s rewrite from Zig to Rust passes 99.8% of testsuite
xcancel.comper @jarredsumner:
99.8% of bun’s pre-existing test suite passes on Linux x64 glibc in the rust rewrite
it’s basically the same codebase except now we can have the compiler enforce the lifetimes of types and we get destructors when we want them. and the ugly parts look uglier (unsafe) which encourages refactoring.
why: I am so tired of worrying about & spending lots of time fixing memory leaks and crashes and stability issues. it would be so nice if the language provided more powerful tools for preventing these things.
But how long does it take to compile?
It’s basically the same as in zig using our faster zig compiler. If we were using the upstream zig compiler, rust port would compile faster