this post was submitted on 02 Nov 2025
174 points (98.9% liked)

Programmer Humor

39058 readers
475 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 6 years ago
MODERATORS
 

Increasingly so, the more experienced I get...

you are viewing a single comment's thread
view the rest of the comments
[–] Ephera@lemmy.ml 9 points 1 week ago (2 children)

Currently implementing error handling for a library I'm building and the process is basically to just throw all of the information I can find into there. It makes the error handling code quite verbose, but there's no easy way for me to know whether the underlying errors expose that information already, so this is actually easier to deal with. 🫠

[–] Dojan@pawb.social 4 points 1 week ago

I appreciate verbosity. It’s much nicer than the opposite.

[–] Ithral@lemmy.blahaj.zone 3 points 1 week ago

Thank you, I hate it when libraries fail and don't give me good info, like failed to load doesn't help, failed to load because of syntax error on line 45 of input is soooo nice when that happens.