Questions tagged as 'debug'

1
answer

How to filter logcat by command line?

I was reading the android documentation and saw that it is possible monitor logcat by command line, without necessarily having the IDE open. I installed a minimalist version of ADB (only what is needed for it to work on the command line) an...
asked by 12.02.2017 / 00:12
3
answers

How do I debug a site on mobile devices?

I'm developing a website that, although it looks good on the desktop, is getting deformed when accessed via mobile devices. Specifically, some issues occur when using the Android default browser , others when using Chrome pro Android. I do not...
asked by 27.02.2015 / 21:08
2
answers

What is the procedure for debugging a "stack execution", Javascript or Php through the browser or IDE Aptana?

When we develop a code, it runs as a stack of instructions. Is there any way, where through the browser or an IDE, where we can follow step by step the processing of the code, and see to what extent it was executed or stopped due to some erro...
asked by 04.06.2016 / 19:04
1
answer

Is the Assembly code of a compiled program different from the one written?

I've compiled this Assembly code global _main extern _printf section .text _main: push message call _printf add esp, 4 ret message: db 'Hello, World!', 10, 0 When I went to give u dump in the assem...
asked by 28.11.2018 / 14:48
2
answers

How to debug C programs from the Command Prompt?

I need to debug an algorithm in C but the machine I'm using does not have Code :: Blocks. What is the path for me to debug in the Windows Command Prompt?     
asked by 16.02.2016 / 04:00
1
answer

How does a historical debugger work?

A historical debugger, or historical debugger , is capable of collecting key data from a debugging session, such as locals / autos (in the case of IntelliTrace ), session exceptions and events. I suppose something like this is very complex,...
asked by 14.02.2017 / 22:05
1
answer

What are symbols in the .NET Framework?

How do symbols work in the .NET Framework (and on other platforms)? How do they make it possible to remotely debug an application even without having the source code on the machine? What is its relation to .pdb ?     
asked by 15.05.2017 / 15:14
1
answer

Back debug line

In the old Visual Basic if you were in debug step-by-step and without wanting to go beyond a line you wanted to check, there was the option to go with the cursor up the line above and press the key combination: Crtl + F9 so that deb...
asked by 22.05.2015 / 16:01
2
answers

Is there any way to debug PHP via the browser console?

Is there any way to debug PHP via the browser console? I sometimes want to debug a value on the system in production, but I do not want the user to notice it. Then I had the idea of using the browser console. You can do something like this...
asked by 06.11.2015 / 14:23
1
answer

IDE / Text editors for Node.js [closed]

What are the best IDE options or Text Editors for NodeJS development? My need is to develop large projects with JavaScript / Node.js , here are some of the options below. If possible cite the advantages of using the indicated software. Nod...
asked by 24.08.2015 / 01:10