frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Frugal Tokens – explore costs and usage across coding agents

https://demo.frugaltokens.com/
4•dpc94•2m ago•0 comments

Show HN: Nikon F100 Film Camera Repair Notes

https://github.com/enthdegree/f100
25•enthdegree•4d ago•12 comments

Show HN: Naeos – an engineering system for AI coding agents

https://github.com/NAEOS-foundation/naeos
3•bayu911•36m ago•0 comments

Show HN: nanoAlphaZero – Train a grandmaster-level chess model in 24h with TPUs

https://github.com/wtedw/nanoAlphaZero
2•tdoubleu•43m ago•0 comments

Show HN: I am getting genuine questions

https://github.com/docbrain-ai/docbrain
2•bhanuhai2•53m ago•2 comments

Show HN: LongTerMemory, an AI EdTech Platform

https://wired.business/longtermemory
2•aledevv•1h ago•0 comments

Show HN: a javascript engine written in C3 with native TS support

https://github.com/ricardobeat/boomkat
3•ricardobeat•1h ago•1 comments

Show HN: Automatically detect and patch walking-dead states in Sierra games

https://github.com/katiahayati/lucasartsifier/
134•wkfauna•15h ago•74 comments

Show HN: Interactive, animated architecture of any HuggingFace models

https://modelmap.cc
101•lizhaoliu•17h ago•11 comments

Show HN: Progressive web-app to explore Paris while solving puzzles without app

https://flanori.com/
4•rhazn•2h ago•0 comments

Show HN: Verify OpenAI's signed agent traffic in Python (RFC 9421/Web Bot Auth)

https://github.com/regent-protocol/regent-httpsig
3•abay_aubakirov•3h ago•0 comments

Show HN: Xalgorix – open-source AI pentester that proves vulnerabilities

https://www.xalgorix.com/
6•xalgord•3h ago•4 comments

Show HN: Anonymous age verification with passkey-powered encryption

https://loginwithone.com/
4•mikeysight•3h ago•4 comments

Show HN: My Mac slept through its cron jobs, so I made goguma, a menu bar app

https://github.com/junnam586/goguma
4•junnam586•3h ago•2 comments

Show HN: Marginal – See which customers and features drive your AI API costs

https://marginalhq.com/
4•jithinlalk25•3h ago•0 comments

Show HN: Openleetcode – Local LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode
68•therepanic•1d ago•17 comments

Show HN: Carno.js – a Nest-style application framework for Bun

https://github.com/carnojs/carno.js
6•l-crispr•4h ago•1 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
65•mcclowes•2d ago•59 comments

Show HN: LLM-Shield-Proxy Zero-Egress PII Streaming Proxy (55MB RAM)

https://github.com/ninadphalak/LLM-Shield-Proxy
4•ninadphalak•5h ago•1 comments

Show HN: Basis – A free crypto terminal without paywalls

https://www.basischarts.com/
2•Alrady•6h ago•0 comments

Show HN: macOS data protection keychain for Electron apps

https://github.com/biw/keychain-store
23•biwills•23h ago•3 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
162•vlowrian•2d ago•71 comments

Show HN: Shoehorn – Quantize any model down to run on your machine

https://notactuallytreyanastasio.github.io/shoehorn/
44•rhgraysonii•1d ago•9 comments

Show HN: PlugClaw – Private AI agent hardware for any phone or PC

https://plugos.net/plugclaw/
6•darkreader•13h ago•5 comments

Show HN: Capto – alerts when a background job goes quiet, with breadcrumbs

https://capto.run
7•johndory80•1w ago•3 comments

Show HN: Go CLI for website health checks, zero dependencies

https://github.com/atillalab/site-health
13•mehmetkose•1d ago•2 comments

Show HN: Loft Day – a wedding invitation turned point-and-click game

https://marketa.behdad.org/loft-day
9•behdad•1d ago•5 comments

Show HN: SparkleChinese – Learn Chinese while you browse

https://sparklechinese.com
5•tommy_guo•3h ago•0 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
70•enjoyyourlife•2d ago•42 comments

Show HN: A local MitM proxy to control TLS fingerprints

https://github.com/ytkoka/impersonate-proxy
27•ytkoka•1d ago•6 comments
Open in hackernews

Show HN: a javascript engine written in C3 with native TS support

https://github.com/ricardobeat/boomkat
3•ricardobeat•1h ago
Hi HN! For the past three months I’ve been working on boomkat, a fully ES compatible, strict-only engine. It was written from scratch using the C3 language, with Duktape and QuickJS as reference engines.

The engine passes 100% of test262 (subset, excluding legacy features, sloppy mode and proposal stage features), 10x faster than Duktape, matching QuickJS in performance, and can natively run TypeScript files including module support. Supports all modern JS features.

It was built with a mix of several open-weight models and harnesses, with Claude Code as reviewer. I estimate 300+ hours of work, plus agents running nearly 24/7 for 12 weeks. 2000+ commits, all read (but not fully reviewed) by me. About €300 spent in total.

As the README warns, this is not production-ready code, but I think it's at a state worth sharing. Surprisingly test262 still leaves a lot of surface uncovered, there are still small issues here and there but it runs a lot of real world code successfully (e.g. Zod).

Would love to hear thoughts on the engine, implementation and development process.

Comments

ricardobeat•1h ago
The fact that this could be built so cheaply using modern tools is still incredible to me.

Another motivation I didn't mention is that I wanted a more modern engine to run on the ESP32 platform, though it is not quite there yet.

Happy to answer any questions here.