Live data from Hacker News

Ask HN: With all the AI hype, how are software engineers feeling?

news.ycombinator.com

21–30 of 209 posts

Re: Ask HN: With all the AI hype, how are software engineers feeling?

#21
its really fun, like learning to code again to see what all can be done, an how much more power is available at your fingertips.

what sucks though is that its super inconsistent whether the thing is gonna throw an error and ruin the flow, whether thats synchronous or async.

Re: Ask HN: With all the AI hype, how are software engineers feeling?

#22
Once in a while I save ~10 minutes by using AI. About as often as embarrassing myself by having to admit that my primary source was an AI while researching some topic.

The main thing that changed is that the CTO is in more of a "move fast, break things"-mood now (minus the insane silicon valley funding) because he can quickly vibe-code a proof-of-concept, so development gets derailed more often.

Re: Ask HN: With all the AI hype, how are software engineers feeling?

#25
post #21

its really fun, like learning to code again to see what all can be done, an how much more power is available at your fingertips. what sucks though is that its super inconsistent whether the thing is gonna throw an error and ruin the flow, whether thats synchronous or async.

I'm trying to use it to do things I've never done before (ie UI stuff when I've mostly been a backend SRE type).

I like that it makes it easy to learn new things by example.

I don't like that I have no idea if what I'm learning is correct (or at least recent / idiomatic), so everything I see that's new, I have to validate against other resources.

I also don't really know if it's any different from "tutorial hell".

Re: Ask HN: With all the AI hype, how are software engineers feeling?

#27
As a software engineer: the only impact the AI bubble has on me is the time it takes to explain what's a stake to less tech-savvy colleagues. Zero consequences on my actual job, excepet being pissed of each time a promising project "pivots to AI" and starts shoehorning it everywhere.

As a person I'm increasingly worried about the consequences of people using it, and of what happens when the bubble bursts.

Re: Ask HN: With all the AI hype, how are software engineers feeling?

#29
My company is still hiring engineers like it was doing before. About the work itself I can say LLMs are good with PoC or new projects, I can't say the same about already existing codebase. For me it's a good tool, but not THE solution. Lately I'm making a lot of AWS Serverless configurations with Cloudformation and LLMs hallucinate a lot for that. At this point, I always verify if it exists in the doc or not, because it spits out stuff that doesn't exist at all.

Re: Ask HN: With all the AI hype, how are software engineers feeling?

#30
I'm really enjoying using Claude Code. There is a learning curve, and you have to set your project up in a way that helps these agents work better, but when you do it's a massive productivity boost with certain stuff. It's generated some decent looking landing pages and other UI stuff that I would have otherwise spent multiple hours on. It can even build some backend services that I would have also spent a couple hours on. This time adds up, which lets me see my family and friends more and that's the most important thing to me.

I don't really see it replacing us in the near future though, it would be almost useless if I wasn't there to guide it, write interfaces it must satisfy, write the tests it uses to validate its work etc. I find that projects become highly modularised, with defined interfaces between everything, so it can just go to work in a folder satisfying tests and interfaces while I work on other stuff. Architecting for the agents seems to lead to better design overall which is a win.

I'm just writing crud apps though, I imagine it's less useful in other domains or in code bases which are older and less designed for agents.

My next experiment is designing a really high level component library to see if it can write dashboards and apps with. It seems to struggle with more interactive UI's as opposed to landing pages.

Post reply on HN