Earlier quoted context omitted.
You should start a new session for the code review to make sure the context window is not polluted with the work on implementation itself. At the end of the day it’s an autocomplete. So if you ask “are you sure?” then “oh, actually” is a statistically likely completion.
> You should start a new session for the code review to make sure the context window is not polluted with the work on implementation itself. I'm just a sample size of one, but FWIW I didn't find that this noticably improved my results. Not having to completely recreate all the LLM context neccessary to understand the literal context and the spectrum of possible solutions (which the LLM still "knows" before you clear…
Ask HN: How is AI-assisted coding going for you professionally?
491–500 of 657 posts
Re: Ask HN: How is AI-assisted coding going for you professionally?
#492Earlier quoted context omitted.
I used to think that the people who keep saying (in March 2026) that AI does not generate good code are just not smart and ask stupid prompts. I think I've amended that thought. They are not necessarily lacking in intelligence. I hypothesize that LLMs pick up on optimism and pessimism among other sentiments in the incoming prompt: someone prompting with no hope that the result will be useful end up with useless garba…
That sounds a lot more like confirmation bias than any real effect on the AI's output. Gung-ho AI advocates overlook problems and seem to focus more on the potential they see for the future, giving everything a nice rose tint. Pessimists will focus on the problems they encounter and likely not put in as much effort to get the results they want, so they likely see worse results than they might have otherwise achieved…
Re: Ask HN: How is AI-assisted coding going for you professionally?
#493Earlier quoted context omitted.
Oh good example Claude recently tried to replace a html sanitizer with a custom regex that perfectly fit all our tests as well as the spec I wrote
Agreed, you often dig into what it built and find something insanely over engineered or something that doesn’t match the “style” of your existing code.
Re: Ask HN: How is AI-assisted coding going for you professionally?
#494I work at a very prominent AI company. We have access to every tool under the sun. There are various levels of success for all levels — managers, PMs, engineers. We have cursor with essentially unlimited Opus 4.6 and it’s fundamentally changed my workflow as a senior engineer. I find I spend much more time designing and testing my software and development time is almost entirely prompting and reviewing AI changes. I’…
Re: Ask HN: How is AI-assisted coding going for you professionally?
#495Earlier quoted context omitted.
You're trusting AI to trade with your real money?
Not a lot of money because I haven't built enough confidence but yes it's the ultimate test of can it do economically useful work
Re: Ask HN: How is AI-assisted coding going for you professionally?
#496I develop prototypes using Claude Code. The dead boring stuff. "Implement JWT token verification and role checking in Spring Boot. Secure some endpoints with Oauth2, some with API key, some public." C# and Java are so old, whatever solutions you find are 5 years out of date. Having an agent implement and verify the foundation is the perfect fit. There's no design, just ever-chaning framework magic. I'd do the same "G…
It's kind of funny to see you saying "whatever solution you find are 5 years out of date", while at the same time saying that the tool that was taught using those same 5 years out of date solutions as a part of its training data is actually good. Terrible idea if you ask me. I'd suggest checking the official docs next time around, or at the very least copying them into the context window.
Re: Ask HN: How is AI-assisted coding going for you professionally?
#497We're using Augment Code heavily on a "full rewrite of legacy CRM with 30 years of business rules/data" Laravel project with a team size of 4. Augment kind of became impossible to avoid once we realized the new guy is outpacing the rest of us while posessing almost no knowledge of code and working fully in the business requirements domain, extracting requirements from the customer and passing them to AI, which was en…
Why GPT 5.1?
Re: Ask HN: How is AI-assisted coding going for you professionally?
#498In my domain (signal processing, high load systems, embedded development, backend in Go) it doesn’t do great for coding tasks, and I’m very opposed to giving it lead to create files, do mass edits, et cetera. I found it to fail even on recent versions of Go, imagining interfaces, not knowing changes in some library interfaces (pre-2024 changes at least). Both ChatGPT and Claude failed to create proper application for me (parsing incoming messages and drawing real time graphics), both getting stucked at some point. Application worked more or less, but with bugs and huge performance issues.
I found it useful to quickly create skeletons for scripts/tools, that I can then fill up with actual logic, or making example of how a library is used.
So there is usability for me, it replaced stackoverflow and sometimes reading actual documentation.
I own a few repositories of our system, and contribution guides I create explicitly forbid use of LLMs and agents to create PRs. I had some experience with developers submitting vibe coded PRs and I do not want to waste my time on them anymore.
Re: Ask HN: How is AI-assisted coding going for you professionally?
#499Haven't seen this mentioned yet, but the worst part for me is that a lot of management LOVES to use Claude to generate 50 page design documents, PRDs, etc., and send them to us to "please review as soon as you can". Nobody reads it, not even the people making it. I'm watching some employees just generate endless slide decks of nonsense and then waffle when asked any specific questions. If any of that is read, it is b…
Re: Ask HN: How is AI-assisted coding going for you professionally?
#500Earlier quoted context omitted.
IME one thing that makes this choice a very difficult one is oncall responsibilities. The thing that incentivizes code owners to keep their house in order is that their oncall experience will be a lot better. And you're the only one who is incentivized to think this way. Management certainly doesn't care. So by delegating the choice to management you're signing up for a whole bunch of extra work in the form of sleepl…
If someone is making the kind of mistakes that cause oncall issues to increase, put that person on call. It doesn't matter if they can't do anything, call them every time they cause someone else to be paged. IME too many don't care about on call unless they are personally affected.
the problem is that identifying the root cause can take a lot of time, and often the "mistakes" aren't clearly sourced down to an individual.
So someone oncall just takes the hit (ala, waking up at 3am and having to do work). That someone may or may not be the original progenitor of said mistake(s).