Hacker News
- How to debug C and C++ programs with rr (2021) https://developers.redhat.com/blog/2021/05/03/instant-replay-debugging-c-and-c-programs-with-rr 2 comments
- Why can I Debug some Numerical Programs that You Can’t? Why should we care? http://www.cs.berkeley.edu/~wkahan/Stnfrd50.pdf 18 comments
- The Practice of Programming, Debugging http://cm.bell-labs.com/cm/cs/tpop/debugging.html 2 comments
- Debug Programs Using GDB on Redox OS https://www.redox-os.org/news/public-announcement-gdb/ 13 comments
- Template meta-programming: Some testing and debugging tricks https://cukic.co/2019/02/19/tmp-testing-and-debugging-templates/ 11 comments cpp
- How do you go about debugging concurrent programs in rust? https://stackoverflow.com/questions/499634/how-to-detect-and-debug-multi-threading-problems 5 comments rust
- Instant replay: Debugging C and C++ programs with rr https://developers.redhat.com/blog/2021/05/03/instant-replay-debugging-c-and-c-programs-with-rr/ 2 comments cpp
- Debugging golang programs https://ttboj.wordpress.com/2016/02/15/debugging-golang-programs/ 4 comments golang
- How to debug small programs http://ericlippert.com/2014/03/05/how-to-debug-small-programs/ 7 comments programming
- Tips to debug hanging Go programs https://michael.stapelberg.ch/posts/2025-02-27-debug-hanging-go-programs/ 3 comments golang
- You Can Now Debug Programs Using GDB on Redox OS https://www.redox-os.org/news/public-announcement-gdb/ 14 comments rust
- Programming Servo: The Debug Way (Debug Servo and Rust in a modern way) https://medium.com/coding-neutrino-blog/programming-servo-the-debug-way-5db01f09b7f4 5 comments rust
- Need help to Debug This program. https://www.reddit.com/r/learnprogramming/comments/94qo08/need_help_to_debug_this_program/ 7 comments learnprogramming
- Debugging a segfault in my Rust program - Julia Evans https://jvns.ca/blog/2017/12/23/segfault-debugging/ 20 comments rust
- [X-Post] GDB now supports debugging programs written in Rust https://np.reddit.com/r/rust/comments/4merw3/gdb_now_supports_debugging_programs_written_in/ 9 comments programming
- When Programming Goes Bad - Debugging the Impossible http://kolodny.github.io/blog/blog/2014/07/21/when-programming-goes-bad-debugging-the-impossible/ 10 comments javascript
- Dave Baggett's answer to Programming Interviews: What's the hardest bug you've debugged? http://www.quora.com/programming-interviews/whats-the-hardest-bug-youve-debugged/answer/dave-baggett?srid=pxh3&share=1 618 comments programming
- Taking the pain out of debugging with live programming http://www.techworld.com.au/article/459054/taking_pain_debugging_live_programming/ 10 comments programming
- C++ I tried an atm program and need advice on a debug message. https://gist.github.com/2699437 7 comments learnprogramming
- I made a video with every single debug render on a pathtracer I'm programming in Rust https://www.youtube.com/watch?v=OTSPHugPjD4 36 comments programming
- Brief article: graphical debugging with PlantUML and state dumping in a complex program https://f0lg0.vercel.app/blog/state-dumping-kademlia 3 comments programming
- Debugging performance issues in Go* programs https://software.intel.com/content/www/us/en/develop/blogs/debugging-performance-issues-in-go-programs.html 2 comments golang
- Found this 2,700-word profile, published in 1977 in the New York Times, about a programmer and how he debugs his programs https://www.nytimes.com/1977/10/30/archives/programmer-an-assault-on-bugs-spotlight-programmer-an-assault-on.html 62 comments programming
- OnlineGDB: Now debug java program online https://www.onlinegdb.com/blog/introducing-online-java-debugger-mode/ 4 comments java
- Newbie: No idea why Windows 7 Firewall is blocking my program during debugging http://stackoverflow.com/questions/699983/what-causes-windows-firewall-to-block-an-application 7 comments csharp
- Safe: Robust programming practices in Haskell via types, testing, debugging and documentation http://liamoc.net/articles/safe.html 84 comments programming
- Beyond Debug Information: Improving Program Reconstruction in LLDB using C++ Modules https://hdl.handle.net/20.500.12380/300037 3 comments cpp
- A "Laboratory Tutorial" for writing C programs - explanations of useful flags, intro to debugging, and more! http://pages.cs.wisc.edu/~remzi/ostep/lab-tutorial.pdf 4 comments programming
- I accidentally the entire heap: debugging Haskell programs with space leaks https://www.bitba.se/i-accidentally-the-entire-heap/ 6 comments haskell
- An awesome illustrated guide on using perf to profile and debug programs on Linux https://jvns.ca/blog/2018/04/16/new-perf-zine/ 2 comments linux_programming
- How small programming faults led to overflowing an entire system. The story of a bad debugging experience. https://deque.blog/2018/07/27/how-small-programming-faults-led-to-overflowing-an-entire-system/ 8 comments programming
- [x86 assembly][MASM] Assembly noob here. My "program crashes" when run but nothing comes up during debugging... how does one go about debugging this? https://gist.github.com/anonymous/fdd172469c01e85b0d38 4 comments learnprogramming
- British children to be taught computing under new curriculum: Pupils aged five to seven will be expected to "understand what algorithms are" and to "create and debug simple programs". By the age of 11, pupils will have to "design, use and evaluate computational abstractions" http://www.bbc.co.uk/news/education-23222068 178 comments compsci
- If you ever thought your web applications do not need asynchronous code as it really complicates the debugging . Post below present a good case how asynchronous programming can help any application with scalability. https://www.nerdlife.me/Understanding-The-Need-For-Asynchronous-Programming/ 22 comments dotnet
- Debugopt: Debugging fully optimized natively compiled programs using multistage instrumentation https://www.sciencedirect.com/science/article/pii/s0167642318303629 4 comments cpp
- Today is Grace Hopper's 107th birthday, one of the true pioneers of early programming and popularizer of the term "Debugging" http://www.sdsc.edu/sciencewomen/hopper.html 29 comments programming
- How to debug CPP using ubuntu when there's input? the program finished after I hit enter for the inputs, then I couldn't hit n for the next line anymore https://ibb.co/ZScqKwv 5 comments linux_programming
- Pure Functions C# - A well-structured software is easy to write and debug and reduce future programming costs. This all can be achieved through functional programming. This article explains what are FP Functions or Pure Functions in C# functional programming and why they matter. https://codewithshadman.com/pure-functions-csharp/ 10 comments csharp
- [C] Program to process and sort very large text files. My attempts behave weird or end up crashing, need help debugging. WARNING: long, complicated and probably messed up in many ways. https://www.reddit.com/r/learnprogramming/comments/5l9dqq/c_program_to_process_and_sort_very_large_text/ 2 comments learnprogramming
- My program gets <100 FPS in debug mode, 500 in release mode, and 3000 outside of the compiler (visual studio 2010) Is this normal? How can I improve debug mode FPS? http://www.sfml-dev.org/ 14 comments learnprogramming