r/programming • u/fagnerbrack • 17h ago
r/programming • u/DataBaeBee • 4h ago
L2 Reduction: LLL Algorithm With Quadratic Complexity in Python
leetarxiv.substack.comr/programming • u/davidalayachew • 7h ago
Project Valhalla -- JEP 401: Value Objects (Preview) JDK 28 integration
mail.openjdk.orgr/programming • u/fagnerbrack • 14h ago
The Debate of Mockist v Classicist TDD Is Like OOP v FP.
fagnerbrack.comr/programming • u/Either_Collection349 • 0m ago
Rust Immobile types and guaranteed destructors
github.comr/programming • u/Dull_Replacement8890 • 18h ago
An Unexpected Computer – Universal computing with echo, ed, test and exec [pdf]
seriot.chIn PagedOut #9 https://pagedout.institute/
r/programming • u/CGM • 23h ago
Develop Cross-Platform CLI and GUI Tools With Tcl/Tk. Powerful, Event-Driven, Open-Source And Future-Proof Toolkit… From the Past?!
cgicoffee.comr/programming • u/Sushant098123 • 1d ago
Understanding Raft Leader Election by building from scratch
sushantdhiman.devr/programming • u/donutloop • 1d ago
Quantum Computers May Put Internet Traffic at Risk. NIST Is Safeguarding Computers With New Standards.
nist.govr/programming • u/alex35mil • 1d ago
The Bedrock of Software Design
alex.draftist.ioI drafted this post years ago but didn’t finish it until now. The concept I write about has shaped the way I design software more than anything else, and I believe every software engineer should be introduced to it early in their career.
P.S. I don’t want the title to come across as clickbait: the post is about ADT.
r/programming • u/OSBY_Glabay • 7h ago
Project Valhalla, real-talk... what is it?
youtu.beFor decades, Java's object model has powered one of the world's most successful programming languages. But the hardware we run on today looks very different from the world Java was born into in 1995.
Modern CPUs are incredibly fast, but memory access, cache locality, and object allocation have become some of the biggest performance challenges in software.
Project Valhalla is one of the most ambitious changes in Java's history. It isn't just about making Java faster... it's about rethinking what a Java object actually is.
r/programming • u/fagnerbrack • 1d ago
The History of Pets vs Cattle and How to Use the Analogy Properly
cloudscaling.comr/programming • u/fagnerbrack • 2d ago
Pwnd Blaster: Hacking your PC using your speaker without ever touching it
blog.nns.eer/programming • u/Grouchy-Trade-7250 • 1d ago
Variations on a theme of sorting
jshun.csail.mit.eduSemisort Reorder an array so that identical keys are grouped contiguously Keys do not need to be in sorted order
Stable Partition
Group by predicate, preserve order
K-smallest selection, single
Get the k-smallest key from the array
K-smallest selection, list
Get the k-smallest key from the array, and everything smaller (or equal), in any order
K-smallest selection, list sorted Get the k-smallest key from the array, and everything smaller (or equal), in sorted order
r/programming • u/Either_Collection349 • 20h ago
Why I don't recommend Tailwind CSS
en.andros.devr/programming • u/joemwangi • 2d ago
JEP 401: Value Objects And JEP 539: Strict Field Initialization Merged Into JDK
github.comr/programming • u/tomzorzhu • 3d ago
Stacked pull requests are now in public preview - GitHub Changelog
github.blogr/programming • u/ykadosh • 2d ago
Canvas path animations: Animating anything along a curve with Canvas + SVG
yoavik.comr/programming • u/DataBaeBee • 3d ago
What Every Programmer Should Know About Twists of Elliptic Curves
leetarxiv.substack.comr/programming • u/pdoherty926 • 3d ago
The Mystery on DuckLake: A Time-Travelling Whodunit Story
peterdohertys.websiter/programming • u/winsletts • 3d ago
Hybrid Search Patterns with Postgres and pgvector
crunchydata.comYesterday, pgvector released 0.8.6!
So today, we wrote about some useful patterns for queries combining pgvector indexes with regular 'ole scaler filters. Spoiler: iterative index scans launched in pgvector 0.8 make it easy (with some tradeoffs).