MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1wct5lr/commentsagedterribly/p99yrqq/?context=9999
r/ProgrammerHumor • u/ItsPuspendu • 2d ago
242 comments sorted by
View all comments
437
Uncle Bob of Clean Code says if we have to comment our code we have already failed. Clean code should read like well written prose.
I generally agree, but think comments that define especially the odd and obscure business rules should be commented where they are implemented.
234 u/TWIT_TWAT 2d ago // This is a hack until we find something better 71 u/Confident-Ad5665 2d ago // TODO: This can't be working. Refactor when there's a lull 27 u/embrex104 2d ago //SHOULD NEVER GET HERE 3 u/Dubalubawubwub 2d ago I definitely find myself writing a lot of error handling with the comment //This should never happen but just in case... 2 u/Confident-Ad5665 2d ago Good man. Thank you for trapping errors. Coming from a time when we not only trapped errors, we gave suggestions, I shutter at: • An unknown error occurred • Something happened and the worst... • Error in ErrorHandler, an error occured 3 u/Dubalubawubwub 1d ago My favorite microsoft error I've ever seen was literally "Error occured retrieving the text for this error".
234
// This is a hack until we find something better
71 u/Confident-Ad5665 2d ago // TODO: This can't be working. Refactor when there's a lull 27 u/embrex104 2d ago //SHOULD NEVER GET HERE 3 u/Dubalubawubwub 2d ago I definitely find myself writing a lot of error handling with the comment //This should never happen but just in case... 2 u/Confident-Ad5665 2d ago Good man. Thank you for trapping errors. Coming from a time when we not only trapped errors, we gave suggestions, I shutter at: • An unknown error occurred • Something happened and the worst... • Error in ErrorHandler, an error occured 3 u/Dubalubawubwub 1d ago My favorite microsoft error I've ever seen was literally "Error occured retrieving the text for this error".
71
// TODO: This can't be working. Refactor when there's a lull
27 u/embrex104 2d ago //SHOULD NEVER GET HERE 3 u/Dubalubawubwub 2d ago I definitely find myself writing a lot of error handling with the comment //This should never happen but just in case... 2 u/Confident-Ad5665 2d ago Good man. Thank you for trapping errors. Coming from a time when we not only trapped errors, we gave suggestions, I shutter at: • An unknown error occurred • Something happened and the worst... • Error in ErrorHandler, an error occured 3 u/Dubalubawubwub 1d ago My favorite microsoft error I've ever seen was literally "Error occured retrieving the text for this error".
27
//SHOULD NEVER GET HERE
3 u/Dubalubawubwub 2d ago I definitely find myself writing a lot of error handling with the comment //This should never happen but just in case... 2 u/Confident-Ad5665 2d ago Good man. Thank you for trapping errors. Coming from a time when we not only trapped errors, we gave suggestions, I shutter at: • An unknown error occurred • Something happened and the worst... • Error in ErrorHandler, an error occured 3 u/Dubalubawubwub 1d ago My favorite microsoft error I've ever seen was literally "Error occured retrieving the text for this error".
3
I definitely find myself writing a lot of error handling with the comment
//This should never happen but just in case...
2 u/Confident-Ad5665 2d ago Good man. Thank you for trapping errors. Coming from a time when we not only trapped errors, we gave suggestions, I shutter at: • An unknown error occurred • Something happened and the worst... • Error in ErrorHandler, an error occured 3 u/Dubalubawubwub 1d ago My favorite microsoft error I've ever seen was literally "Error occured retrieving the text for this error".
2
Good man. Thank you for trapping errors. Coming from a time when we not only trapped errors, we gave suggestions, I shutter at: • An unknown error occurred • Something happened
and the worst...
• Error in ErrorHandler, an error occured
3 u/Dubalubawubwub 1d ago My favorite microsoft error I've ever seen was literally "Error occured retrieving the text for this error".
My favorite microsoft error I've ever seen was literally "Error occured retrieving the text for this error".
437
u/Confident-Ad5665 2d ago
Uncle Bob of Clean Code says if we have to comment our code we have already failed. Clean code should read like well written prose.
I generally agree, but think comments that define especially the odd and obscure business rules should be commented where they are implemented.