Debugging is a methodical process of finding and reducing the number of bugs, or defects, in a computer program.
0
votes
0answers
7 views
how to make an android phone “as good as new” for practising android programming
While working on the emulator, if I want a new device, all I have to do is delete the old device and create a new one
How would I go about doing the same if I am working on a real android phone? Is ...
0
votes
0answers
8 views
Strange message coming from Chrome debugger
I am debugging some jQuery code using Chrome and every few iterations of testing, this message appears in the console:
[Mon Aug 12 2013 5:32:45 PM] Solid Savings
I have googled this message and ...
1
vote
1answer
17 views
Terminate DebugActiveProcess or other debugging routines
I kinda want to leave this more as a thought experiment (I asked about it in chat but was directed here). But I can provide code if it will be helpful. Here is the scenario!
Process 1 is running and ...
2
votes
0answers
63 views
Loading time Delphi XE2 application
I have a strange behavior with the loading time of an application written in Dephi XE2. I compiled the same source in debug mode and release mode. Both .exe reside on the same machine, same hard disk, ...
0
votes
2answers
21 views
jQuery/javascript re-structuring issues
Issue:
I just started using javascript/jQuery with little experience. I had working code, but after a little bit of restructuring, everything died.
Original Code:
// Floating NavBar - Side
var ...
2
votes
1answer
19 views
How can I debug a corrupt docx file?
I have an issue where .doc and .pdf files are coming out OK but a .docx file is coming out corrupt.
In order to solve that I am trying to debug why the .docx is corrupt.
I learned that the docx ...
0
votes
0answers
23 views
Webservice is working in debug mode but not in release mode
I'm using a web service which works OK in debug mode. When changing to release mode, I get the following exception: There is an error in XML document (2, 567)
When looking into the inner exception, ...
0
votes
0answers
12 views
Unable to start debugging on the web server: Error 500.24
I have a VS2005, .NET 2.0 legacy app that I am moving to a new machine (Win 7 Pro, IIS7.5) and it will not run in debug though VS. I just get a huge pop up XML message with the error in the title.
I ...
0
votes
0answers
7 views
Visual Studio 2012 Excel Add in Uninstall To Debug
I have a Visual Studio 2012 Excel Add in project written in C#. I am have a problem debugging changes.
It seems that every change I make, I need to go to the control panel, find the excel project ...
0
votes
0answers
5 views
Android hybrid App - Javascript debugging with jsHybugger & Eclipse - PhoneGap project
Trying to debug my app with jsHybugger.
I did every step as in this video http://www.youtube.com/watch?v=P5NSlN8eVyk
Firstly I installed chromsdktools...
When I run my app in debug mode, its runs on ...
0
votes
2answers
31 views
Error:numpy.narray object not callable
I am trying to convert Matlab code to Python but it gives an error when I convert the following line:
Matlab Code
md(1,index) = (-1)^bits(m);
Python equivalent
md[index]=(-1)**bits(m)
Error
...
4
votes
1answer
73 views
How to locate bug only by a memory address?
I got a segment error in a object like this:
http_client_reset(struct http_client *client) {
if (client->last_req) {
/* @client should never be NULL, but weather
a valid ...
-3
votes
0answers
17 views
What take longest time
I have node.js app and I need to figure out what takes longest time to execute.
Ideal would be any app that will tell what lines of code took longest time.
Please, can You recommend me best node.js ...
0
votes
1answer
44 views
android program hangs before onCreate is called (beginner)
I needed some sample code to test out the AudioRecord class and I came across this website
LINK TO THE SOURCE CODE
However the program doesn't run, and hangs after a while. When the program starts it ...
0
votes
2answers
34 views
Eclipse Plugin: Highlight Code Line (textmarker while debugging)
Please do not confuse this with 'selecting code' like selecting code with a mouse.
When my debug device hits a break point I want to highlight the specific line of code.
I am using the CDT Plugin.
I ...