• magic_lobster_party@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    I would swap Python with C++. Constantly dealing with stupid runtime errors that could’ve been easily captured during compile time.

    Did you forget to rename this one use of the variable at the end of the program? Sucks for you, because I won’t tell you about it until after 30 minutes into the execution.

    • Eager Eagle@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      8 months ago

      you need a linter, bro

      when integrated into the editor it’ll highlight stupid mistakes as they’re typed

      I recommend Ruff for real time checks, and pylint if you need a comprehensive analysis.

        • Eager Eagle@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          edit-2
          8 months ago

          As if that’s a bad thing… it means you’re not locked in with a tool you don’t like and the language itself doesn’t dictate your workflow.

          There’s very little benefit and a lot of potential problems in using a single tool for everything.

    • AeroLemming@lemm.ee
      link
      fedilink
      English
      arrow-up
      0
      ·
      8 months ago

      I mean, is C++ any better? Sure, it catches some errors at compile-time, but others can turn into undefined behavior pretty easily.

      • magic_lobster_party@kbin.social
        link
        fedilink
        arrow-up
        0
        ·
        8 months ago

        Catching some errors is better than catching no errors. No compiler in any language can protect you from all runtime errors either way, but some are better at it than others.

    • nxdefiant@startrek.website
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      8 months ago

      You can solve this with git:

      git gud

      Seriously though, writing a monolith of a function and not testing anything until you run it the first time isn’t the way to go. Even with a compiler you’re only going to catch syntactical and type issues. No compiler in the world is going to tell you you forgot to store your data in the correct variable, although it or a a linter may have helped you realize you weren’t using it anywhere else.

      • Johanno@feddit.de
        link
        fedilink
        arrow-up
        0
        ·
        8 months ago

        Python was typeless. And it was common to reuse variables with different types of content.

        So you at some point never knew what actually is within the variable you are using.

        Using typing in python solve 95% of your problems of having runtime errors instead of compile errors

        • Whelks_chance@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          8 months ago

          Agreed. Mypy pre-commit hooks are very useful if you’re starting a fresh project. Adding typing to an existing project which reuses variables with different types… We lost weeks to it.