Live data from Hacker News

Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

news.ycombinator.com

241–247 of 247 posts

Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

#241
Here is my best way now to develop

Mini jobs for implementation Mini loops for research and design

https://github.com/dosatos/minimise

Without it I see that using let’s say Claude code directly requires a lot of hand holding (or insanely huge tokens wasted)

Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

#243
I'm currently working on a fully autonomous software development client. You can just tell the LLM what you want it to build, optionally adding a design doc or screenshots of app designs, and it iteratively keeps building the app and adding new features until you tell it to stop. It uses a vision model to verify correctness and rate the UI in-between iterations. The best part is that it can run purely on relatively small local models (I ran it on Qwen2.5 Coder 14b and Qwen3 VL 8b using my MacBook).

Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

#244

One of the things I've been talking about with my senior developers is how the bottleneck has shifted even more dramatically to human code understanding vs code generation. AI is still not suitable for generating production grade code without a human checking it (yet), but it can produce a huge amount of code for humans to check. We've been experimenting with ai finding better ways of communicating what is in a chang…

Have you tried pyor.review for reviewing your PRs?

Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

#245

I'm using what I call "hermetic agents", where completely sandboxed agents write code and tests from the same specification, where the code writer can't see the test and the test writer can't see the code. The idea is that we can get better quality this way (by avoiding confirmation bias between code and tests). It is more painful to set up however, since you have to distill a spec and guides that the agent would nor…

What do you mean by 'completely sandboxed'? and why is setting this up painful?

Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

#246
post #175

Earlier quoted context omitted.

How do you test it across different workloads and are you running it in a datacenter or cloud provider? I forgot to mention it but the other major problem I underestimated was giving the permission to potentially spend lots of money to AI calling each other in ways I didn't have a good way to monitor, and didn't want to actively watch. So I wanted to set budgets and have them get passed to children, and realized that…

I have a 'node/container' abstraction at the infra/engine layer which is essentially either a cloud VM or a local podman container. The engine/infra layer can spin up more of these as needed. I have a relatively beefy dedicated machine for working with AI, which is where I do most of the testing. I aggressively try to keep costs down so the workflow DSL I have supports configurable limits which can be set at the $, t…

[flagged]

Re: Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

#247

Just yesterday I tried to find an annoying and persistent bug in the cummunication between a Lyrion Media Server and my player. I used Opencode's native Big Pickle AI, and first it was a pain in the back, because it gave me a new code, I had to start the player and test the control in the server's web GUI, report the errors back, and so forth, and it tried a lot, but never found the real cause. Then I got tired, and…

[dead]
Post reply on HN