52,735 questions
1
vote
0
answers
35
views
Wired issue in safari keep flickering (flash whites fo ever)
I have been facing a very wired issue with my customer who uses safari in their phones :
drive.google.com/file/d/1x9IvLvuyIAycaIW5JQEdZEc8Y9EFlQFp/view?usp=sharing
screen keep flashing/flickering for ...
1
vote
0
answers
17
views
GDB examine command shows different value than value loaded from the same address
I tried to make a function that finds all existing PCIe device's functions and saves the physical address of their config space to an allocated memory for my os, but I noticed that I got WAY too much ...
4
votes
0
answers
53
views
How to load debug symbols of external linux module in gdbd?
Could you please help me with the following GDB debugging scenario:
I have a vmlinux image with debug symbols. I also have a kernel module (.ko file) that I need to debug. However, I need to debug the ...
0
votes
1
answer
48
views
Can you debug your app with a second user?
On various devices you can create additional users. On my device I encounter a strange storage issue: An app I develop cannot access it's external files dirs (while it works on another device). So I ...
Advice
0
votes
3
replies
62
views
Terminal closing after outputting code result
I'm new to coding, and I'm trying to use VS code to learn Python. I had an issue when I ran the debugger. I got some extra output showing something like this:
PS C:\Users\user\Desktop\Python\oops> ...
Best practices
0
votes
0
replies
30
views
Playwright Mcp vs Openbrowser mcp . Can you expect the token gap?
Spent the last few days going deep on MCP server options for browser automation and the token usage difference between Playwright MCP and OpenBrowser is something my team genuinely did not see coming ...
2
votes
1
answer
114
views
Failing to locate the origin of an exception at static initialization time (with CLion)
I've inherited a C++ codebase which I'm trying to get to work. I managed to have it build and run; but when I try to run it with non-trivial arguments, it terminates, with the error message:
terminate ...
0
votes
1
answer
36
views
macOS ignoring hardware single step bit in MDSCR_EL1
I am implementing a debugger for aarch64 macOS. I am doing this from scratch (without using lldb as the backend) mainly to explore some low level debugging techniques.
I have implemented instruction ...
0
votes
1
answer
39
views
Arrow tips overlap with geom_node_label() in ggraph — how to stop arrows at label border?
I am building a directed graph using tidygraph and ggraph.
The issue is that arrow tips extend inside rectangular node labels created with geom_node_label(), making arrow direction difficult to see.
I ...
1
vote
1
answer
84
views
How can I fix this javascript bug from Listal.com?
Listal.com still hosts a lot of pictures. The site has a "view all" button on user profile pages, such as at the bottom of the one linked. This button doesn't work and hasn't for at least a ...
-1
votes
1
answer
150
views
How to track a variable in js Memory? [closed]
I was trying to build a debugger desktop application especially for electron based applications. I'm still in initial step of planning. My question is "If I want to show what are the variables ...
0
votes
2
answers
97
views
Debugging the Linux boot process
I created a qcow2 file using qemu-img create -f qcow2 fedora.qcow2 20G . I installed Fedora 43 on that and I am able to boot it normally using qemu-system-x86_64 -m 2G -smp 2 -enable-kvm -drive file=~/...
0
votes
0
answers
44
views
Xcode show full file on debug
Whilst debugging in Xcode 26+ if you click on the stack, it only shows the selected function, I'd like it to show the whole file like it used to do. Ok, you can click on expand file, but it's an ...
-15
votes
1
answer
287
views
What path do you need to create a dump? [closed]
I want to start a program (an interactive one), but this fails due to a Windows service, which seems not to be started up:
In text format:
---------------------------
Connecting to the server
--------...
3
votes
2
answers
123
views
MAUI how to access the view model inside a command where x:DataType is set
<CollectionView.ItemTemplate>
<DataTemplate x:DataType="models:ParcelDTO">
<SwipeView>
<SwipeView.RightItems>
<SwipeItems ...