Debugging is a methodical process of finding and reducing the number of bugs, or defects, in a computer program.
0
votes
1answer
10 views
log on computer of application android application running on tablet
I have installed some android application on google nexus 7 ( tablet) , I want see the log of those applications.
This applications are not created by me, but yet i want to see where the ...
0
votes
2answers
589 views
How do I add an arbitrary namespace to an XslCompiledTransform at run-time?
I'm attempting to perform a very simply transform of Timed Text Markup Language (TTML) documents. Here's a minimalist example of a TTML file:
<?xml version="1.0" encoding="UTF-8"?>
<tt ...
0
votes
0answers
10 views
How to debug in android JNI
I'm driven crazy by android JNI.
The main reason is I don't know how to debug in it.
I can only log to logcat in java by using Log.d or so. However when I followed the instructions on logging in c ...
0
votes
0answers
11 views
How do I prevent the Intellij python debugger from stepping into builtin functions?
I am using IntelliJ professional using the python plugin and when debugging I often find myself stepping into the python library code itself when trying to "step into" a method. For instance:
...
0
votes
1answer
35 views
No class method for selector … even though Xcode recognizes the method
I have 3 files: main.m, CGOAuth.h, CGOAuth.m (taken from https://github.com/guicocoa/cocoa-oauth)
In main.m I call (in the main method):
[GCOAuth URLRequestForPath:@"websites"
HTTPMethod:@"GET" ...
3
votes
5answers
104 views
Signaling or catching 'nan' as they occur in computations in numerical code base in c++
We have numerical code written in C++. Rarely but under certain specific inputs, some of the computations result in an 'nan' value.
Is there a standard or recommended method by which we can ...
0
votes
1answer
47 views
producing a variable for input into an RSS feed
this may be a very simple debugging question (I haven't been coding lone) I have a looping code that parses a scraped xml, this parsing happens on a 5 minute loop but doesn't return duplicates from ...
4
votes
8answers
3k views
iPhone — is it possible to inspect the frame of a UIView in the Xcode debugger?
When the debugger is stopped at a breakpoint, I can't find the frame of any of my UIViews in there.
Is it possible to do this?
EDIT: starting a bounty due to the lack of response. Just to be clear, ...
5
votes
3answers
484 views
Eclipse debugger (PHP) - how to see super globals and class properties?
Is it possible to see PHP super globals like $_SESSION and $_POST in the debugger variables perspective?
Also, in the following example...
class myclass {
public myvar = 'value';
...
}
... ...
31
votes
5answers
28k views
How to set breakpoint in inline Javascript in Google Chrome browser for linux?
When I open Developer Tools in Google Chrome, I see all kinds of features like Profiles, Timelines, and Audits. but basic functionality like being able to set breakpoint both in js files and within ...
0
votes
1answer
34 views
How can I get more information from clang substitution-failure errors?
I have the following std::begin wrappers around Eigen3 matrices:
namespace std {
template<class T, int nd> auto begin(Eigen::Matrix<T,nd,1>& v)
-> decltype(v.data()) { return ...
34
votes
6answers
20k views
Sniffer for localhost (Windows OS) [closed]
I am looking for a sniffer that can work with the loopback address in Windows.
So far, I found Microsoft Network Monitor which is a nice tool, but for localhost it's useless because on Windows, ...
0
votes
0answers
9 views
How do I interpret the corrupted file information produced by SFC?
Running a scan with the SFC (system file checker) produces entries in the CBS.log file.
sfc /scannow
Microsoft recommends running the findstr (find string) command with the c switch which searches ...
-4
votes
0answers
179 views
3D thinning algorithm in MATLAB: understanding conditions 1 and 2 [closed]
I'm trying to implement an image thinning/skeletonization algorithm which is designed for 3D data. The algorithm is published by Kong et al..
To my knowledge, this is the first implementation which is ...
0
votes
3answers
49 views
How to automatically stop any script and redirect to an error page if an error/warning/notice is uncaught
Sometimes an unexpected error is hard to debug, since the error report is printed inside strange HTML elements, like an hidden div or a option element.
Is there not a way to automatically store error ...