Category "debugging"

[django]when debug=false,MEDIA_URL returns not found

when DEBUG=TRUE,media_url is working,but DEBUG = False ,returns not working. This is my setting file. setting.py DEBUG = False ... MEDIA_URL = "/pics/" MEDIA_

Is there anyway to debug a windows kernel with secure boot on?

Is there anyway that i can debug a windows kernel that has secure boot on? when i try to turn on debug mode when secure boot on windows says that i need to turn

How do I fix "Could not connect to remote process" while trying to debug the application?

I am making a android studio project and I try to debug my application. Running the application works fine, but when I try to debug it I get this error: Coul

Starting the debuggee failed: No executable specified, use `target exec'

Code: #include <stdio.h> #include <stdlib.h> #include <conio.h> // to generate numbers void gen_data(int b[], int n) { int i; for (i =

Eclipse debugger and remote debugger not working

I m using Eclipse Luna Version: Luna Release (4.4.0) Build id: 20140612-0600-32 BIT I have some breakpoints and remote debugger on which use to work as expected

Unable to debug a Spring Boot App. The breakpoints always escape

Here's my Spring Boot config @SpringBootApplication public class ServicesApplication { public static void main(String[] args) { SpringApplication.

Could not start debugger. Could not run 'lldb-mi'. Make sure that the path name is specified correctly

I'm facing this error when launching the C++ debug on KDevelop. Where does this error originate? Any idea would be appreciated. thanks.

VScode compile C++ on windows the exe not found

I want to ask how to debug a simple hello world output from a C++ file, on the launch file I have to put the executable but I have only created a C++ file, how

ADB equivalent for iOS device

I was looking some instrument like Android ADB in order to debug iOS devices. I've found iOS instrument, a tool of the XCode that is able to debug app on mobile

Can you debug VBScript in Visual Studio?

I was wondering if Visual Studio can run and debug VBScript files? Thank you for your time.

Error: You are debugging a Release build of X.dll

Background I have an ASP.NET MVC application project, along with various other projects within a Visual Studio solution. The different projects use various vers

Increment variable value by 1 (shell programming)

I can't seem to be able to increase the variable value by 1. I have looked at tutorialspoint's Unix / Linux Shell Programming tutorial but it only shows how to

How to change IPython %pdb and %debug debugger?

By default, ipython uses ipdb as debugger with %pdb or %debug magics. However, I much prefer pdb++... Is there a way of changing the debugger called with these

Changing stoploss in metatrader5 with python using Metatrader5 library and nothing happens

I have this code for changing stoploss on opened order/orders in metatrader 5. When I run this code nothing happens even when my compiler print that, nothing is

How can I check if a Flutter application is running in debug?

I'm looking for a way to execute code in Flutter when the app is in Debug mode. Is that possible in Flutter? I can't seem to find it anywhere in the documentati

Why are my breakpoints not hit in CLion?

I'm trying to debug an executable which has been created with CMake configuration SET(CMAKE_BUILD_TYPE Debug) However, CLion does not hit any breakpoints. Wh

Why does the node inspector not start when I am using nodemon and ts-node?

I have a simple node server written in typescript. My package.json is configured as: "scripts": { "build": "tsc", "dev": "nodemon --watch src/**/* -e ts,js

Find if the array contain a 2 next to a 2

I am stuck on this problem Given an array of ints, return True if the array contains a 2 next to a 2 somewhere. has22([1, 2, 2]) → True has22([1, 2,

Run VSCode JS debug launch configuration from integrated terminal

Currently when there's a need to debug a JS one could create a debug configuration, go to debug tab and hit play on the chose launch configuration. Is it possib

Debugging Numpy VisibleDeprecationWarning (ndarray from ragged nested sequences)

Since NumPy version 19.0, one must specify dtype=object when creating an array from "ragged" sequences. I'm faced with a large number of array calls from my own