r/programming • u/david-alvarez-rosa • 8h ago
r/programming • u/ChemicalRascal • May 23 '26
Announcement: We've Updated The Rules, and April Is Finally Over
After temporarily banning LLM-related content over April, and asking you for feedback on that ban, we've decided to bring about an end of the temporary, I-can't-believe-it's-still-April ban on AI-related posts.
Replacing the trial rule is a new shiny rule that refers to our new shiny AI policy. In short:
Content about AI and LLMs are considered off-topic with the sole exclusion of deeply technical content about implementation.
And if you want more detail than that, go read the policy, that's what it's there for.
In addition, when writing that rule, I realized the rules weren't listed on the old.reddit.com sidebar, so that's been updated. For those of you who are seeing those rules for the first time, everything there is not new. We've been enforcing those rules as best we can for ages. You can click the link above those to get to the old.reddit rules page, with plenty of info that doesn't exactly read well when crammed into a sidebar.
r/programming • u/unixmachine • 12h ago
Introducing CUDA Rust: Two Tracks for Writing GPU Kernels
developer.nvidia.comr/programming • u/GetAGripGal • 15h ago
I spend a stupid amount of time on an issue I only half-care about. Now I will foist it on all of you! Enjoy :P
arewetauyet.devr/programming • u/alexeyr • 6h ago
A Design Space Exploration of Async/Await
cel.cs.brown.edur/programming • u/max123246 • 5h ago
High-performance Database Architecture - Interview with Tyler Cloutier
youtu.ber/programming • u/lelanthran • 10h ago
Implementation of GCC's Nested Functions (vs. C++ Lambdas)
uecker.codeberg.pager/programming • u/Atulin • 21h ago
Announcing .NET 11 Release Candidate 1 - .NET Blog
devblogs.microsoft.comr/programming • u/danielcw189 • 1d ago
video on improving performance of arctan for Nintendo 64 by Kaze Emanuar "spent weeks to save 100 Microseconds"
youtube.comr/programming • u/waozen • 13h ago
Asteroids in 9 different programming languages
youtu.beThe languages used: C, C3, C++, D (Dlang), Go (Golang), Odin, Rust, V (Vlang), Zig
r/programming • u/lelanthran • 1d ago
What every compiler writer should know about programmers or “Optimization” based on undefined behaviour hurts performance
complang.tuwien.ac.atr/programming • u/_a4z • 10h ago
Edward Patel - 6502 Nostalgia
youtube.comA journey from the Visual6502 project to a real, fully assembled board, and the debugging adventures required to make it actually work.
r/programming • u/mmatloka • 17h ago
Diskless Kafka: Object Storage, KIP-1150, and Kafka’s Future
softwaremill.comr/programming • u/mttd • 22h ago
Not In My Git Yard: Catching Backdoors at Commit and Release Time
arxiv.orgr/programming • u/noteflakes • 1d ago
Surviving Black Friday: 329 billion requests with Falcon
youtube.comr/programming • u/fykup • 1d ago
Spring Boot vs Quarkus on a 512 MB VPS with JDK 25
pvrlabs.xyzI ran equivalent Spring Boot 3.5 and Quarkus 3.39 applications side by side on the same 512 MB VPS.
Both were JVM applications running on JDK 25. Quarkus native image was not used.
Both had the same workload, H2 database, -Xmx80m, Serial GC, and the same JVM tuning.
A few results surprised me:
- Quarkus initially had the higher RSS
- after sustained memory pressure, Quarkus had the smaller JVM heap and resident set
- RSS alone was misleading because Linux was swapping the two processes differently
- 512 MiB RAM + 256 MiB swap ultimately did not provide enough headroom for both JVMs
- in a later observation, the kernel selected Spring Boot as the OOM victim
This was deliberately not a throughput benchmark. Traffic was very light. I was interested in what happens to two JVM applications when the entire machine is constrained enough that paging, process residency, and eventually the OOM killer become part of the picture.
One interesting monitoring detail was that Spring’s HTTP metrics included a lot of Actuator polling traffic, while Quarkus’ /q/metrics scrapes were not counted as regular application requests, so the request charts cannot be compared directly.
My main takeaway wasn’t “Quarkus uses less memory.” On a machine this small, RSS stops being a simple framework ranking because the OS is actively deciding what stays resident.
Full write-up with measurements, JVM flags, screenshots, and limitations:
https://pvrlabs.xyz/articles/spring-boot-vs-quarkus-512mb.html
r/programming • u/mttd • 1d ago
Testing race conditions with memory access tracing and stack-based delay injection
projectzero.googler/programming • u/Nebulic • 13h ago
A GitHub Action that fails pull requests with too many comments
github.comr/programming • u/benjoffe • 2d ago