Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@MEGADROID Debuggers are nice, but still a crutch. Once you become one with the code, you can just look, and you will see the bug. See the system from the code's point of view.
I once had a nice pair programming with a junior dev, but he was familiar with the project and I was not. Since I value domain knowledge over coding, I gave him the lead. At one point, he suggested a fix, and I immediately told him this wouldn't work. He asked back why - and I didn't have an answer, I just said the suggested code didn't feel right. After a solid hour of analysis, I was able to prove my point. -
@MEGADROID gdb is the GNU debugger, usable even from commandline. You can catch signals (most importantly: SIGSEGV), set a read or write watch on variables, debug the call stack, use it as disassembler and tons of other stuff.
-
Pro Tip:
You can drag the yellow arrow down if you want to skip down to a later point instead of stepping over methods till you get there.
I have been using Visual Studio for 7 years and I learned that a month ago. -
Dekatelon676y@aquacash5 that feature has been introduced with vs 2017, so it isn't that old. You can drag the arrow to previous statements as well. A really nice tool together with the editable code on runtime
Related Rants
*Me using visual studio debugger for the first time*
joke/meme
visualstudio
vs
visual basic
debugger
funny
debug
vb.net
debugging
vs2017