52,745 questions
0
votes
0
answers
58
views
How do I turn the Run button into Run and Debug in VSC?
On my newest project in VSC, I have a Run button:
(with a play symbol),
but on my previous project, I had a Run and Debug button:
(with a bug symbol over the play symbol).
How do I get the Run ...
0
votes
1
answer
75
views
translation of f# expression to c# in the debugger
Ionide debugger doesn't support f# now. Such expressions should be translated to c#.
How can I see, say, the following expression:
connections|>List.map(fun c->c.Probabilities)
2
votes
0
answers
73
views
Debugging a c# xunit project with netcoredbg in neovim is skipping the breakpoints
I'm using netcoredbg to debug xunit tests for a c# project in neovim.
I'm getting this warning:
"You are debugging a Release build of MIcrosoft.TestPlatform.Build.dll. Using Just My Code with ...
2
votes
1
answer
210
views
Kernel panic during ROP chain: GDB stepping mismatch and unexpected register state
I am working on a Linux x64 kernel exploitation CTF challenge. I have constructed a ROP chain to execute commit_creds(prepare_kernel_cred(0)).
However, I am encountering a major inconsistency between ...
0
votes
1
answer
61
views
How to use debugger in Colab?
when we use vscode we can debug inside function from where we call function. How to do like that in google colab cloud server? Please help me.
def decorator(func):
def wrapper():
print(&...
1
vote
0
answers
68
views
How do I get DuckDB CLI to successfully log errors?
I'm using the DuckDB CLI, version 1.4.2 on macOS.
The plan is to use duckdb as a part of a CLI pipeline, not from inside of a Python script, etc.
I've already got the tooling to build out the script ...
-2
votes
1
answer
110
views
The remote debugger is running as a different user. How do I get my attach-to-process to work?
This is a follow-up to my question Which firewall rule applies on attaching a process to the development environment?
On my test machine, I've restarted my firewall, after having added the Remote ...
-1
votes
1
answer
84
views
Is there a way to see all objects while debugging in Visual Studio?
Is there any way, using the Visual Studio debugger, to see all the objects belonging to the application currently running? e.g. for tracking down rogue instances of a class that might be still hanging ...
Tooling
0
votes
0
replies
50
views
VS Code: Display error gutters for folded code
Using VS Code, I usually fold/collapse all functions & code using Ctrl + K + 0 except for the function(s) I'm currently editing. However, if my changes induce errors in other parts of the code, I ...
0
votes
1
answer
28
views
Why might request.security() return different results when viewed from different chart timeframes?
I have been debugging some strange results I was getting when I stumbled on a problem where request.security is not returning consistent results. Indeed, it is massively inconsistent. The following ...
Best practices
0
votes
1
replies
64
views
Why does using Python’s print() function cause a rendering error in Django, and what should be passed to render() instead?
Problem Code Snippet (Python: Django)-
def home(request):
data = {"msg": "Hello"}
result = print(data) # Problematic line
return render(request, "index.html"...
-1
votes
0
answers
86
views
How do you fix Intellisense errors in a CMake project when Visual Studio Community is connected to WSL:Ubuntu?
I am running a CMake project in Visual Studio Community 2026 and it is connected to WSL: Ubuntu. It is running the Linux Debug configuration preset. WSL is running the gcc 15.1.0 compiler.
My C++ code ...
0
votes
0
answers
30
views
How to Step Into NuGet package functions during debugging in Visual Studio?
I’m trying to debug inside a function that comes from a NuGet package (for example AutoMapper or FluentValidation).
I want to Step Into the built-in function during debugging in Visual Studio to ...
Advice
0
votes
3
replies
50
views
Clojure inline print for debugging
In clojure, the println function returns a nil:
\>(println "a"
a
nil
This makes it awkward to use print to access an intermediate value when print debugging:
Say I have:
(* (+ 5 10) (- ...
0
votes
0
answers
66
views
com.facebook.react.views.view.ReactViewGroup.removeViewAt
How can I fix this ANR ?
This issue occurs exclusively when the app is in the active state (76%) and background state (24%). The majority of impacted devices are Vivo models (42%) and Oppo devices (23%...