frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Are You in the Weights?

https://www.intheweights.com/
215•turtlesoup•6h ago•130 comments

Show HN: Gerrymandle - Daily puzzle game where you redraw electoral districts

https://gerrymandle.cc/
145•realmofthemad•13h ago•65 comments

Show HN: Talos – Open-source WASM interpreter for Lean

https://github.com/cajal-technologies/talos
16•mfornet•14h ago•2 comments

Show HN: Crawlie – Free open-source SEO audit tool for humans and agents

https://github.com/spronta/crawlie
4•seandotexe•4h ago•0 comments

Show HN: An 8-bit live gamecast for baseball

https://ribbie.tv/watch
241•brownrout•1d ago•135 comments

Show HN: We built an 8-bit CPU as 2nd year EE students

https://github.com/c0rRupT9/STEPLA-1
99•CorRupT9•3d ago•41 comments

Show HN: High-Res Neural Cellular Automata

https://cells2pixels.github.io/
198•esychology•1d ago•52 comments

Show HN: Capacitor Alarm Clock

https://github.com/ArcaEge/capacitor-alarm-clock
149•arcaege•4d ago•45 comments

Show HN: Run Agent Skills with mistral.rs v0.8.10: /v1/skills support and more

16•ericlbuehler•20h ago•0 comments

Show HN: OSymandias – Open-source runtime for multi-agent AI systems

https://github.com/andreisilva1/OSymandias
3•andreisilva1•6h ago•1 comments

Show HN: bote - A fast, modern and low-memory approach to processing a big JSON

https://github.com/jankdc/bote
4•jankdc•6h ago•1 comments

Show HN: Spin Lab

https://srijanshukla.com/artifacts/spin-lab/
39•srijanshukla18•2d ago•27 comments

SHOW HN: I built a "living proof-of-work" profile for builders

https://kritive.com
4•sonOfHades•7h ago•2 comments

Show HN: Inkwash, a watercolor sketching app and explanation

https://johnowhitaker.github.io/inkwash/about
243•Yenrabbit•5d ago•28 comments

Show HN: I built a daily flag quiz in honor of the World Cup

https://orbisearth.web.app/
4•sestarkman•7h ago•0 comments

Show HN: Display.dev – the agent-agnostic workspace for HTML and .md artifacts

https://display.dev/
12•ottilves•13h ago•7 comments

Show HN: cuTile Rust: Safe, data-race-free GPU kernels in Rust

https://github.com/nvlabs/cutile-rs
105•melihelibol•2d ago•18 comments

Show HN: NGB, an open-source .NET platform for document-driven business apps

https://github.com/ngbplatform/NGB
2•perkovsky•9h ago•0 comments

Show HN: StarScope – Free astronomy dashboard for observers outside the US/UK

https://starscope.live/feed
20•xenophin•3d ago•2 comments

Show HN: Deconvolution – a Rust image deconvolution and restoration crate

https://github.com/pbkx/deconvolution
33•rmi0•3d ago•5 comments

Show HN: HumansMap – Explore family dynasties, relationship, org networks

https://humansmap.com/?feed=1
3•scurnus•11h ago•2 comments

Show HN: Fata – Spaced repetition to fight skill rot from AI coding

https://fata.dev
120•djoume•1w ago•53 comments

Show HN: SunCalc v2 – a tiny JavaScript library for sun and moon calculations

https://github.com/mourner/suncalc
3•mourner•12h ago•0 comments

Show HN: BlitzGraph – Supabase for graphs, built for LLM agents

https://blitzgraph.com
14•lveillard•2d ago•7 comments

Show HN: Sudoku Word Search," hidden words required to solve letter-sudoku

https://www.sudokuwordsearch.com/
3•bahbahbahbah•13h ago•0 comments

Show HN: Garden of Flowers – an archive of pictorial typography before ASCII art

https://garden-of-flowers.heikkilotvonen.com/
158•california-og•2d ago•27 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
703•tamnd•4d ago•140 comments

Show HN: Veterinarian turned founder, AI lawn diagnosis

https://grassdx.com/
76•andrewbr•3d ago•60 comments

Show HN: Local personal data redaction for any AI tools

https://github.com/sophia486/pii-gui
12•unusual_typo•1d ago•7 comments

Show HN: VoiceDraw – Talk system design out loud, the diagrams draw themselves

https://voicedraw.com/
47•ajaypanthagani•2d ago•19 comments
Open in hackernews

Show HN: Talos – Open-source WASM interpreter for Lean

https://github.com/cajal-technologies/talos
16•mfornet•14h ago
At Cajal (YC W26) we’re excited to share Talos (https://github.com/cajal-technologies/talos), an open source framework for formal verification of WebAssembly modules in Lean.

AI is now writing tons of the code that gets pushed to production. As code generation gets cheaper, verification becomes the bottleneck. We believe in a future where every piece of software comes with a mathematical proof that it does what its author intended - in doing so, eliminating many classes of exploits. Talos is part of the foundation for that.

Talos provides a Wasm interpreter optimized for reasoning at the binary level, together with a weakest-precondition calculus layer for proving properties about programs. Because we reason directly about WebAssembly, any language with a Wasm backend is in scope: Rust, C++, Go, C, Swift, Kotlin, Zig, C#, and many more.

To make this possible, we use Lean: a programming language and theorem prover that lets you both write software and mathematically prove that it's correct - all in one system. That's what lets Talos double as both an executable interpreter and the formal object Lean reasons about. Lean also integrates with modern AI proving tools, discharging goals automatically via both proof search and direct evaluation.

To see Talos in action check out a proof for Stein's GCD algorithm, implemented in the popular Rust crate num-integer: https://github.com/cajal-technologies/talos/blob/main/progra....

Our roadmap:

- Full Wasm coverage by first passing the official W3C testsuite, then later verifying against SpecTec (formal Wasm spec) - Arbitrary crate verification - any Rust crate that compiles to Wasm should be in scope - Building our proof library codelib, to make verifying increasingly complex programs tractable

We would love to hear the community’s feedback on Talos and comments on the state of formal verification right now. Contributions are also welcome!

Comments

lukerj00•12h ago
I’m on the Cajal team - not OP, but happy to answer questions.

The core bet is that Wasm is a good verification target (close to compiled artifacts, many languages target it), and Lean is the right place to do verification.

Super interested in hearing from people working with Lean, compilers or other Wasm verification frameworks (eg Iris-Wasm).

quietusmuris•10h ago
Interesting. Do I have to write specs in Lean against the Wasm semantics or can you annotate Rust directly?