this post was submitted on 03 Oct 2025
500 points (98.8% liked)

Programmer Humor

26747 readers
768 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
[–] RustyNova@lemmy.world 2 points 2 days ago (1 children)

I am guilty of this but for a different reason: setting up debugging for clis in rust is hard

I love the debugger. I use it all the time I can. But when debugging cli it's a pain as you need to go back in the launch.json file, remake the argument list, then come back to run debug, find out why tf it doesn't find cargo when it's the PATH... again, then actually debug.

[–] victorz@lemmy.world 1 points 1 day ago

I don't feel at all guilty of doing this. Whatever works. Usually nothing is so complicated that I need to debug properly, instead of just inspecting some value along the way.

In fact, if it gets the bug resolved, it is—effectively—debugging.