frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Eight years of wanting, three months of building with AI

https://lalitm.com/post/building-syntaqlite-ai/
160•brilee•3h ago

Comments

PaulHoule•3h ago
Note I believe this one because of the amount of elbow grease that went into it: 250 hours! Based on smaller projects I’ve done I’d say this post is a good model for what a significant AI-assisted systems programming project looks like.
simondotau•1h ago
This essay perfectly encapsulates my own experience. My biggest frustration is that the AI is astonishingly good at making awful slop which somehow works. It’s got no taste, no concern for elegance, no eagerness for the satisfyingly terse. My job has shifted from code writer to quality control officer.

Nowhere is this more obvious in my current projects than with CRUD interface building. It will go nuts building these elaborate labyrinths and I’m sitting there baffled, bemused, foolishly hoping that THIS time it would recognise that a single SQL query is all that’s needed. It knows how to write complex SQL if you insist, but it never wants to.

But even with those frustrations, damn it is a lot faster than writing it all myself.

DareTheDev•1h ago
This is very close to my experience. And I agree with the conclusion I would like to see more of this
bvan•1h ago
This a very insightful post. Thanks for taking the time to share your experience. AI is incredibly powerful, but it’s no free-lunch.
Aurornis•1h ago
Refreshing to see an honest and balanced take on AI coding. This is what real AI-assisted coding looks like once you get past the initial wow factor of having the AI write code that executes and does what you asked.

This experience is familiar to every serious software engineer who has used AI code gen and then reviewed the output:

> But when I reviewed the codebase in detail in late January, the downside was obvious: the codebase was complete spaghetti14. I didn’t understand large parts of the Python source extraction pipeline, functions were scattered in random files without a clear shape, and a few files had grown to several thousand lines. It was extremely fragile; it solved the immediate problem but it was never going to cope with my larger vision,

Some people never get to the part where they review the code. They go straight to their LinkedIn or blog and start writing (or having ChatGPT write) posts about how manual coding is dead and they’re done writing code by hand forever.

Some people review the code and declare it unusable garbage, then also go to their social media and post how AI coding is completely useless and they’re not going to use it for anything.

This blog post shows the journey that anyone not in one of those two vocal minorities is going through right now: A realization that AI coding tools can be a large accelerator but you need to learn how to use them correctly in your workflow and you need to remain involved in the code. It’s not as clickbaity as the extreme takes that get posted all the time. It’s a little disappointing to read the part where they said hard work was still required. It is a realistic and balanced take on the state of AI coding, though.

vasco•29m ago
Those extreme takes are taken mostly for clicks or are exaggerated second hand so the "other side's" opinion is dumber than it is to "slam the naysayers". Most people are meh about everything, not on the extremes, so to pander to them you mock the extremes and make them seem more likely. It's just online populism.
libraryofbabel•22m ago
Agree. This is such a good balanced article. The only things that still make the insights difficult to apply to professional software development are: this was greenfield work and it was a solo project. But that’s hardly the author’s fault. It would however be fantastic to see more articles like this about how to go all in on AI tools for brownfield projects involving more than one person.

One thing I will add: I actually don’t think it’s wrong to start out building a vibe coded spaghetti mess for a project like this… provided you see it as a prototype you’re going to learn from and then throw away. A throwaway prototype is immensely useful because it helps you figure out what you want to build in the first place, before you step down a level and focus on closely guiding the agent to actually build it.

The author’s mistake was that he thought the horrible prototype would evolve into the real thing. Of course it could not. But I suspect that the author’s final results when he did start afresh and build with closer attention to architecture were much better because he has learned more about the requirements for what he wanted to build from that first attempt.

airstrike•14m ago
[delayed]
zahlman•12m ago
I feel like recently HN has been seeing more takes like this one and at least slightly less of the extremist clickbaity stuff. Maybe it's a sign of maturity. (Or maybe it's just fatigue with the cycle of hyping the absolute-latest model?)
yojo•8m ago
+1

I’ve been driving Claude as my primary coding interface the last three months at my job. Other than a different domain, I feel like I could have written this exact article.

The project I’m on started as a vibe-coded prototype that quickly got promoted to a production service we sell.

I’ve had to build the mental model after the fact, while refactoring and ripping out large chunks of nonsense or dead code.

But the product wouldn’t exist without that quick and dirty prototype, and I can use Claude as a goddamned chainsaw to clean up.

On Friday, I finally added a type checker pre-commit hook and fixed the 90 existing errors (properly, no type ignores) in ~2 hours. I tried full-agentic first, and it failed miserably, then I went through error by error with Claude, we tightened up some exiting types, fixed some clunky abstractions, and got a nice, clean result.

AI-assisted coding is amazing, but IMO for production code there’s no substitute for human review and guidance.

billylo•1h ago
Thank you. The learning aspect of reading how AI tackles something is rewarding.

It also reduces my hesitation to get started with something I don't know the answer well enough yet. Time 'wasted' on vibe-coding felt less painful than time 'wasted' on heads-down manual coding down a rabbit hole.

