this post was submitted on 06 Apr 2026
810 points (99.4% liked)

Programmer Humor

31291 readers
2193 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
[โ€“] hemko@lemmy.dbzer0.com 66 points 1 month ago (1 children)

I love this chart, have used it more than once ๐Ÿ˜„

But something it doesn't factor in is when you want to automate something to remove the human error on a repeated task. Having to correct a report you already sent to the customer is not fun

[โ€“] luciferofastora@feddit.org 5 points 4 weeks ago

Human error is my prime motivator pushing for automation, mostly because I'm the one getting fucked by it more often than not. I'm the guy processing data people enter or produce into automatic reports.

Every type of error I run into takes time to investigate, figure out how common it is and decide how to handle it. More often than not, I need to specifically document that handling too, because someone is gonna come asking for it.

"Your report says we had 17 invoices for Dec 2020, but we've booked 18" Yeah, because someone entered the booking month as 20212 or 200212 instead of 202012 and there's no reasonable way to parse that.
Nevermind the ones where the booking month is just "02". Like hell am I gonna write logic to guess the year if it's ambiguous.

Please just implement an automatic process to sync booking and invoicing systems. I don't have any magic tools to turn your slag into gold.