Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. "As a Language Model": Chat Template Switches LLM Self-Referential Voice (arxiv.org)
    15comments
  2. Flip Fluid on Flip Dots (mitxela.com)
    11comments
  3. Does Georgism work? Five years later (astralcodexten.com)
    261comments
  4. OpenAI Feared "Optics" of what might appear on Hacker News (authorsguild.org)
    218comments
  5. Go Concurrency Distilled (antonz.org)
    94comments
  6. Meta Blocks President Lula's Facebook Page, Campaign Ads 2 Weeks from Election (reddit.com)
    118comments
  7. Finally, A True Blue Rose Exists (sciencenews.org)
    4comments
  8. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    233comments
  9. DeepSeek Elastic Compute (DSec) (arxiv.org)
    85comments
  10. Improving site performance by shipping more CSS (github.blog)
    30comments
  11. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    87comments
  12. Show HN: LightCloud – A cloud console organised like file system (light-cloud.com)
    1comments
  13. The internet discovers TLA+. Now what? (reasonable.io)
    12comments
  14. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    26comments
  15. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    666comments
  16. Biology might not be quantum, but its math is quantumlike (quantamagazine.org)
    25comments
  17. Evolving programming languages in the AI era (dashbit.co)
    62comments
  18. Fifteen years later, the Apple Cards origin story (lexontech.org)
    103comments
  19. Teaching a World Model to Play Pokemon (nostalgia.dev)
    17comments
  20. An agent used DNS to reach an external chatbot (alignment.openai.com)
    107comments
  21. Drawgent: Coding agent on a live Excalidraw canvas (tangled.org/yanndegat.tngl.sh)
    42comments
  22. What is the size of Yemen? (2024) (theborys.substack.com)
    60comments
  23. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    195comments
  24. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    37comments
  25. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    11comments
  26. Turning GLM-5.3-Flash into a Jev-like decision model (privatemode.ai)
    39comments
  27. How to keep enjoying programming in a world of LLMs (haskell.org)
    277comments
  28. Exploding variance of means of exponentials: least-squares to the rescue (francisbach.com)
    —discuss
  29. Generate fonts where every LLM token is the same width (mesh.host)
    13comments
  30. Modern Object Pascal Introduction for Programmers (castle-engine.io)
    77comments

The internet discovers TLA+. Now what?

24 pointsby 6h agoreasonable.io
11 comments
2h agoHN ↗

Time to discover communicating sequential processes instead :P

2h agoHN ↗

That stuff gets rediscovered all the time, the latest example probably being golang

1h agoHN ↗

wait this is new to me so is this like a different kind of tla?

1h agoHN ↗

I've always thought CSP as a robust design pattern where you have no shared state between components and they must communicate with each other using message passing. It also requires synchronous communication (rendezvous-style). If you follow those rules you can have a pretty robust system. Aside from these abstract rules, CSP has more formal research (algebra) but I'm not sure if there are any decent tools available.

TLA gives you a full toolbox and in theory can model whatever you can express. That's very different from a design pattern.

1h agoHN ↗

I am learning TLA+ but I do not know CSP, is CSP better?

1h agoHN ↗

Take a writing class. This was painful to read.

26m agoHN ↗

Hahaha this is so funny... people here get slammed all the time of using AI for writing and here be, just someone writing his way through Internet history and gets slammed for it just the same... you can't hardly win with an audience like this... haha

40m agoHN ↗

Real world applications of TLA+: https://foundation.tlapl.us/industry/index.html.

The Intel paper shows how TLA+ was applied as a step prior to writing the hardware description. I'm not sure if it caught on, it seems like other tools are used nowdays, does anyone here in the VLSI industry know?

22m agoHN ↗

Took 10 minutes to find this: TLA+ is a formal specification language developed to design, model, document, and verify reactive systems.