rokob•1h ago
> architecture is what happens when all those local pieces interact, and you can’t get good global behaviour by stitching together locally correct components

This is a great article. I’ve been trying to see how layered AI use can bridge this gap but the current models do seem to be lacking in the ambiguous design phase. They are amazing at the local execution phase.

Part of me thinks this is a reflection of software engineering as a whole. Most people are bad at design. Everyone usually gets better with repetition and experience. However, as there is never a right answer just a spectrum of tradeoffs, it seems difficult for the current models to replicate that part of the human process.

4b11b4•1h ago
Great write-up with provenance
myultidevhq•1h ago
The 8-year wait is the part that stands out. Usually the question is "why start now" not "why did it take 8 years". Curious if there was a specific moment where the tools crossed a threshold for you, or if it was more gradual.
bdcravens•59m ago
For me, the amount of tedium that comes with any new project before I can get to the "good stuff" is a blocker. It's so easy to sit down with excitement, and then 3 hours later, you're still wrestling with basic dependencies, build pipelines, base CSS, etc.
8organicbits•30m ago
Have you tried using starting templates for projects? For many platforms there are cookiecutters or other tools to jump over those.
The_Goonies1985•1h ago
The author mentions a C codebase. Is AI good at coding in C now? If so, which AI systems lead in this language?

Ideally: local; offline.

Or do I have to wrestle it for 250 hours before it coughs up the dough? Last time I tried, the AI systems struggled with some of the most basic C code.

It seemed fine with Python, but then my cat can do that.

zer00eyz•1h ago
This article is describing a problem that is still two steps removed from where AI code becomes actually useful.

90 percent of the things users want either A) dont exist or B) are impossible to find, install and run without being deeply technical.

These things dont need to scale, they dont need to be well designed. They are for the most part targeted, single user, single purpose, artifacts. They are migration scripts between services, they are quick and dirty tools that make bad UI and workflows less manual and more managable.

These are the use cases I am seeing from people OUTSIDE the tech sphere adopt AI coding for. It is what "non techies" are using things like open claw for. I have people who in the past would have been told "No, I will not fix your computer" talk to me excitedly about running cron jobs.

Not everything needs to be snap on quality, the bulk of end users are going to be happy with harbor freight quality because it is better than NO tools at all.

throw5•25m ago
> This article is describing a problem that is still two steps removed from where AI code becomes actually useful.

But it does a good job of countering the narrative you often see on LinkedIn, and to some extent on HN as well, where AI is portrayed as all-capable of developing enterprise software. If you spend any time in discussions hyping AI, you will have seen plenty of confident claims that traditional coding is dead and that AI will replace it soon. Posts like this is useful because it shows a more grounded reality.

> 90 percent of the things users want either A) dont exist or B) are impossible to find, install and run without being deeply technical. These things dont need to scale, they dont need to be well designed. They are for the most part targeted, single user, single purpose, artifacts.

Yes, that is a particular niche where AI can be applied effectively. But many AI proponents go much further and argue that AI is already capable of delivering complex, production-grade systems. They say, you don't need engineers anymore. They say, you only need product owners who can write down the spec. From what I have seen, that claim does not hold up and this article supports that view.

Many users may not be interested in scalability and maintainability... But for a number of us, including the OP and myself, the real question is whether AI can handle situations where scalability, maintainability and sound design DO actually matter. The OP does a good job of understanding this.

lubujackson•43m ago
Long term, I think the best value AI gives us is a poweful tool to gain understanding. I think we are going to see deep understanding turn into the output goal of LLMs soon. For example, the blocker on this project was the dense C code with 400 rules. Work with LLMs allowed the structure and understanding to be parsed and used to create the tool, but maybe an even more useful output would be full documentation of the rules and their interactions.

This could likely be extracted much easier now from the new code, but imagine API docs or a mapping of the logical ruleset with interwoven commentary - other devtools could be built easily, bug analysis could be done on the structure of rules independent of code, optimizations could be determined on an architectural level, etc.

LLMs need humans to know what to build. If generating code becomes easy, codifying a flexible context or understanding becomes the goal that amplifies what can be generated without effort.

intensifier•37m ago
article looks like a tweet turned into 30 paragraphs. hardly any taste.
throw5•15m ago
Yes, how dare someone take an idea, develop it, and publish it outside the algorithm-driven rage pit. Truly terrible behavior! /s

Expanding a thought beyond 280 characters and publishing it somewhere other than the X outrage machine is something we should be encouraging.

edfletcher_t137•15m ago
> Of all the ways I used AI, research had by far the highest ratio of value delivered to time spent.

Seconded!

pwr1•13m ago
This resonates. I had a project sitting in my head for years and finally built it in about 6 weeks recently. The AI part wasn't even the hard part honestly, it was finally commiting to actually shipping instead of overthinking the architecture. The tools just made it possible to move fast enough that I didn't lose momentum and abandon it like every other time.

A Textual widget for beautiful diffs in the terminal

