this post was submitted on 24 Jul 2026
466 points (99.6% liked)

Programmer Humor

32477 readers
425 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 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Buckshot@programming.dev 16 points 2 days ago (1 children)

We've all done that at some point.

That sinking feeling when your quick update doesn't return immediately.

Good to get into the habit of wrapping your queries in a begin transaction/rollback until you verify the result ๐Ÿ˜

[โ€“] bitjunkie@lemmy.world 11 points 2 days ago* (last edited 2 days ago)

I was never able to fully form the habit with transactions. The guardrails I use are writing the where clause first and keeping my query tool in read-only mode for prod connections and only disabling it once I'm sure I need to make a change.