frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

North Korea 'Likely' Behind $388M Hack of Crypto Exchange Bitget

https://gizmodo.com/north-korea-very-likely-behind-388-million-hack-of-crypto-exchange-bitget-200...
1•MC995•1m ago•0 comments

Excel now supports multiple values in a single cell

https://techcommunity.microsoft.com/blog/excelblog/excel-now-supports-multiple-values-in-a-single...
2•luispa•5m ago•0 comments

Analyzing Frontier Model Progress with My Favourite Game: Prince of Persia

https://blog.priyan.in/2026/09/analyzing-frontier-model-progress-with.html
1•msephton•6m ago•0 comments

Learning the Bitter Lesson of Agent Harnesses [video]

https://www.youtube.com/watch?v=smBOBYZ3-5w
1•tuanlda•11m ago•1 comments

What one vLLM replica on an L40 can carry and how it fails

https://percentes.ai/writing/2026/calibrating-one-l40-configuration/
1•itsveems•11m ago•0 comments

The stupidity and arrogance of GNOME developers

https://felipec.wordpress.com/2024/03/18/stupid-gnome-developers/
1•Muhammad523•11m ago•0 comments

Finally, A True Blue Rose Exists

https://www.sciencenews.org/article/true-blue-rose-pigment-copigment
2•bookofjoe•15m ago•0 comments

Using Claude Code: Spending your effort

https://twitter.com/trq212/status/2103576349499855160
1•mfiguiere•15m ago•0 comments

Cringe and Corny

https://ambrook.com/offrange/culture/on-cringe-and-corny
1•surprisetalk•17m ago•0 comments

Yegge's Paradox

https://willbeddow.substack.com/p/yegges-paradox
1•willbeddow•18m ago•0 comments

Show HN: Piloxa – an MCP server that sends USPS Certified Mail from your AI

https://piloxa.com/for-ai-agents
1•kameir•22m ago•0 comments

Tell HN: Chrome 154 corrupt Fontconfig cache and crash KDE Plasma

1•vdfs•22m ago•0 comments

Too AI; Didn't Read

https://www.tai-dr.com/
3•rfonseca•22m ago•0 comments

The Scarcity Premium: AI made images free; advertising as a solvency bond

https://scarcity.danieldeboulay.com
2•freedmans•24m ago•0 comments

Asteroids named after Tom Lehrer and 'Weird Al' Yankovic

https://science.slashdot.org/story/26/09/24/009238/asteroids-named-after-tom-lehrer-and-weird-al-...
3•MilnerRoute•26m ago•0 comments

Show HN: I read ISO 273 off the standard because the online charts disagree

https://supra.silviaai.dev/reference/iso-273-clearance-holes
1•Seeper•27m ago•0 comments

Anthropic's Claims over Its "Supply Chain Risk" Exclusion by Dow Rejected

https://reason.com/volokh/2026/09/25/anthropics-first-amendment-claim-against-department-of-war-r...
2•theptip•27m ago•2 comments

Show HN: A free resume builder where the AI can rewrite but can't invent

https://nokku.payanai.com/resume-builder
1•payanai•28m ago•0 comments

More than a taken branch per cycle?

https://lemire.me/blog/2026/09/21/more-than-a-taken-branch-per-cycle/
1•surprisetalk•29m ago•0 comments

Of 1,364 four-year colleges, 17 admit fewer than 1 in 10 applicants

https://m.regrok.info/college-admission.html
1•vipin211•31m ago•0 comments

One Shotted

https://www.quarter--mile.com/One-Shotted
1•surprisetalk•31m ago•0 comments

Container Registry on the Edge

https://ewpratten.com/blog/zot-edge/
1•ewpratten•32m ago•0 comments

AI starter pack for the X-curious

https://xstarterpack.com/
1•rmason•33m ago•0 comments

AI will grow beyond our control, we must instill good values before it does

https://blog.kradle.ai/p/ai-will-grow-beyond-our-control-we
2•jamest•38m ago•0 comments

Making `wc` 20x faster with parallel state machines

https://aarol.dev/posts/wc-dfa/
2•ibobev•39m ago•0 comments

Writing Efficient C++ Code

https://asawicki.info/articles/writing_efficient_cpp_code.php
1•ibobev•39m ago•0 comments

Time Measurement in Game Programming

https://asawicki.info/articles/time_measurement_in_game_programming.php
3•ibobev•39m ago•0 comments

