Earlier quoted context omitted.
I'm pretty good at prompting and I successfully use Perplexity (mostly with Claude Sonnet 4) to develop concepts, sometimes with the same session expanded over several days. I think the user interface is much superior over Claude.ai. My hope was that the newer Claude Opus 4.1 would be much better in solving complicated coding tasks, which doesn't seem to be the case. For this I had to subscribe to claude.ai. Actually…
I'll be more detailed in my second reply. 1) Your original post asks a lot if not too much out the LLM, the expectation you have is too big, to the point that to get anywhere near decent results you need a super detailed prompt (if not several spec documents) and your conclusion stands true: it might be faster to just do it manually. That's the state of LLMs as of today. Your post neither hints at such detailed and l…
Survey: a third of senior developers say over half their code is AI-generated
351–360 of 388 posts
Re: Survey: a third of senior developers say over half their code is AI-generated
#352Earlier quoted context omitted.
Yeah I’m still not more productive. Maybe 10% more. But it alleviates a lot of mental energy, which is very nice at the age of 40.
I find AI is most useful at the ancillary extra stuff. Things that I'd never get to myself. Little scripts of course, but more like "it'd be nice to rename this entire feature / db table / tests to better match the words that the business has started to use to discuss it". In the past, that much nitpicky detail just wouldn't have gotten done, my time would have been spent on actual features. But what I just described…
Re: Survey: a third of senior developers say over half their code is AI-generated
#353Re: Survey: a third of senior developers say over half their code is AI-generated
#354Earlier quoted context omitted.
You should look up intellitest and reshaper test generator. Products exist for this.
Maybe you should have brought that up earlier instead of acting smug and burying the lede? It's also pretty telling that you didn't elaborate this further and kept your comment short. What you should have said is that some parameterized test generators do automated white box testing where they look at your code similar to a fuzzer and try to find the test cases automatically. Your first link is literally just setting…
I thought people were generally competent within the areas they discuss and are aware of the tooling within their preferred ecosystem. I apologize if that is not the case.
Re: Survey: a third of senior developers say over half their code is AI-generated
#355I’m not surprised. AI tools have become such a huge time saver. I use them a lot too, but I still double check everything to keep quality high. I read an article on finance gossips called “The Rise of AI in Banking: Friend or Foe”, and it really put this into perspective. AI’s growth in finance shows how quickly it is reshaping industries, so seeing devs rely on AI for half their code makes total sense. Like in banki…
Trust, ethics and transparency are at all time lows in every corner of every capitalist industry imo
I don't know how anyone could look at the current state of things and think AI isn't being positioned to gut employment across many industries
Naive, childish and short sighted mentality imo
Re: Survey: a third of senior developers say over half their code is AI-generated
#356Earlier quoted context omitted.
Yeah I’m still not more productive. Maybe 10% more. But it alleviates a lot of mental energy, which is very nice at the age of 40.
Strangely I've found myself more exhausted at the end of the week and I think it's because of the constant supervision necessary to stop Claude from colouring outside the lines when I don't watch it like a hawk. Also I tend to get more done at a time, it makes it easier to get started on "gruntwork" tasks that I would have procrastinated on. Which in turn can lead to burnout quite quickly. I think in the end it's jus…
Welcome to management. Computers and code are easy. People and people wannabes like LLMs are a pain.
Re: Survey: a third of senior developers say over half their code is AI-generated
#357Personally for me it's 20 years of experience / Python / Copilot / 85% positive experience.
Re: Survey: a third of senior developers say over half their code is AI-generated
#358Earlier quoted context omitted.
> it saves me time in looking up the documentation I have a Perplexity subscription which I heavily use for such purpose, just asking how something works or should be used, with a response just on the point and with examples. Very useful indeed. Perplexity gives me access to Claude Sonnet 4 w/o Thinking which I consider great models, and it can also generate decent code. My intention was to find out how good the rece…
I have both, and Perplexity is much more like a search engine than a chat companion (or at least that's how I use it). I like both, though.
Re: Survey: a third of senior developers say over half their code is AI-generated
#359Earlier quoted context omitted.
That's funny. I remember using interactive debuggers all the time back in the '90s, but it's been a long time since I've bothered. Logging, reading, and thinking is just... easier.
Really ? I find myself thinking the opposite. My program always runs in debug mode, and when there's some issue I put a breakpoint, trigger it, and boom I can check what is wrong. I don't need to stop the program, insert a new line to print what i _guess_ is wrong, restart the program from scratch etc. Properly debugging my stack is probably one of the first things I setup because I find it way less tedious. Like, fo…
After that I went to work for Google, building distributed software running across many machines in a datacenter, and I have no idea how you would hook up a debugger even if you wanted to. It's all logs all the time, there.
By the time that was over, I was thoroughly accustomed to logging, and attaching a debugger had come to seem like a nuisance. Since then I've mostly worked on compilers, or ML pipelines, or both: pure data-processing engines, with no interactivity. If I'm fixing a bug, I'm certainly also writing a regression test about it, which lends itself to a logging-based workflow. I don't mind popping into gdb if that's what would most directly answer my question, but that only happens a couple of times a year.
Re: Survey: a third of senior developers say over half their code is AI-generated
#360Earlier quoted context omitted.
Interactive debuggers and printf() are both completely valid and have separate use-cases with some overlap. If you're trying to use, or trying to get people to use, exclusively one, you've got some things to think about.
printf() users in this thread are very proud of their own ignorance