|
Primarily I've done basic (novice level) software development on a Windows machine, but I've always had MS Visual Studio to help me step through the process of debugging.
Now, however, it looks like I will be on Linux, so in order to get ready for the...
Started by JustADude on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Valgrind ....
Stackoverflow.com/questions/149321/what-ide-would-be-good-for-linux-kernel-driver-development http Development Toolkit - a brief step-by-step procedure for migrating Microsoft Visual Studio C/C++ (MSVC for debugging.
|
|
Considering iis 6.0 and above can't run on xp what options have i available?
Remote debugging (using a win 2k3 host) i'm aware of but i might not have the facilities available very easily
Answer Snippets (Read the full thread at stackoverflow):
For test purpose and vulnerability searching try this tool SPIKE Proxy
Using_CURRENT_USER\Software\Microsoft\Windows....
I suspect, however, that once IIS was running in the VM, you'd be able to do "remote" debugging/development OS.
|
|
Our customer has a "No unnecessary code" policy. And the people they have assigned to my project thinks this includes:
Dianostic code Cross platform compatibility code "Software" faultcodes. ("Software doesn't break therefore these are unneeded.") Class...
Started by NoMoreZealots on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If they still hold to their views.
They have unbelievable cross issue, should the customer maintain their current software policy.
Founded a company whose sole business is the USB software stack.
|
Ask your Facebook Friends
|
Is there any reason I should avoid compiling in debugging information with Javac in my Java classes for use in a production server? Are there any speed or security concerns I should be aware of?
Please note that I am referring to debugging information...
Started by James McMahon on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
90% of the world with moderate debugging....
In production, should be as close as possible to the development software, as that has been testedDepends on the excessiveness of the debugging and the performance sensitivity of your program.
|
|
What is statistical debugging? I haven't found a clear, concise explanation yet, but the term certainly sounds impressive.
Is it just a research topic, or is it being used somewhere, for actual development? In other words: Will it help me find bugs in...
Answer Snippets (Read the full thread at stackoverflow):
Since any bugs that get fixed have to pass unit and system tests more problems naturally are tested more... .
I know we already do this for our software.
Statistical debugging is just that - targeting areas based on past history of problems.
|
|
What % of programming time do you spend debugging? What do you think are acceptable percentages for certain programming mediums?
Started by Ryan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's relatively rare now to have to step through code in order to see ... .
Complexity of the software can increase debugging time, for example, if the codebase failing tests to be debugging time, which I don't really.
A solid answer.
|
|
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, and well-placed debugging print statements.
I respect...
Started by Bill Karwin on
, 19 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
An IDE helps you build better software faster in a lot of ways:
refactoring tools-compile for the purposes of adding traces (assuming you have access to the debug symbols) Change Studio offers the following....
It's not just debugging.
|
|
I've been working on a project that can't be described as 'small' anymore (40+ months), with a team that can't be defined as 'small' anymore (~30 people). We've been using Agile/Scrum (1) practices all along, and a healthy dose of TDD.
I'm not sure if...
Started by FOR on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
TypicallySince I'm fairly convinced, this question is not about whether debugging is a bad smell this is the very opposite of persuasive....
First development has resulted in less time spent debugging...and it's not something I miss.
|
|
I'm new to ASP.net but not to C#, .net or Web Development.
In PHP it was nice to be able to go right to the browser and refresh whenever I made a change. Using ASP.net with VS08 however seems a bit awkward.
Should I launch a development server and keep...
Started by Nelson LaQuet on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Depends what stage of ....
It doesn't hurt to do so, it'll always reflect the current built DLLs and works pretty well .
Once I start actively debugging to debug.
Of components from the toolbox, then I will tend to leave Debug off.
|
|
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 repeatedly for similar cases.
Any idea?
thanks.
Started by burak ozdogan on
, 16 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
I comment out half Specific bug pattern However, I....
I've got more on my web site under Software DevelopmentWhen I am just shooting in the dark debugging I take the binary search approach.
Alert debugging is always more effective.
|