frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sofle Pico Split Keyboard

https://www.soflepico.com/
1•igoose1•1m ago•0 comments

Evaluating LLM-generated code for domain-specific languages

https://www.sciencedirect.com/science/article/abs/pii/S0927025626003587
1•librasteve•5m ago•1 comments

SSL Certificate Expiry

https://medium.com/@thesuperrepemail/ssl-certificate-expiry-1fa4d69246bc
1•rajsuper123•9m ago•1 comments

Show HN: Bananagrams Tiles Word Game Online

https://www.bananagrams.org
1•code-less•15m ago•0 comments

Ask HN: Temporal Awareness in LLM?

1•Pamar•15m ago•0 comments

Anthropic makes Fable 5's invisible safeguards visible after backlash

https://xcancel.com/ClaudeDevs/status/2064949876463645026
1•frb•16m ago•0 comments

Run OSINT investigations from chat via MCP/OpenClaw

https://github.com/snuri00/osint-mcp
1•sn001•18m ago•0 comments

The DIY trap: I see founders spending $6k to save $240/year. Can we talk?

https://www.indiehackers.com/post/the-diy-infrastructure-trap-i-see-founders-spending-6k-to-save-...
1•DharmendraJago•19m ago•0 comments

CountryLink – guess what two random countries have in common across 8 categories

https://learn.enviro.org.au/countrylink.php
1•symonssss•19m ago•0 comments

Only One Input – Social media with the social part removed

https://onlyoneinput.com/
1•smyczek•19m ago•0 comments

Why AI hasn't replaced software engineers, and won't

https://www.normaltech.ai/p/why-ai-hasnt-replaced-software-engineers
1•trueduke•20m ago•0 comments

Streaming HTML

https://olliewilliams.xyz/blog/streaming-html/
1•thunderbong•20m ago•0 comments

Discussion: Fable 5 is weak at flagging prompts correctly

1•eckelhesten•21m ago•0 comments

Stack Overflow for Agents

https://agents.stackoverflow.com
1•CommonGuy•24m ago•0 comments

Quarks Are Time

https://as.oooooooooo.se/paper/
2•mbinatorom•29m ago•1 comments

Dutch mass claim states that Steam makes customers pay too much for games

https://gameclaim.consumercompetitionclaims.com/en/
2•HelloUsername•29m ago•0 comments

Bootproof – runs a repo and signs proof of whether it booted

https://github.com/bootproof/bootproof
1•bootproof•30m ago•0 comments

LumoSQL – Add features to SQLite for security, privacy, speed and measurability

https://lumosql.org/
1•smartmic•31m ago•0 comments

The Largest Number Representable in 64 Bits

https://www.mdpi.com/1099-4300/28/5/494
1•rowbin•31m ago•0 comments

Show HN: Conduit, a local-first SSH, Mosh and SFTP client for Android

https://github.com/gwitko/Conduit
1•gwitko•34m ago•0 comments

The number of possible chess games exceeds the number of atoms in the universe

https://spacedaily.com/d-the-total-number-of-possible-chess-games-is-so-large-that-it-exceeds-the...
1•arizen•36m ago•0 comments

Sweet Jeebus, macOS 27 Golden Gate Removes the Dumb Icons from Menu Items

https://daringfireball.net/2026/06/macos_27_golden_gate_removes_the_dumb_icons_from_menu_items
3•epaga•36m ago•0 comments

Accusations of 'AI Slop' Don't Screen for AI Text

https://arxiv.org/abs/2606.12073
3•igortru•38m ago•0 comments

Omarchy on Asahi creator lost access to his GitHub account two weeks ago

https://twitter.com/dhh/status/2064969863840276732
2•raybb•41m ago•0 comments

Local firewall for AI agents – blocks secret leaks and cuts API costs by 40–70%

https://github.com/ashp15205/guardian-runtime
3•ashp15•41m ago•0 comments

Open-source Linux tray app for tracking Claude Code and Codex usage

https://github.com/openusage-community/openusage
1•symonbaikov•42m ago•1 comments

Hate using Granola? Here is a free local version

https://github.com/emberscribe/hobnob
1•polemos•45m ago•0 comments

Publication trends for any academic journal

https://journaltrends.com/
1•ilreb•54m ago•0 comments

A civilization inside a GitHub repo. Issues are laws, ticks every 4h

https://github.com/ordinary9843/gitizens
2•gitizens•56m ago•0 comments

GitLab Is Down

https://status.gitlab.com
8•shrikrishna•1h ago•4 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. :)