this post was submitted on 28 Mar 2025
231 points (98.3% liked)

Programmer Humor

29887 readers
181 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] T156@lemmy.world 11 points 10 months ago (1 children)

Except that the numbers are also prone to change, like if it's been stolen. They're technically not supposed to be an identification code anyhow.

[โ€“] Tempy@programming.dev 3 points 10 months ago* (last edited 10 months ago)

Right, but you can have entries in a block chain that indicate previous entries are no longer valid, or have modifications. Calculating a final state by walking through all the blocks in the chain. ( A bit like a CQRS based system can have a particular state at a point in time by replaying all events up to that point)

Doing it in such a way also makes auditing what's happened much easier since changes are inherently reflected in the chain. You want to know when (or by who if you keep that information) a record changes, it's right their in the chain.