Viewing profile — donadigo
donadigo
HN member- Joined
- Wed, Mar 30, 2022, 8:27 PM UTC
- HN karma
- 37
- Public activity
- 26 items
- HN profile
- View on Hacker News ↗
About donadigo
No profile information was provided.
Recent public activity
-
story
Show HN: Predicting the future while debugging C++
Hello HN, I'd like to showcase a new feature in my Visual Studio extension, which allows for seeing what is ahead in program execution while stepping through C++ code. Each line th…
-
story
Show HN: Real-time profiler for C++ [video]
Hello HN, For a while now, I've been working on a Visual Studio extension that enables you to see code execution and variables in real-time, directly in the VS editor. A couple mon…
-
comment
Comment #41616688
Every function would be pretty overkill, but you can automatically install instrumentation on functions on demand or with a pre-determined user selection. You can even instrument o…
-
comment
Comment #41011368
I sympathize a lot with this post. Today, modern IDE's still don't provide automatic ways to inspect program execution and nicely visualize it. Instead, they rely on having you pla…
-
comment
Comment #40874659
I'm not sure about your particular case, but if your environment really is headless, then it should absolutely be possible to run it a lot faster than realtime. It depends on what …
-
comment
Comment #40873636
This is an awesome overview and if you want more, most of those are documented in an approachable way on YouTube. Just wanted to provide some perspective here on how many things th…
-
comment
Comment #40159354
Hello, since some time now I develop an extension for Visual Studio that makes it possible to see what's going on in your program live. This includes which code paths are executed …
- story
-
comment
Comment #39978293
There's also a lot of apps written in Vala for elementary OS's AppCenter with screenshots & links to GitHub: https://appcenter.elementary.io/ (not all, but most). I published two a…
-
comment
Comment #39955860
I'll add to that my own Visual Studio extension that improves runtime debugging by showing you which lines are actively executing and what changes happened line-by-line: https://d-…
-
comment
Comment #39408625
Hello HN, for about 6 months I've been developing a Visual Studio extension that makes it easier to debug & inspect dynamic C++ code that changes state e.g every frame. The newest …
- story
-
comment
Comment #38861534
Interesting approach. Was it enough for your use case despite being quite cumbersome if you end up needing to save a bunch of different more complex instances? I mean, I imagine mo…
-
comment
Comment #38839945
Hey, looks like we had the same idea! I've run into the same issue and wanted to stop building debug UI's that do the same thing. In my case, I went to implement this for Windows, …
- story
-
comment
Comment #37561142
Hey HN, Adam here. I've been building D0 - an extension that adds non-standard debugging features that help debug C++ applications in real time without setting any breakpoints. D0 …
- story
- story
- story
-
comment
Comment #37015782
To each their own but the notion that the debugger "will not scale to hundreds of processors and terabytes of data" just seems bizarre to me. If a debugger cannot scale to such qua…
-
story
Show HN: Mixing C++ with Angelscript for runtime introspection and debugging
Hey everyone, I created D0 for myself to enable faster iteration and introspection while working on my C++ projects. Particularly, it annoyed me that the simplest change of adding …
-
comment
Comment #35561682
Hey, ever since I saw developer tools in today's web browsers, I wanted to have that kind of functionality available when developing C++ projects. The ability to browse the DOM tre…
- story
-
comment
Comment #35099695
The article provides a pretty good overview of the landscape of debuggers out there. I find myself using printf debugging whenever something is a dynamically evolving state and I n…
-
comment
Comment #34234845
I got quite frustrated by how much native C++ programs are slow/closed to any kind of introspection/debugging so this year I will be attempting to build a live object inspector/deb…