←back to thread

467 points mraniki | 1 comments | | HN request time: 1.258s | source
Show context
HarHarVeryFunny ◴[] No.43535790[source]
I'd like to see an honest attempt by someone to use one of these SOTA models to code an entire non-trivial app. Not a "vibe coding" flappy bird clone or minimal ioS app (call API to count calories in photo), but something real - say 10K LOC type of complexity, using best practices to give the AI all the context and guidance necessary. I'm not expecting the AI to replace the programmer - just to be a useful productivity tool when we move past demos and function writing to tackling real world projects.

It seems to me that where we are today, AI is only useful for coding for very localized tasks, and even there mostly where it's something commonplace and where the user knows enough to guide the AI when it's failing. I'm not at all convinced it's going to get much better until we have models that can actually learn (vs pre-trained) and are motivated to do so.

replies(6): >>43535869 #>>43535969 #>>43536042 #>>43536795 #>>43536842 #>>43538608 #
lordswork ◴[] No.43536042[source]
I'm at 3k LOC on a current Rust project I'm mostly vibe coding with my very limited free time. Will share when I hit 10k :)
replies(1): >>43536229 #
HarHarVeryFunny ◴[] No.43536229[source]
Would you mind sharing what the project is, and which AI you are using? No sign so far of AI's usefulness slowing down as the complexity increases?
replies(2): >>43538578 #>>43551468 #
lordswork ◴[] No.43551468[source]
>Would you mind sharing what the project is

rust + wasm simulation of organisms in an ecosystem, with evolving neural networks and genes. super fun to build and watch.

>which AI you are using?

using chatgpt/claude/gemini with a custom tool i built similar to aider / claude code, except it's very interactive, like chatting with the AI as it suggests changes that I approve/decline.

>No sign so far of AI's usefulness slowing down as the complexity increases?

The AI is not perfect, there are some cases where it is unable so solve a challenging issue and i must help it solve the issue. this usually happens for big sweeping changes that touch all over the codebase. It introduces bugs, but it can also debug them easily, especially with the increased compile-time checking in rust. runtime bugs are harder, because i have to tell the ai the behavior i observe. iterating on UI design is clumsy and it's often faster for me to just iterate by making changes myself instead.

replies(1): >>43552106 #
HarHarVeryFunny ◴[] No.43552106[source]
Thanks - sounds like a fun project!

Given that you've built your own coding tool, I assume this is as much about testing what AI can do as it is about the project itself? Is it a clear win as far as productivity goes?

replies(1): >>43554388 #
1. lordswork ◴[] No.43554388[source]
I'm most interested in building cool projects, and I have found AI to be a major multiplier to that effort. One of those cool projects was a custom coding tool, which I now use with all my projects, and continue to polish as I use it.

As far as productivity, it's hard for me to quantify, but most of these projects would not be feasible for me to pursue with my limited free time without the force multiplier of AI.