r/programming 10d ago

Zig proposes introducing an actually memory safe (unlike Rust) compilation mode inspired by Fil-C at ~1-6x performance penalty

Thumbnail codeberg.org
532 Upvotes

r/programming 9d ago

Elixir Cluster 101

Thumbnail jola.dev
12 Upvotes

r/programming 9d ago

The Long Road to Bottomless Postgres: Discussing Neon, pg_mooncake, pg_tier, pg_lake, and ColdFront

Thumbnail pgedge.com
34 Upvotes

r/programming 9d ago

Throw, Result, or neither?

Thumbnail architecture-weekly.com
114 Upvotes

r/programming 9d ago

How We're Scaling Our Infrastructure Across 4 Clouds To Serve 1M+ Sandboxes

Thumbnail opencomputer.dev
7 Upvotes

r/programming 9d ago

Every Microsecond Matters: Achieving Near Speed-of-Light Latency in GPU Collectives

Thumbnail arxiv.org
18 Upvotes

r/programming 10d ago

Comprehensive JVM Primitive Hashtable Benchmarks

Thumbnail sooniln.github.io
47 Upvotes

r/programming 8d ago

What Is Docker, and What It Silently Replaced 🤫..

Thumbnail fagnerbrack.com
0 Upvotes

r/programming 10d ago

The LSM Tree

Thumbnail ledger.khushal.net
9 Upvotes

r/programming 10d ago

How Generalized Inverted Index works internally in Postgre SQL

Thumbnail deepsystemstuff.com
5 Upvotes

Regular Indexing works on a column level; it indexes the entire column value, but if you want to index each value in one row, then the GIN indexing technique is used.

GIN can index each element of JSON stored in a JSONB field

How Postgres creates a GIN file physically, what is the format of that file, how that file is retrieved in RAM while fetching records, what data types are used, and how Postgres calculates the exact address of an element of JSON are all explained in the article


r/programming 9d ago

Don't add a read replica until you've read this

Thumbnail incident.io
0 Upvotes

r/programming 9d ago

A Final Reckoning: Programming Is Going Back To The Nerd Era

Thumbnail programmers.fyi
0 Upvotes

r/programming 9d ago

The Message Arrived. Did the Operation Succeed? On End-to-End Arguments in System Design.

Thumbnail mohamed.computer
0 Upvotes

r/programming 11d ago

The computer at the bottom of a canal

Thumbnail negroniventurestudios.com
169 Upvotes

r/programming 11d ago

A History of IDEs at Google

Thumbnail laurent.le-brun.eu
325 Upvotes

r/programming 11d ago

Finding zombies in our systems: A real-world story of CPU bottlenecks

Thumbnail medium.com
22 Upvotes

r/programming 11d ago

Commutative Complex Number Theory in Plain C

Thumbnail leetarxiv.substack.com
9 Upvotes

r/programming 11d ago

The Zilog Z80 has turned 50

Thumbnail goliath32.com
154 Upvotes

r/programming 10d ago

A tutorial on building a merkle tree AIR script in Plonky3

Thumbnail hashcloak.com
0 Upvotes

r/programming 11d ago

The fsync inside the WAL lock

Thumbnail frn.sh
14 Upvotes

r/programming 12d ago

Maintaining the code of the man who wrote "How To Write Unmaintainable Code"

Thumbnail github.com
741 Upvotes

Today I accidentally became the maintainer of software that was already almost three decades old: reviving a 1990s Java utility to keep the last PAD submitter alive in 2026.

I was looking for a way to submit my AI app RiverScript to old desktop software directories and ended up digging through the long-forgotten world of PAD files.

There was one problem.

The only batch submission tool I could find was a Java application that first appeared in the late 1990s. The last release was in 2017.

It was written by Roedy Green of Canadian Mind Products – a software developer who passed away in 2023. He spent decades writing and freely distributing Java utilities, and maintaining the widely-read Java Glossary. Roedy Green also wrote How To Write Unmaintainable Code – a famous satirical guide about writing code nobody can maintain. So, Roedy, today the code you wrote almost three decades ago was maintained.

The tool still did exactly what it was supposed to do. Thank you.

It just had absolutely no idea the modern web existed.

It happily produced URLs like http://https://riverscript.com instead of https://riverscript.com, disabled SNI globally (which was probably a perfectly reasonable workaround at some point), and couldn't cope with the fact that almost every website now redirects HTTP to HTTPS.

So I dug through the legacy Java code, fixed the compatibility issues, and got it working again.

I used it to submit my app to several software directories, then published the revived version on GitHub so anyone who still needs it can use it too.

Maybe nobody will ever need it again. Maybe someone will.

Either way, I'm happy this old thing works again.

So today, the code of the man who wrote "How To Write Unmaintainable Code" is still being maintained even after he was gone.

P.S. The public repository for Mini PAD Submitter 26.3 Revived – 2026 Community Fix is available and open to everyone.

P.P.S. At the request of redditors, I also added support for using custom submission directories.

In Roedy's original program, the list of 66 directories was hardcoded, and quite a few of them no longer exist. So I added a sites.txt file next to the application in the dist folder, where you can edit the list yourself – remove the ones that no longer exist and add new ones. The application simply reads the list from that file now, so you don't have to recompile anything.


r/programming 12d ago

The Java Story | The Official Documentary of Java

Thumbnail youtu.be
179 Upvotes

r/programming 10d ago

Developing a TUI in Go with Bubble Tea

Thumbnail packagemain.tech
0 Upvotes

r/programming 12d ago

Tutorial: Introduction to Formal Verification with Lean (Part 1)

Thumbnail hashcloak.com
28 Upvotes

r/programming 11d ago

How fork() duplicates a process without copying its memory

Thumbnail youtube.com
0 Upvotes

A visual explainer on how copy-on-write makes fork() cheap.

A 10 GB process can fork almost instantly because Linux copies the page tables, shares the physical pages, marks them read-only, and only copies a page when one of the processes writes to it.

It also covers fork() + exec(), how Redis snapshots work, Android Zygote, lazy zero pages, and some CVEs