• Tsuki@beehaw.org
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      Dude, literally me. Whenever my friends or my brother’s friend come to my room, I opened up a few terminals with only one of them is actually for coding and they thoight I could hack someone’s Facebook account or something LMAO.

      Yes I live in Southeast Asia

  • bagfatnick@kulupu.duckdns.org
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    I can really emphasise with Samir. Working in healthcare I’m basically limited to just the Office applications. However in the past few years I’ve been able to cook up solutions by reading / writing to file based databases, and using VBA to generate and bind to HTML contents on the fly for the built in IE11 instance. It’s as close to getting to some kind of web-stack within the confines of IT Sec in healthcare.

  • Atiran@lemm.ee
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    I have worked with most of these people at one point or another. I used to sit next to an old architect like walters. He had so many patents the company only recognize him on every 10th one.

  • Crow@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    Ten years into casual programming and I still don’t know how to use a debugger.

        • erogenouswarzone@lemmy.ml
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          Yes, but only because it gives you a link to where that was run. Click the link to the right with filename:lineNumber, and it will open the sources tab to that line. Set a breakpoint and rerun to pause there, then step through the code’s execution.

          Of course, if you’re using minified or processed code, this will be more difficult, in that case figure out how to do it in VS Code.