frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pozsar's Bretton Woods III: Sometimes Money Can't Solve the Problem

https://philippdubach.com/2025/10/25/pozsars-bretton-woods-iii-the-framework-1/2/
2•7777777phil•2m ago•0 comments

Tokyo court orders Cloudflare to pay over $3.2M. over manga piracy sites

https://www3.nhk.or.jp/nhkworld/en/news/20251119_16/
1•gslin•3m ago•0 comments

Do Less

https://www.sunilshenoy.com/2025/11/19/do-less.html
1•speckx•8m ago•0 comments

Talk live with the guy who whispers "sales" to founders and startups

https://x.com/i/broadcasts/1kvJpMjqzXDxE
1•riley-i•11m ago•0 comments

Metabase 57 – Document Creation

https://www.metabase.com/releases/metabase-57
1•markwillis82•11m ago•0 comments

When grades stop meaning anything

https://www.theargumentmag.com/p/when-grades-stop-meaning-anything
2•paulpauper•11m ago•0 comments

How the Hell Are Porsches So Reliable?

https://www.jalopnik.com/how-the-hell-are-porsches-so-reliable-1709270257/
1•kerim-ca•11m ago•0 comments

Elasticity and microgrooves form aligned myotubes similar to slow twitch muscles

https://www.nature.com/articles/s41598-025-12744-7
1•PaulHoule•12m ago•0 comments

My Notes on Gemini 3

https://twitter.com/VictorTaelin/status/1990844923994886282
1•amrrs•14m ago•0 comments

Movim 0.32.1: A federated, open-source web-based social OMEMO E2EE XMPP client

https://github.com/movim/movim/releases/tag/v0.32.1
1•neustradamus•14m ago•0 comments

Datadog Is Down

https://status.datadoghq.com/incidents/cvdjtf81756n
3•markiannucci•19m ago•0 comments

DMA Collectives for Efficient ML Communication Offloads

https://arxiv.org/abs/2511.06605
1•matt_d•19m ago•0 comments

Taking prenatal supplements associated with 30% lower risk of autism

https://medicalxpress.com/news/2025-11-prenatal-supplements-autism.html
2•bikenaga•20m ago•0 comments

Calculated Risk: Trade Deficit Decreased to $59.6B in August

https://www.calculatedriskblog.com/2025/11/trade-deficit-decreased-to-596-billion.html
1•speckx•21m ago•0 comments

Our tools are failing us

https://blank.page/@mo/our-tools-are-failing-us
1•boudra•22m ago•1 comments

Pixar: The Early Days

https://stevejobsarchive.com/stories/pixar-early-days
2•tosh•22m ago•0 comments

Act-1: A Robot Foundation Model Trained on Zero Robot Data

https://www.sunday.ai/journal/no-robot-data
1•pr337h4m•22m ago•0 comments

Fine, Trade Labubu Futures

https://www.bloomberg.com/opinion/newsletters/2025-11-19/fine-trade-labubu-futures
2•ioblomov•24m ago•1 comments

Enumerating Three Billion WhatsApp Accounts for Security and Privacy

https://github.com/sbaresearch/whatsapp-census
2•filippofinke•25m ago•0 comments

Understanding neural networks through sparse circuits – OpenAI

https://openai.com/index/understanding-neural-networks-through-sparse-circuits/
1•JnBrymn•26m ago•0 comments

Gov. Abbott's office redacts pages of emails about Elon Musk

https://www.kut.org/politics/2025-11-19/texas-governor-abbott-elon-musk-emails-redacted
35•pavel_lishin•28m ago•5 comments

Nest Thermostats upload 50 megabytes to Google every day after being disabled [video]

https://www.youtube.com/watch?v=jC5wcJM8iuU
2•tartoran•30m ago•1 comments

Building with Distributed Actors: What and Why

https://withblue.ink/2025/11/19/distributed-actors-model.html
2•ItalyPaleAle•30m ago•0 comments

Europe wants to make space food out of thin air and astronaut pee

https://www.space.com/space-exploration/human-spaceflight/europe-wants-to-make-space-food-out-of-...
3•domofutu•31m ago•0 comments

What AI Is Really For

https://www.chrbutler.com/what-ai-is-really-for
4•delaugust•32m ago•0 comments

A simple UK self-employed tax calculator (instant monthly estimate)

https://selfemployedtaxcalculators.co.uk/
1•seo-punk•33m ago•1 comments

Was MCP a mistake? The internet weighs in

https://www.aiengineering.report/p/was-mcp-a-mistake-the-internet-weighs
3•waprin•34m ago•0 comments

Chinese EV makers accelerate robotics drive for 'game-changing' edge over US

https://www.scmp.com/business/china-evs/article/3333310/chinese-ev-makers-accelerate-robotics-dri...
4•Teever•35m ago•0 comments

Show HN: OpenHands Software Agent SDK

https://github.com/OpenHands/software-agent-sdk
1•rbren•37m ago•0 comments

Show HN: Allein - Markdown editor with AI autocompletion, completely offline

https://github.com/szilarddoro/allein
1•szdoro•38m ago•0 comments
Open in hackernews

GenAI-Accelerated TLA+ Challenge

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

Comments

Taikonerd•6mo 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•6mo 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•6mo 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•6mo ago
Then you need to be able to formally prove the equivalence of various TLA+ programs (maybe that's a solved problem?)
omneity•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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_•6mo 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•6mo 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•6mo 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_•6mo 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•6mo 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•6mo 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•6mo ago
Interesting. I've always wanted to formalize the US Constitution into TLA+ in order to find loopholes.