frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Can you help reconcile my first/second-hand LLM Experience with HN's Experience?

2•didigamma•1h ago
I've made an account as a long-time lurker because I am hoping y'all could help reconcile my experience in my company/team with what seems to be the wise HN consensus around LLMs.

My Background (Software Engineer II):

I've been writing software professionally for >10 years and grew up coding games/websites for fun; did my undergraduate in C.S./C.E., and did some time in ML research and such. Right now I'm on the back-end/DevOps team - my teammates are all Senior Staff/Principal Engineer (one is almost double my age lol!) and we have a pretty standard tech stack (NodeJS, AWS, C++, etc) with 95% brownfield development at a large but not FAANG-like company. I've had my current job for >6 years and out of ~20 in our department I'm the third newest!

I'd say I'm a pretty stereotypical engineer AKA "a total nerd" with private side projects mostly around implementing computational geometry or procedural simulation papers in Rust, sometimes working on a lil website tool we use daily. But I mostly spend my free time with my people or on other life/hobby things like learning math/physics. So I have an average and home-y life, albeit a lucky one.

Current LLM Vibe:

Our company mandated LLM usage awhile ago and provided us Cursor/Claude (Opus 4.6 these days). We have all learned to use it for normal daily dev tasks. Our front-end team has gone LLM-maximalist and seem to be enjoying it. I think they've sped up alot, up to 20-50%. One other back-end/integration team tried that (they have quite good test coverage), but it broke too much and used too many tokens and they had to walk a lot of that back from what I can tell.

Our team is a bit more conservative and our processes are mostly the same as before but with a bit more emphasis on clean code than before because slop can be a PITA to clean up later. All the senior engineer folk I work with (including maybe the best engineer, that has used LLMs for years) are pretty confident saying that you have to micro-manage Cursor/Claude to get good results. My experience is the same, and I've actually been frustrated enough recently that I trust it even less. Maybe part of it is that I don't produce too much code in a week (few hundred lines? not including tests?) and we've found that manual code review is still much required.

My Problem:

I'm concerned about how far off the perspective is toward LLM usage is in my job vs here on HN.

On HN, the smart opinion is that it definitely has already made most of us developers obsolete. Reading the comments of any LLM-related posts, it's all talking about how LLMs have already replaced all but the most complex of technical work and "but muh taste & system design" is just sad copium until the next model in a few months is released. I don't even disagree with this conclusion. It makes sense - if billions of capital had been thrown at any problem, we'd probably see a good dent in it. But my day-to-day experience is far enough away from this opinion that I'm afraid that I'm out of touch or in denial or we're all such mediocre engineers compared to the HN crowd that we can't even learn how to use this stuff properly.

I feel like pedestrian me and the elite engineers of this forum are experiencing two different things, and I want to understand why. The difference is honestly like whiplash.

Could you all help point out what's going on? Thank you :)

Comments

Forgeties79•1h ago
> On HN, the smart opinion is that it definitely has already made most of us developers obsolete.

Sounds like you’ve already made up your mind, though I’ve seen plenty of smart people completely contradict this.

didigamma•24m ago
Maybe I should have written "upvoted" or "consensus" instead of "smart". I might be steel-manning a bit too hard.

But since I'm so motivated to not believe my job is becoming obsolete, I wanted to present the other side well.

starkparker•1h ago
some models and harnesses are good at some things and bad at others. some HN users are good at using some models and harnesses and bad at using others. some engineers at your company understand what tools to use for their work and others don't. some programming languages are better resourced to support agents than others.

most generative tools are good at tasks and bad at architecture. effective QA of generated code is still at an infant stage no matter what anyone claims, much less automated effective QA; teams that care deeply about getting things right the first time will have a worse time with it on the median than teams that don't.

don't trust the code it generates, but "don't trust" doesn't mean discard it. don't trust the architecture it invents for a problem, it can't reason at that level, it's literally aping the background noise of the entire internet and building things that are dead-center mediocre.

there's not enough specifics in your wall of text to help me point out what's going on in any useful detail, though.