2027 Tesla Semi First Drive

https://www.motortrend.com/reviews/2027-tesla-semi-first-drive-review-electric-big-rig
3•fprog•39m ago•0 comments

Build Plugins for Claude

https://claude.com/blog/build-plugins-for-claude
3•pretext•41m ago•0 comments

Commodified Intelligence

https://herecomesthemoon.net/2026/09/commodified-intelligence/
1•dimonomid•42m ago•0 comments
Open in hackernews

Ask HN: Is vibe coding overhyped or am I missing something?

3•tom1337•1y ago
In the recent months / weeks I'll ready so many headlines about "AI will be able to create whole applications easily", "No coders needed, everything will be AI", "Vibe Coding is the future" so I thought I'd try it out. I've been building React Apps and TypeScript Backends for a few years so I am not a total newbie. I wanted to create a simple React Native App which has a Bottom Sheet and display a map. Already at the first step - creating the map - ChatGPT o3 gave me completely invalid code. It used a pretty old version of the library which wasn't compatible with the latest react release. It also got few things with expo vs. "pure" react native wrong. Sometimes the code it threw at me included unused styles or variables.

Am I missing something? How are people seemingly building complex applications if the models struggle with basic things like keeping up to date with releases? What are your experiences?

Comments

codingdave•1y ago
You aren't missing a thing. LLMs produce code that is somewhat correct, but wrong enough that it needs correction. The people promoting "vibe coding" are saying that you can just tell it the concerns, and eventually it will land on something that works. Everyone else codes the corrections themselves. But AI simply does not produce working code without human interventions.

It also does not keep up to date with releases. That is not a valid expectation, and if you are working with leading-edge releases and libraries, LLMs will not help. On the same note, it cannot innovate - it will give you code that fits common conventions. Most of the time this works, but if you are doing truly novel work, its results will frustrate you more often than not.

PaulHoule•1y ago
I have been using AI assistants to help with a project that uses MUI for React. We're using a version of MUI that is a few versions old. It is hugely helpful at figuring out what kind of sx to put on an element or what to put in a theme to get things to look right. It makes mistakes, but if you tell it what you see in the F12 tools, read the manual and think a bit, it does pretty well.

It loves to use deprecated APIs, for instance there are a lot of props that you aren't supposed to use anymore and you're supposed to use the "slots" prop instead. It's not hard to change the code and you could probably ask them to do it, but it's the kind of problem I run into.

With SQLAlchemy I find assistants cannot make up their mind what version of SQLAlchemy they are generating code for. Between talking to my assistants and reading the manual I understand a lot about what changed in different versions, but what I really want is to have it look at my POM/packages.json/pyproject.toml and always give me advice for the versions I am using.

This isn't just an LLM problem, one of the "product ideas I don't have time to work on" in my file is a search engine for programmers that indexes the documentation for the actual versions of all your dependencies, so you are not stuck with Google's brain damaged behavior of returning results from random JDK versions. For instance, "String Javadoc" returns results for JDK 8 and JDK 11 (end of life!),

https://www.google.com/search?client=firefox-b-1-e&channel=e...

whereas a lot of us are developing to JDK 21.

rorylaitila•1y ago
With AI coding it makes projects even faster to get started. Like anything else, total cost will be dominated by long tail problems. Vibe coding can't solve the longest tail problem of "am I building the right thing?" These interstitial problems of code quality you mention will be worked out I think, but it won't matter. To put it the opposite way: if I already know in advance what I need to build to be "successful", the cost of getting code to production was already a minor concern.

That being said, the speed at which I can explore solutions with it is greatly improved. This has a big effect on my motivation to start ideas. In some domains, simply getting more times at bat is the critical path.

cranberryturkey•1y ago
CNBC had a bit about "vibe coding" this morning so its officially lamestream. lol

I use roocode and auto-approve most tasks and then I do a code review at the end. It saves a ton of time but costs a ton of money too

viraptor•1y ago
You're right, but missing some ideas. Sure, it will use an older library sometimes, leave unused variables or make mistakes. But if you're really vibe coding, the question is "if I respond that this doesn't work, will it be fixed?"

If it does get fixed, who cares about the variables or mixed patterns? Vibe coding at this stage is expected to give running code, not clean and maintainable one. And it often does, but it's not there for complex applications yet.

gary17the•1y ago
Vibe coding isn't over-hyped, it is a myth. :)