https://github.com/batrachianai/textual-diff-view
1•willm•1m ago•0 comments

Why Over-Engineering Happens

https://yusufaytas.com/why-over-engineering-happens/
3•zuhayeer•2m ago•0 comments

PS3 emulator makes Cell CPU breakthrough that improves performance in all games

https://www.tomshardware.com/video-games/playstation/rpcs3-ps3-emulator-gets-cell-cpu-breakthroug...
2•gloxkiqcza•4m ago•0 comments

Do you remember usability testing?

https://www.userium.com/
1•calmnordic•6m ago•0 comments

Agent Governance Toolkit: Open-source runtime security for AI agents

https://opensource.microsoft.com/blog/2026/04/02/introducing-the-agent-governance-toolkit-open-so...
1•tcbrah•6m ago•0 comments

The Melanesian: Dark-skinned people with blonde hair region of Oceania

https://guardian.ng/life/the-melanesian-dark-skinned-people-with-blonde-hair/
2•thunderbong•9m ago•0 comments

OpenNMC is an open network management card platform for APC SmartSlot UPS units

https://gitlab.com/netcube-systems-austria/opennmc
3•zdw•11m ago•0 comments

A all CLIs tokens and context reducer by 97%

https://www.squeezr.es/
1•sergioramosv•12m ago•1 comments

How we feel about AI (2025)

https://goauthentik.io/blog/2025-12-10-how-we-really-feel-about-ai/
1•walterbell•15m ago•0 comments

Show HN: Gecit – DPI bypass using eBPF sock_ops, no proxy or VPN

https://github.com/boratanrikulu/gecit
3•boratanrikulu•16m ago•0 comments

How to Get Better at Guitar

https://www.jakeworth.com/posts/how-to-get-better-at-guitar/
1•jwworth•17m ago•0 comments

Iran internet blackout now longest nation-scale shutdown on record

https://mastodon.social/@netblocks/116350984373909468
2•ukblewis•20m ago•0 comments

Show HN: Stablemount, a response to EmDash, a prototype for a future CMS

https://github.com/jhyolm/stablemount
2•jhyolm•20m ago•1 comments

Watch 'S4 – The Bob Lazar Story' online: Here's where to watch the UFO doc

https://www.tomsguide.com/entertainment/streaming/watch-s4-the-bob-lazar-story-online
2•evo_9•23m ago•0 comments

Show HN: YardSard – Inventory Management

https://apps.apple.com/us/app/yardsard/id6759114903
2•prithsr•27m ago•0 comments

Show HN: Imladri – Cryptographic enforcement and semantic monitoring for your AI

https://imladri.com/
2•osama872•29m ago•0 comments

AST vs. Bytecode: Interpreters in the Age of Meta-Compilation [pdf]

https://stefan-marr.de/downloads/oopsla23-larose-et-al-ast-vs-bytecode-interpreters-in-the-age-of...
3•tosh•30m ago•0 comments

Codex is switching to API pricing based usage for all users

https://help.openai.com/en/articles/20001106-codex-rate-card
7•ccmcarey•33m ago•1 comments

Francis Li

https://furclick.top/
3•menshowlee•39m ago•0 comments

Show HN: Regression-dog – A 20-line skill that reviews your code for regressions

https://github.com/imaman/skills/tree/main/skills/regression-dog
2•itay-maman•43m ago•0 comments

OpenRockets Archive New Submission(Autoscript)

https://archive.openrockets.com/Litha2024-main/
2•openrockets•43m ago•1 comments

Open source voice cloning TTS models worth trying

https://firethering.com/open-source-tts-voice-cloning/
3•steveharing1•43m ago•0 comments

Claude AI powered trading bot turns $1 into $3.3M on Polymarket

https://finbold.com/claude-ai-powered-trading-bot-turns-1-into-3-3-million-on-polymarket/
3•madaxe_again•45m ago•0 comments

Microsoft terms say Copilot is for entertainment purposes only, not serious use

https://www.tomshardware.com/tech-industry/artificial-intelligence/microsoft-says-copilot-is-for-...
41•jatins•46m ago•3 comments

We are facing the most significant days and weeks in world history since 1945

https://www.taxresearch.org.uk/Blog/2026/04/05/we-are-facing-most-significant-days-and-weeks-in-w...
3•only_in_america•46m ago•1 comments

iCloud appears to be down for some users

https://www.reddit.com/r/iCloud/s/GAahHRBNPX
3•FinnKuhn•51m ago•3 comments

Computational Physics (2nd Edition)

https://websites.umich.edu/~mejn/cp2/
4•teleforce•53m ago•0 comments

Open Source Elixir Personel Health Management

https://github.com/joestein/health-pilot
3•buoewe•54m ago•0 comments

Agile Development Is Dead Reckoning

https://paolog.net/posts/dead-reckoning-agile/
2•paologi•1h ago•0 comments

Inference Arena – new benchmark of local inference and training

http://kvark.github.io/ai/performance/2026/04/04/inference-arena.html
3•kvark•1h ago•1 comments