HackerTrans
TopNewTrendsCommentsPastAskShowJobs

symfrog

no profile record

Submissions

[untitled]

1 points·by symfrog·8 เดือนที่ผ่านมา·0 comments

comments

symfrog
·2 เดือนที่ผ่านมา·discuss
We have had LLMs for much longer than 3 years.
symfrog
·4 เดือนที่ผ่านมา·discuss
I would estimate that out of every 200 lines of code that Claude Code produces, I notice at least 1 issue that would cause severe problems in production.

In my opinion these discussions should include MREs (minimal reproducible examples) in the form of prompts to ground the discussion.

For example, take this prompt and put it into Claude Code, can you see the problematic ways it is handling transactions?

---

The invoicing system is being merged into the core system that uses Postgres as its database. The core system has a table for users with columns user_id, username, creation_date . The invoicing data is available in a json file with columns user_id, invoice_id, amount, description.

The data is too big to fit in memory.

Your role is to create a Python program that creates a table for the invoices in Postgres and then inserts the data from the json file. Users will be accessing the system while the invoices are being inserted.

---
symfrog
·4 เดือนที่ผ่านมา·discuss
The closer you get to releasing software, the less useful LLMs become. They tend to go into loops of 'Fixed it!' without having fixed anything.

In my opinion, attempting to hold the hand of the LLM via prompts in English for the 'last mile' to production ready code runs into the fundamental problem of ambiguity of natural languages.

From my experience, those developers that believe LLMs are good enough for production are either building systems that are not critical (e.g. 80% is correct enough), or they do not have the experience to be able to detect how LLM generated code would fail in production beyond the 'happy path'.
symfrog
·5 เดือนที่ผ่านมา·discuss
If you are trying to build something well represented in the training data, you could get a usable prototype.

If you are unfamiliar with the various ways that naive code would fail in production, you could be fooled into thinking generated code is all you need.

If you try to hold the hand of the coding agents to bring code to a point where it is production ready, be prepared for a frustrating cycle of models responding with ‘Fixed it!’ while only having introduced further issues.
symfrog
·5 เดือนที่ผ่านมา·discuss
On what basis are you making that prediction?
symfrog
·5 เดือนที่ผ่านมา·discuss
Any sufficiently complicated LLM generated program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of an open source project.
symfrog
·5 เดือนที่ผ่านมา·discuss
Windows' moat was not the operating system code, but that they were able to get distribution via IBM, and then grow an ecosystem of applications that were targeted at Windows, which created a snowball effect for further applications.
symfrog
·5 เดือนที่ผ่านมา·discuss
Was software ever a moat? Software typically only gave companies a small window of opportunity to turn a fleeting software advantage into a more resilient moat (network effects, switching costs etc.)
symfrog
·5 เดือนที่ผ่านมา·discuss
In what way is the long term impact of LLMs being underestimated? If anything, it seems that it has been overestimated in the past years and that something other than LLMs will be needed to reach the original scaled LLM hope of AGI.
symfrog
·5 เดือนที่ผ่านมา·discuss
If only that is what investors have figured out.

Unfortunately, it seems investors now think that all paid software will be replaced by AI generated software, somehow open source projects laundered through generative AI models should finally convince enterprise customers to go with free.
symfrog
·7 เดือนที่ผ่านมา·discuss
EXWM is great, having the same flow to manage X applications as for emacs buffers is a huge benefit. My only concern is if X11 will be maintained sufficiently into the future to keep using it, currently there is no Wayland support in EXWM.
symfrog
·2 ปีที่แล้ว·discuss
Did you consider Kill Bill https://github.com/killbill/killbill ? I used it a few years ago for usage based billing.