frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Spatial Audio Notifications for Multi Window Claude Code –> Claudio

https://github.com/FlorisFok/Claudio
1•FlorisFok•7m ago•1 comments

The Augmentation of Doug Engelbart

https://www.youtube.com/watch?v=_7ZtISeGyCY
1•larve•9m ago•0 comments

The Mind Layer: Minds, Not Brains

https://metaversus.substack.com/p/level-13-the-mind-layer
1•ryanfoo•9m ago•0 comments

Show HN: Timezone App – Visual meeting scheduler for distributed teams

https://timezoneapp.co/
2•choogi•10m ago•0 comments

100% Interception of Multi-Turn Jailbreaks on GPT-4o-Mini and Gemini

https://zenodo.org/records/19314889
1•mthree•13m ago•0 comments

AI software for smart glasses wins £1M prize for helping people with dementia

https://www.theguardian.com/society/2026/mar/18/ai-smart-glasses-1m-prize-technology-dementia
2•ohjeez•15m ago•0 comments

Show HN: TNTStack – Monorepo template for cross-platform apps (Tauri+Next.js)

https://tntstack.odest.dev/en
1•odest•15m ago•1 comments

Stripe withheld $85,000 from our EU platform – no legal basis given

2•MelkerWendelbo•15m ago•0 comments

Show HN: In-Browser Video Calls

https://just-call.app/
1•ddoronin•16m ago•0 comments

Did the obesity epidemic start with sugar? Or start with vitamins?

https://twitter.com/CraigBrockie/status/2038288653781438909
1•bilsbie•19m ago•0 comments

An open-source tool for designing homes using AI

https://github.com/bayllama/homemaker
2•graphllama•28m ago•0 comments

Cc-budget – Know your Claude Code budget before you hit the wall

https://github.com/boyand/cc-budget
1•nathariel_•30m ago•0 comments

C++26 is done ISO C++ standards meeting, Trip Report

https://herbsutter.com/2026/03/29/c26-is-done-trip-report-march-2026-iso-c-standards-meeting-lond...
3•pjmlp•30m ago•0 comments

The Cartel: the talent was always there, the market access wasn't

https://mayankagrawalphd.substack.com/p/the-cartel
2•timshell•32m ago•0 comments

An Introduction to Writing Systems and Unicode

https://r12a.github.io/scripts/tutorial/part2
1•mariuz•33m ago•0 comments

Thermodynamics, Organisations and Governments

https://deadneurons.substack.com/p/thermodynamics-organisations-and
1•nr378•33m ago•0 comments

Towards Scalable Dataframe Systems

https://arxiv.org/abs/2001.00888
2•fanf2•34m ago•1 comments

Stanley Milgram wasn't pessimistic enough about human nature?

https://www.lesswrong.com/posts/ogapPTArhBM6abSJj/stanley-milgram-wasn-t-pessimistic-enough-about...
2•paulpauper•35m ago•0 comments

Apple Preparing 'Most Significant Overhaul in the iPhone's History'

https://www.macrumors.com/2026/03/29/biggest-iphone-overhaul-ever-rumor/
2•prmph•35m ago•2 comments

Miniature Cities Are What Schools Were Always Supposed to Be

https://minicities.org/p/miniature-cities-a-reply-to-deutsch
1•paulpauper•35m ago•0 comments

Pascal's Wager

https://angelarichardson842599.substack.com/p/on-pascals-wager
1•paulpauper•36m ago•0 comments

Neovim 0.12.0

https://github.com/neovim/neovim/releases/tag/v0.12.0
16•pawelgrzybek•37m ago•0 comments

Behind the Curtain: AI's looming cyber nightmare

https://www.axios.com/2026/03/29/claude-mythos-anthropic-cyberattack-ai-agents
1•dkobia•37m ago•0 comments

Windows 95 defenses against installers that overwrite a file with an older one

https://devblogs.microsoft.com/oldnewthing/20260324-00/?p=112159
2•michelangelo•38m ago•0 comments

CoreFlow – Find hidden spend waste in bank CSVs

https://getcoreflow.com
1•maxzomerdyke•39m ago•0 comments

RIP Associate Product Managers

https://github.com/jackreacher80/product-manager-skill
2•neocortex666•41m ago•0 comments

ADL Shut Down Sora

https://twitter.com/ADL/status/2037585125765185572
2•black6•42m ago•1 comments

Netscape News Feed Straight Out of the Late 00s

https://isp.netscape.com/
17•mistyvales•42m ago•5 comments

Claude Code Chronicles

https://darshanmakwana412.github.io/2026/03/claude-code-chronicles/
2•darshanmakwana•44m ago•0 comments

Show HN: I built an 8-axis MTG draft advisor that runs inside ChatGPT

https://savecraft.gg/games/mtga
1•Veraticus•44m ago•1 comments
Open in hackernews