i will say that HN users are more likely to be ecstatic at building an MVP that they never have to support; the scale of a company where you have 6 years experience but are still new on your team is bigger than where most of HN lives and works. the dissonance would be the same if it was 10 years ago, LLMs didn't meaningfully exist, and you'd be on here asking HN why some of these so-called lean teams everyone's posting about all of a sudden seem to be so much more productive than when your boss at BiggerCorp tried to streamline processes and then got yelled at by CS, sales enablement, and marketing.

didigamma•25m ago
Thanks for the perspective! I guess I don't interact with the wider dev world IRL since almost all my people are in non-tech fields.

> there's not enough specifics in your wall of text to help me point out what's going on in any useful detail, though.

Sorry, wasn't sure what was most valuable to people reading this. Some examples:

1. It feels like getting quality code (which our team cares about alot) is hard to get out of LLMs if it's not just piping data around or copying an example I explicitly point to. It doesn't get the scale to build with - often it does weirdly generic code that's not really relevant, or wants to write alot of boilerplate that's not useful (e.g. spamming tests).

2. It hallucinates documentation often enough I've gone back to hunting for source documentation myself (e.g. AWS details).

3. It will flag false positives on junior-engineer "problems" when I request a code review (if there's data being mutated in two different places with different conditions, chances are it'll not understand it the first time).

4. It'll get stuck on nonsense (the "thinking" output makes me cringe) and try to go in random directions if I ask it to debug a problem. I don't think I've had it actually find the actual problem once (but it has found a couple other unrelated problems which is nice).

5. In Plan/Build mode, it'll not follow a plan. It also seems to oddly dodge writing secure code for auth-related stuff (if I hadn't have read through OAuth myself, I wouldn't have caught it).

> tried to streamline processes and then got yelled at by CS, sales enablement, and marketing.

Yes haha! And a few other departments besides.

Anyways thanks for your time :)

digitaltrees•2m ago
I think a lot of people are excited at what feels like insane new velocity and tempted to ignore the hard learned lessons of good code vs bad code.

Here is a real conversation. “I built this app so fast it feels amazing, but then I looked at the code and it had a 6000 line class with one function that was 3000 lines of if statements”

“Oh ya that’s bad. You definitely need to refactor that”

“I thought that, but I wonder if it’s actually better to have a big class in a single file because that’s easier for the AI to understand than if it was in multiple files”

“Umm ok but do you even understand the 3000 line function? Couldn’t that be broken into better code that if/else soup?”

That conversation went on like that for a while.

Meanwhile, I have settled on a process where I built a framework that has good architecture built in and my version of using AI is essentially enforcing compliance with my architecture and coding patterns.

When cursor moved to an Agent view to remove human review I built my own IDE to ensure I never have to adopt stupid coding practices. I used AI to build it and had to constantly stop the AI from doing stupid stuff.

I am happy to share patterns and tools with you because AI can be a massive accelerator and produce good code when managed effectively but it requires a commitment to good code and willingness to ignore where the industry hype is right now.

Mona Lisa's Identity Established Beyond Doubt (2008)

https://www.uni-heidelberg.de/press/news/press552e.html
1•thunderbong•21s ago•0 comments

Microsoft fires head of Israeli subsidiary over surveillance of Palestinians

https://www.pcgamer.com/gaming-industry/microsoft-fires-head-of-israeli-subsidiary-and-other-mana...
1•donohoe•21s ago•0 comments

Floci: Light, fluffy, and always free – The AWS Local Emulator alternative

https://github.com/floci-io/floci
1•linkdd•42s ago•0 comments

A consistent pattern of lying': trial exposes what insiders think of Sam Altman

https://www.theguardian.com/us-news/2026/may/11/musk-v-openai-altman-trial
1•andsoitis•1m ago•0 comments

Instructure Security Incident Update

https://www.instructure.com/incident_update
2•danso•10m ago•1 comments

Vocal Mirror voice self-analysis tool: Talk to record, Quiet to Listen

https://danverbraganza.com/tools/vocal-mirror
1•nvader•11m ago•0 comments

