Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Meta

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

91%
+19 −0
Meta What’s the point of Q&A sites anymore?

In short: LLMs are trained based on what we already know. I'm oversimplifying massively, but essentially they produce a string of words which is likely to follow the prompt you provide based on ext...

posted 6mo ago by ArtOfCode‭

Answer
#1: Initial revision by user avatar ArtOfCode‭ · 2026-03-26T00:19:58Z (6 months ago)
In short: LLMs are trained based on _what we already know_. I'm oversimplifying massively, but essentially they produce a string of words which is likely to follow the prompt you provide based on extensive training on samples of language, code, etc. At their core, they are _statistical_ models, and as the saying goes&mdash; lies, damned lies, and statistics. They are _not_ general artificial intelligence; they carry no intrinsic _understanding_ of their input or output, and are therefore not capable of knowing that their output is correct in the same way a human is.

They're useful for some things, in the same way data and statistics are. Here is an example of a model:

![Simple graph of x=y from 1 to 10, with a trendline continuing to x=12](https://software.codidact.com/uploads/7dxdzf9dd7j3prkuh38et81ysq5q)

The points are my _training data_; the dotted line is my _model_. My model predicts that given an input of 11, the output will also be 11. In this way, a good model can make good predictions for what comes next; LLMs work essentially the same way, but on billions of input parameters and training data points. That said, what's to say that my graph doesn't show a sequence which maintains $x=y$ from 1 to 11, but then jumps to 13, then 24, then 35, etc? It's not possible for my model to know or predict this, in the same way that it's not possible for an LLM to predict with 100% accuracy the _correct_ answer.

Sorry, slight tangent.

---

What does that mean for Q&A sites? An LLM may be able to give you a correct answer a lot of the time, particularly for predictable or repetitive tasks; computer code often follows a very well-defined syntax and API so _is_ often predictable enough for an LLM to get it right.

What the LLM doesn't know is anything that it hasn't been trained on. Anything _new_. If I were to create a new programming language and not share a formal syntax or API with anyone, then&mdash;quite apart from the fact that it would be useless&mdash;LLMs would be unable to accurately predict what comes next.

That goes for anything that's new. For Q&A communities like this, perhaps that means a pivot _away_ from asking simple questions looking for help debugging code, and _towards_ asking complex questions looking for ideas that only humans can generate. What should I consider when structuring this large and complicated project? What are the trade-offs of this niche technical decision?

Just what _is_ a `foo`, anyway?