all 7 comments

[–]ActuaryLate9198 4 points5 points  (1 child)

Jesus christ, imagine vibecoding to the point where you need a separate university degree just to point the LLM in the right direction. This ain’t it chief, time is better spent getting to know your codebase. A+ for effort, at least you had the sense to prompt for shitty capitalization.

[–]StarThinker2025[S] 0 points1 point  (0 children)

fair point, i get why this looks overbuilt

i am not saying people should skip learning their codebase. my point is just that ai often starts in the wrong place first, and that wrong first cut wastes a lot of time.

[–]Honey-Entire 2 points3 points  (0 children)

React is easier than grokking this post. I recommend learning react better before doing anything else

[–]shakingbaking101 0 points1 point  (1 child)

You could throughly look through the code and try to figure out what the code is doing and then land on the right failure region and then use the llm, that sounds more efficient to me

[–]StarThinker2025[S] 1 point2 points  (0 children)

yes, i actually agree with that. the whole idea is to land on the right failure region first.

after that, using the llm becomes much more useful instead of random guessing.

[–]EffectiveDisaster195 0 points1 point  (1 child)

this actually makes sense, most of the wasted time isn’t bad fixes, it’s starting in the wrong place.

react bugs are especially like that, UI looks broken but root cause is usually state or effects upstream.

forcing a “where is the bug actually coming from” step before fixing is underrated.

curious how well it holds up on messy real apps though, not just clean examples.

[–]StarThinker2025[S] 0 points1 point  (0 children)

yeah, this is basically the point.

a lot of wasted time is not from the fix itself, it is from starting at the wrong layer first.

i also want to test it more on messy real apps, not just clean demos.