Richard Bartle's Academic Papers on MUDs

https://mud.co.uk/richard/papers.htm
1•mindcrime•13m ago•0 comments

Show HN: Wispr Flow but free, 100% on-device, and open source (macOS)

https://digimata.github.io/parrot/
1•dremnik•14m ago•0 comments

Cisco CPO predicts AI will have built majority of their products by end of 2027

https://www.sdxcentral.com/analysis/cisco-cpo-predicts-ai-will-have-built-majority-of-the-vendors...
1•oavioklein•20m ago•0 comments

Ask HN: How to get started in electronic music

2•A_Random_Nerd•24m ago•2 comments

DESI Completes Planned 3D Map of the Universe and Continues Exploring

https://noirlab.edu/public/news/noirlab2610/
1•mooreds•26m ago•0 comments

Optimization of Elevator Standby Scheduling Strategy in Smart Buildings

https://www.mdpi.com/2571-5577/8/5/132
2•swq115•30m ago•1 comments

Police shut down reboot of Crimenetwork marketplace, arrest admin

https://www.bleepingcomputer.com/news/security/police-shut-down-reboot-of-crimenetwork-marketplac...
3•billybuckwheat•30m ago•0 comments

How do the most prolific people produce so much? (2023)

https://www.commonreader.co.uk/p/how-do-the-most-prolific-people-produce
1•herbertl•31m ago•0 comments

METR can barely measure Claude Mythos – 50% task horizon now exceeds 16 hours

https://hugonomy.com/news.html
1•GlyphWeaver_a•32m ago•0 comments

A paid JSON Schema validation API using x402 micropayments

https://github.com/garyedgington/project_x402
1•garyedgington•34m ago•0 comments

Film Cue – a Sushi Go-style card game about making movies

https://filmcuegame.com/
1•tinch•41m ago•0 comments

Show HN: Open-source GEO auditor (no signup)

https://www.freeaiseoaudit.com/
2•ICodeSometimes•46m ago•0 comments

Show HN: Personal Trainer – Lift, share plans, and rank with friends

https://mobile-squad.com/#personal-trainer
3•erwanalliaume•47m ago•0 comments

The Morse Code Hack That Made an AI Agent Spend $200k [video]

https://www.youtube.com/watch?v=UQ4pSVS_mN0
1•CharlesW•48m ago•0 comments

AI vs. Open Source, Part 1: The Empty Grant

https://srikanth.sastry.name/ai-vs-open-source-the-empty-grant/
1•srikanthsastry•48m ago•0 comments

A faithful LLM-wiki implementation with Wikipedia-style web browsing

https://github.com/hzw1199/CyberMe-LLM-Wiki
1•hzw1199•48m ago•1 comments

What were scanners like in the 80s? – 1988 IBM PageScanner 3119 [video]

https://www.youtube.com/watch?v=IhMzwISbIAo
2•CharlesW•50m ago•1 comments

A throbbing heart at the thought of AI

1•ish099•53m ago•1 comments

Claude Platform on AWS

https://aws.amazon.com/claude-platform/
2•matrixhelix•53m ago•0 comments

Claude Platform on AWS

https://claude.com/blog/claude-platform-on-aws
5•matrixhelix•54m ago•1 comments

Show HN: Compare Similar Audio Tracks

https://w.merkoba.com/trackcheck/
1•madprops•55m ago•0 comments

How Rockstar fit an entire city into PlayStation 2 memory [video]

https://www.youtube.com/watch?v=cIbCxbrBCys
2•CharlesW•59m ago•0 comments

Scientists Gave 'Aggressive' Fish Psychedelic Drugs. A Breakthrough Came Next

https://www.404media.co/fish-psilocybin-magic-mushrooms-study-psychedelics/
1•gmays•1h ago•0 comments

Darkest Dungeon devs will "never, ever" use GenAI to replace narrator Wayne June

https://www.rockpapershotgun.com/his-voice-and-delivery-was-human-darkest-dungeon-developers-will...
1•latexr•1h ago•0 comments