Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
35 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
0 votes
1 answer
46 views

What we are already doing is that JVM can respawn itself from the last own shutdown hook running. It strongly depends on proper closing of all resources and ports. And here comes the problem - all ...
dmatej's user avatar
  • 1,588
1 vote
2 answers
75 views

I'm making a simple 'To Do List' app In Flutter, When I press the 'floatingActionButton' it's supposed to to show a pop-up where the user can input a new task, But nothing is displayed when the button ...
buzzbuzz20xx's user avatar
-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
33 views

Power Automate (Cloud) lately has been having trouble properly displaying error messages. Instead of the errors being parsed, a very long piece of JSON is displayed (sometimes over 25k chars). It's so ...
Bort's user avatar
  • 601
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
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
-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
0 votes
0 answers
121 views

Depreciation_DM = model.constant("Depreciation_DM") Depreciation_DM.equation = 0.0708 DMPIncRate = model.constant("DMPIncRate") DMPIncRate.equation = 0.0284 DMPInc = model.flow(&...
Teguh Juang Sinaga's user avatar
0 votes
0 answers
44 views

When I try to check any UIImage, it doesn't show. I can see MTLTexture, but not UIImage. I can see images if I go to the older branch, but not the current branch that I am working on. How to fix this? ...
sabertooth's user avatar
2 votes
1 answer
466 views

I'm working on building up my extensions utilizing the new extension member syntax so I can add static class methods and extension properties for my commonly used operations. I have defined a few ...
Jeff Mercado's user avatar
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
1 vote
3 answers
142 views

#include <stdio.h> int main(void) { printf("output test"); int y = 8; printf("this is a test %d", y); return 0; } Correctly output to Debug Console when ...
martingale's user avatar
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
-3 votes
0 answers
68 views

I am developing a relatively large application using Qt, SystemC, and QCustomPlot libraries. When debugging, it takes a long time for those libraries to load. How can I combine (at CMake level) my own ...
katang's user avatar
  • 2,826
1 vote
0 answers
119 views

I have an Angular web app, on Visual Studio 2022; its client and server parts are inside a single solution ("ClientApp" folder for client-side Typescript sources and "Controllers" ...
Sisma Sisma's user avatar
1 vote
1 answer
73 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
1715 votes
42 answers
561k views

How do I debug a Node.js server application? Right now I'm mostly using alert debugging with print statements like this: sys.puts(sys.inspect(someVariable)); There must be a better way to debug. I ...
Fabian Jakobs's user avatar
1292 votes
39 answers
286k views

What is this? This is a number of answers about warnings, errors, and notices you might encounter while programming PHP and have no clue how to fix them. This is also a Community Wiki, so everyone is ...
1534 votes
32 answers
1.4m views

So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
fuentesjr's user avatar
  • 52.5k
628 votes
72 answers
379k views

When debugging in Visual Studio, sometimes I add a breakpoint but it's hollow and VS says "The breakpoint will not currently be hit. The source code is different from the original version." Obviously ...
-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
0 votes
1 answer
98 views

I'm currently working on a thesis project using jupyter notebook on a remote cluster. After running my code I'm not able to save anything anymore and I keep getting the following error:[Errno 28] No ...
Nicolò Fiaba'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
888 votes
23 answers
565k views

I am developing an application, and everytime I run it, I get the message: Unfortunately, MyApp has stopped. What can I do to solve this? About this question - obviously inspired by What is a stack ...
nhaarman's user avatar
  • 101k

1
2 3 4 5
1055