▲ | mirkodrummer 4 days ago | ||||||||||||||||||||||||||||||||||
That is funny for how much is wrong. Ask the LLMs to vibe code a text editor and you'll get a React app using Supabase. Engineering !== Token prediction | |||||||||||||||||||||||||||||||||||
▲ | adastra22 4 days ago | parent | next [-] | ||||||||||||||||||||||||||||||||||
Non sequitur? I have used agentic coding tools to solve problems that have literally never been solved before, and it was the AI, not me, that came up with the answer. If you look under the hood, the multi-layered percqptratrons in the attention heads of the LLM are able to encode quite complex world models, derived from compressing its training set in a which which is formally as powerful as reasoning. These compressed model representations are accessible when prompted correctly, which express as genuinely new and innovative thoughts NOT in the training set. | |||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||
▲ | CamperBob2 3 days ago | parent | prev | next [-] | ||||||||||||||||||||||||||||||||||
Ask the LLMs to vibe code a text editor, and you'll get pretty much what you deserve in return for zero effort of your own. Ask the best available models -- emphasis on models -- for help designing the text editor at a structural rather than functional level first, being specific about what you want and emphasizing component-level test whenever possible, and only then follow up with actual code generation, and you'll get much better results. | |||||||||||||||||||||||||||||||||||
▲ | drusepth 3 days ago | parent | prev [-] | ||||||||||||||||||||||||||||||||||
I think this comment exposes an important point to make: people have different opinions of what "vibe coding" even means. If I were to ask an LLM to vibe code a text editor, I guarantee you I wouldn't get a React app using Supabase -- because I'd give it pages of requirements documentation and tell it not only what I want, but the important decisions on how to make it. Obviously no model is going to one-shot something like a full text editor, but there's an ocean of difference between defining vibe coding as prompting "Make me a text editor" versus spending days/weeks going back and forth on architecture and implementation with a model while it's implementing things bottom-up. Both seem like common definitions of the term, but only one of them will _actually_ work here. |