I know profilers and debuggers are a boon for productivity, but anecdotally I’ve found they’re seldom used. How often do you use debuggers/profilers in your work? What’s preventing you? conversely, what enables you to use them?

  • xian@beehaw.org
    link
    fedilink
    arrow-up
    9
    ·
    1 year ago

    As a C# programmer I use the debugger every single day, since it’s so natural and easy to use as to just run the application. I’ve grow spoiled actually, when I program in Go or Rust I really miss the “it just works” debugger.

    • frosty@beehaw.org
      link
      fedilink
      arrow-up
      5
      ·
      1 year ago

      Same here. The Visual Studio debugger is excellent, and there’s never a day that goes by without me using it.

    • Jaloopa@beehaw.org
      link
      fedilink
      arrow-up
      4
      ·
      1 year ago

      I can’t imagine programming without regularly pausing execution to inspect intermediate variables, run some quick checks in the immediate window or set conditional breakpoints. I’m always a bit surprised when I remember there are people who don’t work like that