Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
34 views

I have to debug a website that contains a lot of third-party JavaScript code, and I need to determine which page request sets (or in the error case, does NOT set) at specific JavaScript cookie. My ...
swobi's user avatar
  • 109
-3 votes
0 answers
44 views

I'm working on a Spring Boot application using IntelliJ IDEA. I can run the application locally with a Maven run configuration using the goal spring-boot:run, and it works as expected. However, this ...
paymer's user avatar
  • 506
-4 votes
1 answer
63 views

I'm doing a mini project for a coding bootcamp and I'm trying to toggle elements. I have a form on my page that I want to make invisible when you submit it, so that the rest of the page shows. It isn'...
AirenMarie's user avatar
0 votes
1 answer
45 views

Is there a way I can set the dotnet version to use for the debugger. I am using the one (debugger) that comes with C# Dev Kit. I currently have dotnet 8 and dotnet 2.2 installed but the debugger ...
Ndifreke James Okpo's user avatar
-3 votes
0 answers
44 views

I am using the new AttributedString in Swift 26 with a TextEditor in dark mode to track selections for a qualitative data analysis tool. ISSUE: In dark mode, the highlight colour inherited from system ...
Bhorda's user avatar
  • 15
0 votes
0 answers
25 views

OS: Ubuntu 24.04.2 & Windows 10 CubeProgrammer Version: 2.20.0 Board: STM32F407G-DISC1 Firmware Version: V15J63M63 I am having intermittent connectivity issues with my discovery board and the ...
MPsyko's user avatar
  • 1
0 votes
0 answers
32 views

I have a bug raised in stakater/reloader Github page. In a nutshell, I have reloader running in namespace reloader and application with secrets running in the namespace test, the deployment gets ...
Dmytro Chasovskyi's user avatar
3 votes
1 answer
128 views

I'm working with COM objects, which means I need to debug SAFEARRAY objects. It looks as follows in the watch-window: receivedData 0x007cc980 safearray of UI1, [rank]=1 _variant_t safearray ...
Dominique's user avatar
  • 17.6k
-2 votes
1 answer
175 views

I’m trying to implement an in-place Quick Sort in Python. I have two slightly different versions of my partitioning logic, and I’m confused because both seem correct on small arrays, but the second ...
Lisguen's user avatar
  • 11
3 votes
2 answers
236 views

I’m building a simulation in BPTK-Py and need a power with a variable exponent inside a node equation: Resale_Value_DM1.equation = 1 - Depreciation_DM Resale_Value_DM2.equation = Resale_Value_DM1 ** ...
Teguh Juang Sinaga's user avatar
0 votes
0 answers
42 views

I have previously used lldb to print structures like NSRect or NSSize of 3rd party processes without issues. But I am struggling in modern versions of Xcode to inspect them. Namely since the ...
Marek H's user avatar
  • 5,652
2 votes
2 answers
183 views

I want to add a breakpoint in the line system("/path/to/world") in VS Code for debugging the /path/to/world program with gdb. Here is the source code of /path/to/hello.c: int main(int argc, ...
stackbiz's user avatar
  • 1,916
2 votes
1 answer
85 views

I wrote a simple example program as below and tried to debug using gdb. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> int function1(void) { ...
Cprogrammer's user avatar
0 votes
0 answers
27 views

I am following the instructions described in https://www.erlang.org/doc/apps/debugger/debugger_chapter to start the debugger. However, after debugger:start()., I only get the message Command is taking ...
GreenOwl's user avatar
0 votes
1 answer
119 views

I am building a cpp application using as IDE VSCode with extensions CMakeTools and CppTools. To configure the project I use cmake presets. By default, all presets set as build directory {sourceRootDir}...
Matteo Albi's user avatar
0 votes
0 answers
63 views

At the moment, I am trying to get a virtual phone (Pixel 7) running in Android Studio. I already tried the following things, to optimize/ enable the bootup: deactivated VBS activated ...
SarinisPin's user avatar
0 votes
1 answer
28 views

This issue occurs when trying to launch the debugger through the installed React Native Tools extension from Microsoft in VS code after following the instructions on creating a launch.json file in the ...
random-user-0901's user avatar
0 votes
1 answer
37 views

In Xcode, I set a breakpoint to a function which is a part of an iOS framework and the disassembly view showed up. All function calls except one (0x1bb286280) were symbolicated (i.e. Xcode showed the ...
martin's user avatar
  • 125
1 vote
1 answer
69 views

When I debug the springboot project in idea, the exception occurs: java.io.FileNotFoundException: \C:\Program Files\Java\jdk1.8.0_191\jre\lib\sunrsasign.jar, But in fact, the JDK 1.8 used in the ...
user2454545's user avatar
1 vote
2 answers
88 views

When I start the app with mvn spring-boot:run, my breakpoints don’t hit. I’m trying to debug a simple REST endpoint annotated with @GetMapping. Minimal Reproducible Example: @RestController @...
Dayana Escobar's user avatar
1 vote
0 answers
55 views

I am using Eclipse 2025-09. When attaching the remote debugger to Module B, my entire JBoss server gets suspended, even though I have set all breakpoint settings to suspend only the thread. I work on ...
aakarsh goel's user avatar
0 votes
0 answers
104 views

I updated my PyCharm to 2025.2.2 Comunity Edition. Since then I don't get any traceback calls while debugging. So if the program terminates due to an error, the only output is following message: ...
Stefan Bongers's user avatar
0 votes
0 answers
103 views

Basically the title. Using PyCharm 2023.3.3 I'm not able to see the data of polars DataFrames. As an example, I've a simple DataFrame like this: print(ids_df) shape: (1, 4) ┌───────────────────────────...
Nauel's user avatar
  • 522
-3 votes
1 answer
67 views

I use cupy to call cuda kernels, but I don't know how to debug cuda code, here is my wrapper file: wrapper.py import math from pathlib import Path import cupy as cp import numpy as np with open(Path(...
S200331082's user avatar
3 votes
1 answer
109 views

I have a testcase for a complicated function that for unclear reasons tends to hang on certain platforms. I would like to know which test inputs cause the hanging behaviour. I have tried to use ...
sjakobi's user avatar
  • 3,668

1
2 3 4 5
1055