Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Does Georgism work? Five years later (astralcodexten.com)
    71comments
  2. DeepSeek Elastic Compute (DSec) (arxiv.org)
    47comments
  3. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    174comments
  4. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    55comments
  5. Go Concurrency Distilled (antonz.org)
    9comments
  6. Evolving programming languages in the AI era (dashbit.co)
    15comments
  7. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    25comments
  8. Turning GLM-5.3-Flash into a Jev-like decision model (privatemode.ai)
    11comments
  9. Drawgent: Coding agent on a live Excalidraw canvas (tangled.org/yanndegat.tngl.sh)
    32comments
  10. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    6comments
  11. Fifteen years later, the Apple Cards origin story (lexontech.org)
    88comments
  12. Welcome to the Medical Clinic at the Interplanetary Relay Station (lightspeedmagazine.com)
    8comments
  13. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    11comments
  14. Biology might not be quantum, but its math is quantumlike (quantamagazine.org)
    5comments
  15. LA Metro has some of the slowest escalators on Earth (basin.la)
    62comments
  16. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    429comments
  17. Sousveillance (wikipedia.org)
    —discuss
  18. Modern Object Pascal Introduction for Programmers (castle-engine.io)
    60comments
  19. Generate fonts where every LLM token is the same width (mesh.host)
    7comments
  20. The Evolution of Vending Machines (saturdayeveningpost.com)
    3comments
  21. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    140comments
  22. How one Twitch chat message became code execution on a streamer’s PC (scrt.ch)
    11comments
  23. The Lost Atomic Update on Loongson CPU (jia.je)
    6comments
  24. HomeBody: A humanoid that explores, remembers, and acts on its own (stanford.edu)
    2comments
  25. How to keep enjoying programming in a world of LLMs (haskell.org)
    216comments
  26. Dutch designer made DE9: Closer to the Edit into a playable web-based instrument (creativeboom.com)
    1comments
  27. Breaking Up with Google Play: Why Conversations Is Now Free (gultsch.de)
    254comments
  28. The Rise of Audio AR (dbreunig.com)
    13comments
  29. Reading’s Bayeux Tapestry (diamondgeezer.blogspot.com)
    1comments
  30. Show HN: Jev Plays Pokémon Red (jev-pokemon.vercel.app)
    109comments

Evolving programming languages in the AI era

31 pointsby 1d agodashbit.co
14 comments
15h agoHN ↗

This creates an interesting tension. Coding agents could dramatically reduce the cost of building an ecosystem while simultaneously weakening one of the forces that causes ecosystems to form in the first place.

This is deeply unintuitive but AI negates language specific ecosystems, while strengthening language agnostic ecosystems.

Pick whatever your favourite programming language is and its ecosystem. With AI someone can take your ecosystem and just port it to their language.

This means the only way you can protect your ecosystem is to play on all language fronts at the same time so porting the software to another language becomes a meaningless exercise.

2h agoHN ↗

I’m not sure. my read of this was that AI weakens human ecosystems in general because we don’t need to work together as much when we are all just working with AI separately, but maybe you have specific examples of language agnostic ecosystems in mind? I’m struggling to imagine what that would look like

1h agoHN ↗

maybe more like an ecosystem around a framework implemented in multiple language SDKs, here are two I use

https://adk.dev/

https://docs.dagger.io/reference/sdks

both can invoke modules written in other languages from your language of choice

Kubernetes is likely an interesting ecosystem to consider under this lens too

2h agoHN ↗

With AI someone can take your ecosystem and just port it to their language.

I don't think its that "just". Examples of porting we seen had some prerequisites: being self contained with very strong tests coverage, so AI could iterate N millions times and fix bugs in new implementation. Otherwise such porting could be very buggy and unmaintainable.

1h agoHN ↗

Don't all of "serious" programming languages meet that bar? Java, C#, Go, Python, etc all have enormous test suites. Once you get into the third party, things become much more uneven, but if you can restrict yourself to say the top N packages in a language, those are going to have better than average development practices which makes that plausible.

1h agoHN ↗

Once you get into the third party

year, that's usually what is referred as ecosystem.

1h agoHN ↗

Why even assume that the most optimal programming languages for agentic coding are the ones that humans use? Maybe operate on ASTs directly? Some other form of programming that humans would find hard but that is a good fit for LLMs?

1h agoHN ↗

Because human review is a serious bottleneck and optimizing something that isn't the bottleneck isn't helpful

1h agoHN ↗

AI still makes mistakes on code with a trillion billion examples, but let’s invent a DSL that only AI can read and hope for the best?

1h agoHN ↗

Yes, because that code was never written to be understood by machines, merely to be mechanically translated. Software is a very messy set of layers of leaky abstractions trying to express reasonably well defined ideas. Humans can't write code without mistakes, in spite of all the examples out there. If they could compilers wouldn't have to emit error messages.

12m agoHN ↗

Right on every count except that it needs to be bad for people

4m agoHN ↗

LLM's are trained on human code though. Converting the code to its ast tree and training ai on that would be trivial of course, but I imagine there would be information that explains why something exists that would be missed.

8m agoHN ↗

AI negates language specific ecosystems ... Pick whatever your favourite programming language is and its ecosystem

I think this is only true when it comes to LLM raw output. There's also the concern of checking its work. A compiler that can check many aspects of correctness (static types, null) is a huge boost to AI. It can use the compiler directly to check its own work.

21m agoHN ↗

This part:

---

- Correct by construction: the language makes invalid states or programs hard or impossible to express.

- Statically established: types, proofs, and static analysis establish properties before execution.

- Runtime-enforced: memory management, isolation, capability boundaries, and other runtime enforced properties.

- Empirically validated: program validation through tests, property-based testing, and fuzzing.

---

Along with being familiar, so it's easy to generate, is a huge part of why I'm building Zena: https://zena-lang.dev/

I don't have the AI-first rationale put into the public docs well just yet, but I mention some of it here: https://zena-lang.dev/guide/why-zena/#familiar-to-humans-and...

along with a doc in the repo on this topic: https://github.com/elematic/zena/blob/main/docs/design/ai-fi...

In short, the more deterministic, automated, checks the better. AI can deal with a pedantic language. I intend to add statically verified structured concurrency, units of measure, contracts, and eventually more and more formal methods into the language so it can be a familiar TYpeScript-like base with as many static guarantees as we can fit in.

I also think that fine-grained isolation, which Zena gets via Web Assembly, is critical for limiting the capabilities of generated code and the blast radius of bugs, vulnerabilities, and non-aligned behavior.

I do have an optimistic hope that a language also optimized for humans, readability and simple semantics especially, has value in the future, even when most code is generated. We'll see about that.