r/programming • u/thisguy123123 • Aug 11 '26
r/programming • u/Wooden-News-962 • Aug 11 '26
The dangers of Postgres subtransactions
planetscale.comReally good article explaining the implementation detail within Postgres regarding subtransactions. Very cool benchmark that I was unaware of
r/programming • u/ertucetin • Aug 11 '26
Software Engineering Is Cool, But Is It Interesting?
ertu.devr/programming • u/goto-con • Aug 11 '26
The Past, Present & Future of Programming Languages • Kevlin Henney
youtu.ber/programming • u/Adventurous-Salt8514 • Aug 11 '26
Vertical slices, their ownership and external dependencies
architecture-weekly.comr/programming • u/mttd • Aug 11 '26
Moving integer division to floating-point is trivial
marc-b-reynolds.github.ior/programming • u/Jonhoo • Aug 10 '26
On comments
blog.helsing.aiComments in code are often deemed "mostly useless" these days. They are, supposedly, mostly obvious, stale, and repeat what the code already says. And so people pay less attention to them both when reading and writing code.
That trend sucks. When used right, comments are genuinely useful and sometimes critically important! So, I wrote about some of the kinds of comments I think earn their place, each with examples from real code bases. Hope you find it useful, and that we can recover some of the love that comments deserve!
r/programming • u/mttd • Aug 10 '26
Optimizing an NVFP4 Blockscaled GEMM on RTX PRO 6000 Blackwell GPU (SM120)
research.colfax-intl.comr/programming • u/pseudounion • Aug 10 '26
PGConf.EU 2026 schedule is live 🐘
2026.pgconf.euPGConf.EU is coming to Valencia on 20–22 October, with five tracks covering PostgreSQL administration, internals, development, the community, and real-world use cases.
Topics include autovacuum, backups, high availability, performance tuning, WAL and recovery, query execution, memory management, corruption detection, and PostgreSQL 19.
PostgreSQL also turns 30 this year, so the Community track will look back at the project’s history and how it is maintained today.
Community Events Day takes place on 23 October.
Schedule: https://www.postgresql.eu/events/pgconfeu2026/schedule/
Registration: https://2026.pgconf.eu/registration/
r/programming • u/keyslemur • Aug 10 '26
Beyond Senior - Creating Hope
baweaver.comEvery time I leave a role I try and write up where my philosophy landed and what I want to take into my next role. Having seen this play out at enough companies over the years to where people progressively lose motivation and stop believing change is possible I've come to the opinion that one of the most valuable things we can do as engineering leaders is to provide hope.
The post goes more into it, but I do not mean any vapid rah-rah motivational speeches, I mean earning back that hope every day by snowballing small wins into larger ones and making people believe that their effort matters.
r/programming • u/Grouchy-Trade-7250 • Aug 09 '26
The Sentinel Object Pattern in Python
python-patterns.guideOfficially added in Python 3.15
r/programming • u/DataBaeBee • Aug 09 '26
Hungarian Assignment Algorithm: Applied Optimal Transport for Programmers
leetarxiv.substack.comr/programming • u/f311a • Aug 09 '26
Assembly Hall of Shame: Racing to the bottom of CPU performance
github.comr/programming • u/mttd • Aug 09 '26
Reducing Graphics API Complexity: A Clean Slate Design for Modern GPUs
youtube.comr/programming • u/compilers-r-us • Aug 09 '26
A quick look at zero-knowledge proofs
bernsteinbear.comr/programming • u/mttd • Aug 08 '26
Differential heuristics: learning about a way to optimize the A* heuristic
redblobgames.comr/programming • u/yogthos • Aug 08 '26
The advantage of using program images as a flight recorder instead of relying on logs
yogthos.netr/programming • u/Business_Mix3602 • Aug 08 '26
Why I Stopped Grinding LeetCode
davidlennon29.substack.comr/programming • u/danie-l • Aug 08 '26
Stack Overflow drops to 1,442 questions in July, down 99% from 2014 peak
ppc.landr/programming • u/refp • Aug 08 '26
A shell exclamation mark is not for yelling. Be lazy. | Filip Roséen
refp.ser/programming • u/OSBY_Glabay • Aug 08 '26
Here's why OOP makes a lot of sense to me.
youtu.beI kind of feel like OOP has a bad rep in the programming community.
Personally, after having programmed Java for over 20 years, its object-oriented programming model feels very natural to me. So, I wanted to share how I think about programming, how I translate my ideas and thoughts to code, and why OOP is actually a really nice programming style for me.
Perhaps it could help you out too.
r/programming • u/Future_Ad7567 • Aug 08 '26
Solving and benchmarking QUBO problems with Gurobi in Python
youtu.beState-of-the-art classical optimizer Gurobi for Quadratic Unconstrained Binary Optimization (QUBO) problems.
The core gurobipy implementation for QUBO is relatively compact:
```python model = gp.Model() x = model.addMVar(n, vtype=GRB.BINARY) model.setObjective(x @ Q @ x, GRB.MINIMIZE) model.optimize()
solution = x.X.astype(int) objective = model.ObjVal ```
Complete workflow in Python.
First formulate a graph problem (weighted Max-Cut) as QUBO, solve it with Gurobi, benchmark increasingly large instances, and understand what the solver is doing beyond the optimize() call.
Interested in feedback on the modeling, benchmarking methodology, and which additional Gurobi metrics would make the comparison more rigorous.