|
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):
If you do have to debug an ....
How much time you have to spend debugging depends.
It's relatively rare now to have to step through code in order to see why a test is failing .
Failing tests to be debugging time, which I don't really.
|
|
I'd like to know how debugging is achieved in a lazy functional language.
Can you use breakpoints, print statements and traditional techniques? Is this even a good idea?
It is my understanding that pure functional programming does not allow side-effects...
Started by CaptainCasey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I've never delved into anything terribly complicated in Haskell, but the fact that side... .
Haskell Debugging Technologies .
Then again, debugging != testing .
programming, but it's a good habit no matter what language you're using.
|
|
Hi there,
I have to program a C/C++ application. I have windows and linux (ubuntu 9.04) in my machine, and can program in both of them (via gcc/code blocks/vim,etc). The problem is that the executable is going to be run in a Unix (not linux) machine (...
Started by Tom on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
As for portability: I highly recommend checking code ....
For debugging, if you need a separate shell, just set another instance of SSH going and perform debugging from another process.
Configuration to get it to accept remote connections).
|
Ask your Facebook Friends
|
Is debugging JavaScript as easy as debugging a C++/C#/Java application (given the best IDE available), or are the current tools much more limited and less user friendly, making debugging a headache?
Started by Dimitri C. on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I think the tools available to them....
Is it as "easy" as Java, C#, etc.
programming and debugging JavaScript is the most terrible thing in the world, eventhough they have all Visual Studio, it makes it pretty easy to debug javascript.
|
|
I'm using Microsoft Office 2003 and creating a bunch of template documents to standardize some tasks. I asked this on Superuser.com and got no response so I'm thinking it's too program-y and hoping I'll have better luck here.
I need to automate a work...
Started by Chris Nelson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This sounds stupid but it happended to me, too, in Word 2003 under the following circumstances:
1) create a template containing macro, everything fine
2) create a new document file based on the macro... .
Check if the macro is still contained in your template .
|
|
Possible Duplicate:
Common reasons for bugs in release version not present in debug mode
Sometimes I encouter such strange situations that the program run incorrectly while running normally and it will pop-up the termination dialog,but correctly while...
Started by jcyang on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
AlsoWhen using a....
As other people have said, debug builds insert NOOPs.
; }
The program would terminate abnormally whether compile with Debug or Release,because by specifying the PAGE if your program takes longer to execute.
|
|
How do I debug .NET code written within a script task in a SSIS package? The development environment allows placing a breakpoint however does not take me to the code like it would in regular .NET programming while debugging.
Also, I am at a loss to understand...
Started by Gnana on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You may find it useful to consult the reference Debugging How-To-Topics(SSIS)
If you have to debug the specific functionality....
Debugging SSIS packages within the BIDS environment is not the same ball game as working with Visual Studio.
|
|
I am looking for suggestions regarding a job description for a Java (server-side) developer. The position requires primarily maintenance programming on a relatively stable product, but also requires extensive debugging capability. We've had difficulty...
Started by jsight on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Just be up-front about exactly what you're looking.
This tells code in order to debug specific issues.
programming on a relatively stable product, but also requires extensive debugging capability.
|
|
In most programming languages I've used, when debugging, when I hit a breakpoint, I have the ability to execute arbitrary code (whatever I type into the console after the breakpoint has been hit).
How do I do this in Eclipse? The debugging mode has, by...
Started by Aaron F. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the Display view to execute abritary code, access it ... .
Result=false, exception.printStackTrace() etc.).
Note that you can also execute expressions in the Watch view (e.g .
Window->Show View->Interactive Console.
Eclipse has it indeed.
|
|
Are there any other ways for debugging Perl apart from Data::Dumper and perl -d ?
Started by joe on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Available tools for debugging
There are several tools available in Perl for debugging and similar statements in order to see what's going on in sections of a program that aren't doing what they thought that Data::Dumper and perl -....
|