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
- Posting a link to a website containing tracking isn't great, if contents of the website are behind a paywall maybe copy them into the post
- Don't promote proprietary software
- Try to keep things on topic
- If you have a question, please try searching for previous discussions, maybe it has already been answered
- Reposts are fine, but should have at least a couple of weeks in between so that the post can reach a new audience
- Be nice :)
Related communities
much thanks to @gary_host_laptop for the logo design :)
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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
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.
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".
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