frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Nightcrawler – A local AI pentesting agent running on a smartphone

https://github.com/garagehq/nightcrawler/
73•NickySlicks•5h ago•23 comments

Show HN: CCo – Go-style coroutines in C

https://github.com/gtutino/CCo
2•gtutino•6m ago•0 comments

Show HN: TokenMaxxer – track every AI token you spend across your coding tools

https://tokenmaxxer.xyz
2•SYeomans•6m ago•0 comments

Show HN: Choreo A free visual design tool for UI behavior and micro-interactions

https://www.choreomotion.app/
2•anasbelmadani•9m ago•0 comments

Show HN: FutureSearch, AI forecasting you can verify

https://futuresearch.ai/
8•ddp26•9m ago•0 comments

Show HN: Product analytics (and evals) for agent sessions on your MCP

https://armature.tech/
5•screm•19m ago•0 comments

Show HN: Isopolis – Isometric pixel map of SF

https://sf.isopolis.city/
307•nuwandavek•15h ago•69 comments

Show HN: ModelFuzz – Open-source runtime guardrails for AI agents

https://github.com/higagan/modelfuzz
2•higagan•47m ago•0 comments

Show HN: We Fixed UniFi's Slow PPPoE Performance with PPPoE Half-Bridge

https://arcbox.dev/blog/unifi-pppoe-half-bridge-acceleration
58•uneven9434•8h ago•34 comments

Show HN: ssh ssh.place

https://ssh.place
164•jeninh•16h ago•94 comments

Show HN: Kakehashi – Experimental userspace to run macOS binaries on Linux ARM

https://github.com/wie-project/kakehashi
241•vlad_kalinkin•1d ago•61 comments

Show HN: A Handwritten Blogging Platform

https://handwritten.blog/
160•emilesilvis•3d ago•79 comments

Show HN: One Thing at a Time – a todo app that hides your list

https://onethingatatime.app/
2•sumtsui•1h ago•0 comments

Show HN: An interactive explorer of Rand Paul's opening at Fauci's hearing

https://faucis-indictment.fly.dev/
2•zemariagp•25m ago•0 comments

Show HN: Lunar, a "fast", memory-efficient Lua 5.1 VM written in Go

https://github.com/mmcdole/lunar
6•drakenot•2h ago•2 comments

Show HN: NixOS-DGX-Spark – Nix and NixOS on the DGX Spark

https://github.com/graham33/nixos-dgx-spark
121•graham33•23h ago•39 comments

Show HN: Make your Framework 12 sound like a creaky door

https://github.com/ArcaEge/creakwork12
90•arcaege•20h ago•17 comments

Show HN: Bor – Open-source policy management for Linux desktops

https://getbor.dev/blog/2026-08-02-bor-v080-release/
181•eniac111•1d ago•26 comments

Show HN: Fuse – statically typed functional programming language

https://fuselang.org
113•the_unproven•1d ago•42 comments

Show HN: Runthru – open-source Interactive Demos

https://github.com/marktolson/runthru
5•marktolson•4h ago•0 comments

Show HN: Shitty – fast terminal. Memory-unsafe and faster than yours

https://github.com/pg83/shitty
158•pshirshov•17h ago•136 comments

Show HN: New Parts for Old Computers

https://newold.computer/
14•joshu•12h ago•0 comments

Show HN: Elevators

https://john.fun/elevators
1645•Jrh0203•3d ago•401 comments

Show HN: I'm a 15 Year Old Wannabe Engineer, This Is a Cycloidal Gearbox I Built

https://github.com/tom-ilan/cycloidal_gearbox
327•tomilan•1d ago•111 comments

Show HN: A MicroVM Launcher for BSD and Linux Guests on macOS/Linux (libkrun)

https://github.com/tsirysndr/bsdkrun
2•tsiry•6h ago•0 comments

Show HN: The best-paid AI/tech job anyone advertises pays $824k, not $100M

https://ctaio.dev/en/jobs/
4•norejisace•6h ago•2 comments

Show HN: Kuvu AI – Your All-in-One AI Creative Studio and Marketing Studio

https://kuvu.ai/
2•longyuanpro•7h ago•0 comments

Show HN: TermBoard – A TUI dashboard for Python projects

https://github.com/HeyShinde/TermBoard
2•heyshinde•7h ago•0 comments

Show HN: Do Codex skills save tokens? A six-run task-size benchmark

https://codex-howto-benchmark.nguyenvantamdk2.chatgpt.site
6•phelannguyen164•12h ago•1 comments

Show HN: Syncular – offline-first SQL sync with TypeScript and Rust cores

https://github.com/syncular/syncular
77•quambo•1d ago•27 comments
Open in hackernews

Show HN: Lunar, a "fast", memory-efficient Lua 5.1 VM written in Go

https://github.com/mmcdole/lunar
6•drakenot•2h ago
I'm releasing Lunar, a new Lua 5.1 compiler and virtual machine written entirely in Go. It includes the standard libraries, coroutines as well as supporting Lua 5.2-style goto.

The embedding API avoids the Lua C API’s stack-based interface in favor of typed Go values and callback frames. Libraries and script-file access are opt-in, so the host explicitly controls what Lua code can access.

On my current benchmarks and use-cases, Lunar is often ~1.5x to 2x faster than GopherLua and Shopify’s go-lua. Its largest improvement however is memory use: loading a 9 MB CBOR-derived object graph (hundreds of thousands of tables) allocates about 107 MB versus 785 MB with GopherLua, with roughly 72 MiB versus 542 MiB retained after GC.

The public API is still stabilizing, and I’d especially appreciate feedback on the embedding design and Go interface.

(Note that this project started in another repo when I still had hopes of porting some of my changes back upstream to another existing library.)

Comments

granganath•2h ago
This looks really cool! I'm still early career, so I don't have much technical feedback to give, but starred and excited to learn how it works
drakenot•1h ago
For those who are interested in what spawned this project:

https://runemud.com

I had been working on it for a couple years, using it myself. I finally released it recently. It heavily uses an embedded Lua VM to power its scripting engine.