GenAI-Accelerated TLA+ Challenge

https://foundation.tlapl.us/challenge/index.html
35•lemmster•10mo ago

Comments

Taikonerd•10mo ago
Using LLMs for formal specs / formal modeling makes a lot of sense to me. If an LLM can do the work of going from informal English-language specs to TLA+ / Dafny / etc, then it can hook into a very mature ecosystem of automated proof tools.

I'm picturing it something like this:

1. Human developer says, "if a user isn't authenticated, they shouldn't be able to place an order."

2. LLM takes this, and its knowledge of the codebase, and turns it into a formal spec -- like, "there is no code path where User.is_authenticated is false and Orders.place() is called."

3. Existing code analysis tools can confirm or find a counterexample.

omneity•10mo ago
A fascinating thought. But then who verifies that the TLA+ specification does indeed match the human specification?

I’m guessing using an LLM as a translator narrows the gap, and better LLMs will make it narrower eventually, but is there a way to quantify this? For example how would it compare to a human translating the spec into TLA+?

justanotheratom•10mo ago
maybe run it through few other LLMs depending on how much confidence you need - o3 pro, gemini 2.5 pro, claude 3.7, grok 3, etc..
svieira•10mo ago
Then you need to be able to formally prove the equivalence of various TLA+ programs (maybe that's a solved problem?)
omneity•10mo ago
No idea about SOTA but naively it doesn't seem like a very difficult problem:

- Ensure all TLA+ specs produced have the same inputs/outputs (domains, mostly a prompting problem and can solved with retries)

- That all TLA+ produce the same outputs for the same inputs (making them functionally equivalent in practice, might be computationally intensive)

Of course that assumes your input domains are countable but it's probably okay to sample from large ranges for a certain "level" of equivalence.

EDIT: Not sure how that will work with non-determinism though.

justanotheratom•10mo ago
I didn't mean generate separate TLA programs. Rather, other LLMs review and comment on whether this TLA program satisfies the user's specification.
Taikonerd•10mo ago
A fair question! I'd say it's not that different from using an LLM to write regular code: who verifies that the code the LLM wrote is indeed what you meant?
fmap•10mo ago
The usual way to check whether a definition is correct is to prove properties about it that you think should hold. TLA+ has good support for this, both with model checking as well as simple proofs.
frogmeister57•10mo ago
It makes a lot of sense only for graphics card sales people. For everyone else with a working neuron the sole idea is utter nonsense.
max_•10mo ago
Leslie Lamport said that he invented TLA+ so people could "think above the code".

It was meant as a tool for people to improve their thinking and description of systems.

LLM generation of TLA+ code is just intellectual masterbation.

It may get the work done for your boss. But you intellect will still remain bald — in which case you are better off not writing TLA+ at all.

warkdarrior•10mo ago
> [TLA+] was meant as a tool for people to improve their thinking and description of systems.

Why the speciesism? Why couldn't LLMs use TLA+ by translating a natural-language request into a TLA+ model and then checking it in TLA+?

jjmarr•10mo ago
Not the OP, but I would rather give a formal specification of my system to an AI and have it generate the code.

I believe the point is it's easier for a human to verify a system's correctness as expressed in TLA+ and verify code correctly matches the system than it is to correctly verify the entire code as a system at once.

Then, if my model of the system is flawed, TLA+ will tell me.

I'm an AI bull so if I give the LLM a natural language description, I'd like the LLM to explain the model instead of just writing the TLA+ code.

max_•10mo ago
TLA+ was invented in the first place because we Leslie Lamport thought natural language was a dubious tool for "specifying systems".

Yes an LLM may generate the TLA+ code even correctly, but model checking is not the end goal of TLA+

TLA+ plus is written to fully under how a system works at an abstract level.

Anyways, I guess you could just read the LLM generated TLA+ code. That would help you understand the abstraction of the system — but is the LLMs abstraction equal to your abstraction.

But vibe coded TLA+ sounds extremely dangerous especially in mission critical stuff where its required like Smart Contracts, Pacemakers, Aircraft software etc

frogmeister57•10mo ago
Using generative chatbots to write a formal spec is the most stupid idea ever. Specs are all about reasoning. You need to do the thinking to model the system in a very simplified manner. Formal methods and the generative BS are at the antipodes of reliability. This is an insult to reason. Please keep this nonsense away from the serious parts of CS.
siscia•10mo ago
Anyone who has tried to write formal verification will tell you that there is a WIDE gap between thinking and writing the specs.

Any tool that makes formal verification more accessible, should be welcome.

I believe the valuable part is how accessible we make thinking together with machines.

Us human are great at create innovative solutions, not so great at check and verify every single thing that can go wrong. Machines help with that.

kelseyfrog•10mo ago
Interesting. I've always wanted to formalize the US Constitution into TLA+ in order to find loopholes.