this post was submitted on 09 Aug 2025
171 points (83.3% liked)

Privacy

40710 readers
395 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

much thanks to @gary_host_laptop for the logo design :)

founded 5 years ago
MODERATORS
 

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?

you are viewing a single comment's thread
view the rest of the comments
[–] limer@lemmy.ml 23 points 1 day ago (1 children)

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 5 points 1 day ago* (last edited 1 day ago) (2 children)

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 1 points 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 -2 points 1 day ago* (last edited 1 day 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