Tagged Questions
30
votes
21answers
2k views
How do you tackle really bizarre errors that keep you puzzled for more than 10 hours? [closed]
You know them, those errors that make NO sense. Where it seems like a gremlin just jumped deep inside your chips and messed up something. Do you take a walk, write stuff, call an uncle? I need help!!
18
votes
5answers
765 views
Is possible to write too many asserts?
I am a big fan of writing assert checks in C++ code as a way to catch cases during development that cannot possibly happen but do happen because of logic bugs in my program. This is a good practice in ...