Live data from Hacker News

Ask HN: Burnout because of ChatGPT?

news.ycombinator.com

191–200 of 205 posts

Re: Ask HN: Burnout because of ChatGPT?

#191
post #11

> 2. I no longer feel the need to hire juniors. This is a short-term positive and maybe a long-term negative. > A lot of stuff I used to delegate to fellow humans are now being delegated to ChatGPT. And I can get the results immediately and at any time I want. I agree that it cannot operate on its own. I still need to review and correct things. I have do that even when working with other humans. The only difference i…

You could've said this about calculators

Re: Ask HN: Burnout because of ChatGPT?

#192
post #145

Earlier quoted context omitted.

>Don't worry about juniors. They'll still be hired because now they'll ramp up faster and produce better code So maybe the seniors should be worried, since we/they don't have much barrier to entry that means much more competition.

If you think writing code is the most important, or even the largest part of being a (senior) software engineer - sure. In my experience it's not though. It's being able to communicate clearly, understanding and translating requirements (sometimes to code), knowing boundaries and saying no, deep understanding of systems and knowing how to debug them. Transitioning from junior to medior (for example) is much more than…

Hm, those are good points, but many of those skills transfer from other fields. So a dev with 10 years experience is still worth a lot more than a new grad, but if somebody with 10 years experience in anything (as opposed to just software) can now be a programmer it's still a much smaller barrier.

Re: Ask HN: Burnout because of ChatGPT?

#193
post #177

Earlier quoted context omitted.

Well i mean unless someone comes up with a theory why this time is different from last time, then isn't my argument just modus tollens? That's pretty much the opposite of a logical fallacy. This time may very well be different, but there would have to be some additional factor and nobody has given a compelling answer as to what that might be.

> Well i mean unless someone comes up with a theory why this time is different from last time, then isn't my argument just modus tollens? That's pretty much the opposite of a logical fallacy. History isn't math, dude. This time is always different from last time. The fallacy is making the claim that it's the same (conveniently ignoring all the differences that make it different). Another mistake is taking an aloof pe…

> (conveniently ignoring all the differences that make it different)

If someone wants to bring up some of those differences by all means. The reason i am unconvinced is because nobody ever does.

> Another mistake is taking an aloof perspective. A lot of changes that "turned out OK" from that perspective were pretty terrible for the people who actually had to live through them.

Sure, i'd agree. But this is moving goal posts quite a bit. If the claim was simply that some industries might experience some levels of short term disruption due to an emerging technology like AI and it will probably suck for the individuals being disrupted - I don't think anybody would disagree. It also wouldn't make AI exactly unique - short term disruptions in various industries due to changing conditions happen all the time.

Re: Ask HN: Burnout because of ChatGPT?

#195

I'm a software engineer and I don't find much value in ChatGPT. It provides a bit of help when writing very specific and short pieces of code for languages I know but don't use often. I'd be curious to have actual data on how other SWEs use it.

I plug it directly into my editor (via https://github.com/gsuuon/llm.nvim) and have it fill out code for me. I write what I want with comments and ask it to fill the rest - if it's straightforward enough it basically always works. I also get it to write commit messages (based on git diff) - though I need to improve my prompt a bit as it gets verbose and I end up rewriting it most of the time. I was working on trying to feed it things like hover and tree-sitter information before I got distracted, but that'd be another power boost as well whenever I get around to it.

Re: Ask HN: Burnout because of ChatGPT?

#196
post #177

Earlier quoted context omitted.

> Well i mean unless someone comes up with a theory why this time is different from last time, then isn't my argument just modus tollens? That's pretty much the opposite of a logical fallacy. History isn't math, dude. This time is always different from last time. The fallacy is making the claim that it's the same (conveniently ignoring all the differences that make it different). Another mistake is taking an aloof pe…

> (conveniently ignoring all the differences that make it different) If someone wants to bring up some of those differences by all means. The reason i am unconvinced is because nobody ever does. > Another mistake is taking an aloof perspective. A lot of changes that "turned out OK" from that perspective were pretty terrible for the people who actually had to live through them. Sure, i'd agree. But this is moving goal…

Every time there was technological advancement the number of jobs for horses increased. For example the invention of the railroad meant they no longer carried the mail long distances, but still the greater economic activity lead to greater demand for horse labor. There may have been some shifts in what jobs they did, but the trend was clear. More technology lead to more horse labor.

And then the automobile was invented. And over the next few decades the demand for horse labor tanked. Now the demand for horse labor is a tiny fraction of what it was a century ago.

Re: Ask HN: Burnout because of ChatGPT?

#197

Earlier quoted context omitted.

You think GPT4 is more effective than learning how to read a manual? Or some of the best SO answers?

Yes, mainly because of the work of experts which went into GPT4. For example, Llama is nowhere close (even if it's pretty good). You can think of GPT4 as a way to flexibly access a lot of knowledge from domain experts. Sure, sometimes that flexibility hallucinates things, but it mostly works and we can verify a large part of it.

[deleted]

Re: Ask HN: Burnout because of ChatGPT?

#198
post #116
post #99

Earlier quoted context omitted.

sorry but these examples are not impressive at all and by no means a representative of any serious programmer's workload. Programmers are paid not to bang out code, but rather to figure out the mess and crap of the existing codebase and how to selectively add one-two lines to change system's behavior and keep stability of the system.

Part of the trick of making the most of LLMs is figuring out what kind of things to apply them to. I wouldn't expect much from them for figuring out gnarly changes in huge existing codebases (at least not yet). But they've been actively encouraging me to write smaller, tighter tools - the good old Unix philosophy - for which they are extremely well suited.

This comment makes me feel as if I've been taking a wrong approach to using LLMs in my day to day work. I haven't been able to get much value out of them as a large majority of the work I do requires a good deal of context with some repo specific problems.

Our existing tooling and helpers lack modularity to begin with. I'm now thinking it would be a better approach to start with having it build smaller tools and patch them together in more useful and interesting ways myself as opposed to being upset that it can't deliver complex, context aware solutions.

Still not buying into the hype that LLMs will replace all software engineers by 2030 due to thinking the nature of our work is not to write code but to solve problems, regardless of the tools we are using, but I definitely see potential productivity gains from using the tool with a different approach to what I have previously attempted.

Re: Ask HN: Burnout because of ChatGPT?

#200

Earlier quoted context omitted.

You think GPT4 is more effective than learning how to read a manual? Or some of the best SO answers?

Yes, even GPT3.5 is better. I am in uni, and LLMs are probably the best teachers I have had the experience to learn from(and I have had some great teachers and professors). They work even better if you feed them the content of a book/manual/documentation as a reference. They do suck at solving problems correctly, however if you give them an incorrect solution and ask them to spot mistakes, or just ask for a general m…

> Yes, even GPT3.5 is better. I am in uni, and LLMs are probably the best teachers... They do suck at solving problems correctly...

The discussion was specifically about LLMs to write software. Not about university essays or articles or exams. Are you claiming GPT3.5 is better at writing bug-free software than the average software engineer?

Post reply on HN