HI version is available. Content is displayed in original English for accuracy.
Advertisement
Advertisement
⚡ Community Insights
Discussion Sentiment
75% Positive
Analyzed from 708 words in the discussion.
Trending Topics
#code#same#agents#stuff#psychosis#something#things#examples#thing#anything

Discussion (10 Comments)Read Original on HackerNews
I mean - none of this is great, but if these are the very worst examples they can find then it feels a bit like scraping the barrel.
The big catastrope for valuations is if supply outruns demand. Videogen has not reached the expected traction and profitability, so now we're talking about 1000x code output as a success metric. But that's not quite the same thing as solving 1000x the number of user problems.
If anything these huge codebases are just creating new problems and atrophying from context rot due to the sheer amount of noise.
My boss is injecting hopium. He barely sleeps compiling massive massive documents which don't answer anything. We literally have a "(LILR Design Language)" spec which when you keep slicing through it, doesn't actually say anything.
It takes 70 seconds to full scroll through it with the fast scroll mechanism, but the whole thing boils down to "basically if it looks good then its good".
And even worse, he is asking for access to the codebase of the product since "I can do 90% of what we need and all the devs need to do is review the PR".
What is this called?
https://ianreppel.org/executive-deterministic-parrots/
Ah yes, the same guy that said implementing lidar with cameras is hard (like Kalman filters aren't a thing). Same guy who spoke positively about Musks engineering talents AFTER he went crazy. That genius...
Basically, I feel like if you are suffering from psychosis, your talent is measured by how much stuff you have memorized, and how much of it you can type on keyboard in a given timeframe. And now that LLMs are doing it for you, you feel worthless.
I remember when I first started learning python, having been in Java/C++ land. It felt like a hack. You could just pip install stuff, import it, dynamically hack things around if you needed to, and make stuff work in much shorter time. I wrote tools that let me write other tools quicker. For example, back before you could ask LLMs to write code, you basically had to google stuff and search for examples. So one of the first things I wrote was essentially web page to api converter. Now I had a tool that programmatically let me pull content from web, which included things like code samples.
I then wrote a tool to search documentation and github, and pull things that were styled as code, using my previous tool, and put them into opensearch, so when i had a question about something, I could search a function in opensearch and see examples.
E.t.c and so on.
Agents these days have replaced a lot of the manual work. But complex tasks, with decision making, repeat loops, and unknown unknowns is still something that agents cant reliably do. Anyone can put together a UI with agents very quickly. But then, if you leave a lot of stuff to the agents and not specify how you want the code written, you are going to get bounded into code that is going to quickly degrade performance, introduce edge case bugs, and so on. Sure, you can have llms fix all that, but to do that automatically is something nobody has done yet.
The real skill in the future is going to be writing agentic programs to work on features for you instead of working on features. You invest time up front to do this, and spend minimal time maintaining. Much in the same way that you invested time into writing OOP code with clean separation in packages and classes, build systems with verification, all so that anyone can come in and write code and have a safe way of testing and committing changes.