so now proton completely blocking account creation through their onion adress? I have standard protection, javascript enabled. Time to swith for those who use this service as they are ditching tor and switzerland?

  • limer@lemmy.ml
    link
    fedilink
    arrow-up
    32
    arrow-down
    9
    ·
    2 days ago

    LLM is avoided by many experienced developers and competent medium and small companies.

    Tools like cursor are sometimes ok for small things like people learning, or to generate boilerplate.

    But it is seen by some as a warning flag when it’s in source code for larger projects

    • 3abas@lemmy.world
      link
      fedilink
      arrow-up
      10
      arrow-down
      5
      ·
      edit-2
      2 days ago

      This comment is meaningless.

      What red flags? Why is it a red flag is an be experienced developer used cursor on a larger project? Put it into words.

      • irotsoma@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        6
        arrow-down
        5
        ·
        1 day ago

        It’s very time consuming to detect and correct the small mistakes that LLMs make. Beyond one or two lines of code, it becomes much more time consuming to correct the multitude of subtle mistakes vs coding it myself. I use code completion that comes with my IDE, but that is programmatic completion, not LLM, and is much, much more accurate and in smaller chunks that are easy to verify at a glance. I’ve never known any experienced developers who have had a different experience. LLMs can be good for getting a general idea of how to code something in a new language or framework I’ve never touched before and more to help find actual examples rather than use the code directly in the IDE, but if I were to use LLM code directly that would be in a test project, never, ever in production code. I would never write production code in a language I’ve never used before with or without an LLM’s “help”.

      • limer@lemmy.ml
        link
        fedilink
        arrow-up
        3
        arrow-down
        5
        ·
        edit-2
        2 days ago

        When adding code this way, one needs to look it over and read to fix bugs or things that are not quite correct; stats show experienced developers often are faster not using this approach because debugging existing code takes longer than writing it fresh.

        The speed is not the issue.

        What matters is sometimes subtle bugs are introduced that require several people to catch. If at all. These issues might be unique to the Llm.

        Having large sections of generated code offers the possibility of hard to find problems.

        Some codes are more sensitive to such issues.

        The details of how the code was added, and what it does, may render this issue harmless or very much a problem to be avoided.

        This is why it’s a flag and not a condemnation