70
votes
51answers
4k views
Is a debugger the mother of all evil?
Some say that a debugger is the mother of all evil. What do you think of this approach?
I have a friend at work, a colleague, who's completely against using a debugger whatsoever.
I asked him: So, …
44
votes
11answers
2k views
Visual Studio debugger tips & tricks for .NET
I've been working for years with VS's debugger, but every now and then I come across a feature I have never noticed before, and think "Damn! How could I have missed that? It's so useful!"
…
37
votes
69answers
8k views
What’s the toughest bug you ever found and fixed?
What made it hard to find? How did you track it down?
Not close enough to close but see also
http://stackoverflow.com/questions/175854/what-is-the-funniest-bug-youve-ever-experienced
30
votes
20answers
1k views
Why is debugging better in an IDE?
I've been a software developer for over twenty years, programming in C, Perl, SQL, Java, PHP, JavaScript, and recently Python. I've never had a problem I could not debug using some careful thought, …
28
votes
35answers
2k views
Debugging techniques
Debugging is the most time consuming activity of programming. So using appropriate tools and techniques is paramount to efficiency and productivity.
What are your favorite debugging techniques, and …
28
votes
24answers
2k views
How do you debug PHP scripts?
How do you debug your PHP script?
I am aware of basic debugging such as using the Error Reporting. The breakpoint debugging in PHPEclipse is also quite useful. Any other good/better techniques out …
22
votes
15answers
499 views
Are there any Debugging Patterns?
Hi,
I know there are many popular and useful Design Patters.
Are there something like them for debugging scenarios? Maybe not patterns but methodologies which are categorized and that can be used …
21
votes
10answers
8k views
Is there a good Valgrind substitute for Windows?
I was looking into Valgrind to help improve my C coding/debugging when I discovered it is only for Linux - I have no other need or interest in moving my OS to Linux so I was wondering if there is a …
19
votes
22answers
803 views
“Works on my machine” - How to fix non-reproducible bugs?
Very occasionally, despite all testing efforts, I get hit with a bug report from a customer that I simply can't reproduce in the office.
(Apologies to Jeff for the 'borrowing' of the badge)
I have …
19
votes
4answers
1k views
How does a debugger work?
I keep wondering how does a debugger work? Particulary the one that can be 'attached' to already running executable. I understand that compiler translates code to machine language, but then how does …
17
votes
3answers
2k views
How do I print the elements of a C++ vector in GDB?
I want to examine the contents of a std::vector in GDB, how do I do it? Let's say it's a std::vector<int> for the sake of simplicity.
17
votes
20answers
2k views
Program only crashes as release build — how to debug?
I've got a "Schroedinger's Cat" type of problem here -- my program (actually the test suite for my program, but a program nonetheless) is crashing, but only when built in release mode, and only when …
16
votes
9answers
573 views
How do I force a program to appear to run out of memory?
I have a C/C++ program that might be hanging when it runs out of memory. We discovered this by running many copies at the same time. I want to debug the program without completely destroying …
16
votes
18answers
534 views
How do you approach intermittent bugs?
Scenario
You've got several bug reports all showing the same problem. They're all cryptic with similar tales of how the problem occurred. You follow the steps but it doesn't reliably reproduce the …
16
votes
6answers
1k views
Starting to learn Windbg
After being troubled by an issue that I simply did not have the knowledge to debug, I've just decided that I have to learn how to use Windbg. My only problem: I have no clue where to start :-( I'm not …
