I’m getting back into coding and I’m going to start with python but I wanted to see what are some good IDEs to write the code. Thanks in advance.

    • BigTechMustBurn
      link
      fedilink
      arrow-up
      6
      arrow-down
      1
      ·
      1 month ago

      Zed is full of AI rubbish, though, which is a shame as I was looking for a code editor built with Rust.

        • BigTechMustBurn
          link
          fedilink
          arrow-up
          1
          ·
          30 days ago

          Yeah, I have. Seems like development has stalled, though. Last release was 4 months ago and the last commit a month ago.

      • Presi300@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        ·
        1 month ago

        Not really, all the AI stuff is off by default and doesn’t really nag you all too much…

      • toastal
        link
        fedilink
        arrow-up
        3
        ·
        1 month ago

        Rust doesn’t buy you anything interesting in this space.

      • theamazing0@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        2
        ·
        30 days ago

        It’s not too hard to disable all of it

        {
          // Disable Telemetry
          "telemetry": {
            "metrics": false,
            "diagnostics": false
          },
          // Disable Assistant:
          "assistant": {
            "enabled": false,
            "button": false,
            "version": "2"
          },
          // Disable Copilot:
          "features": {
            "inline_completion_provider": "none"
          },
          // Disable Collaboration Features:
          "collaboration_panel": {
            "button": false
          },
          "chat_panel": {
            "button": false
          },
          "notification_panel": {
            "button": false
          }
        }
        • BigTechMustBurn
          link
          fedilink
          arrow-up
          1
          ·
          30 days ago

          These should be off by default (made opt-in not opt-out) or made plugins/extensions at worst and removed completely at best.