frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kinjo: The home lab menu I wanted

https://abbyssoul.github.io/engineering/2026/08/03/kinjo-the-home-lab-menu-i-wanted.html
1•sagevoid•2m ago•0 comments

ChessTUI: Chess but via Command Line

https://github.com/gslf/ChessTUI/releases/tag/v1.0.3
2•gioeleslfierro•3m ago•0 comments

Why is it all in the kernel?

https://lawrencecpaulson.github.io/2026/07/30/Collatz.html
1•vinhnx•4m ago•0 comments

Electric air taxis are finally ready for takeoff

https://fortune.com/2026/08/03/electric-air-taxis-joby-aviation-evtols-archer-aviation/
1•ryan_j_naughton•4m ago•0 comments

Ask HN: Freelancer? Seeking freelancer? (August 2026)

1•jon_north•4m ago•0 comments

Setting Up and Using the Pi Coding Agent

https://deepakness.com/blog/pi-agent-setup/
1•speckx•6m ago•0 comments

The OpenAI Hack Shows the Genie Is Out of the Bottle

https://www.schneier.com/blog/archives/2026/08/the-openai-hack-shows-the-genie-is-out-of-the-bott...
1•herbertl•6m ago•0 comments

Show HN: Self-hosted pet diary built on Frigate and a local vision model

https://github.com/bolt12/pet-report
1•bolt012•6m ago•0 comments

How fast is C++26's std:hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
2•arto•7m ago•0 comments

Plans for nuclear-powered merchant ships must confront risks

https://www.nature.com/articles/d41586-026-02388-6
1•Brajeshwar•7m ago•0 comments

Rebuilding and analysing 4 years of Wordle stats from WhatsApp chat logs

https://blog.omgmog.net/post/rebuilding-wordle-stats-from-whatsapp/
1•surprisetalk•8m ago•0 comments

What XPal Learned Putting a Consumer Messenger Through NIST's CAVP Validation

https://xpalapp.substack.com/p/xpal-messenger-nist-cavp-validation-process
1•Brandon-Coll•10m ago•0 comments

Celebrity Art

https://seths.blog/2026/08/celebrity-art-2/
2•herbertl•10m ago•0 comments

Apple Acquiring Materials Science Company PlasmaSolve

https://www.macrumors.com/2026/08/03/apple-acquiring-plasmasolve/
1•ksec•10m ago•1 comments

Reading Matters Deeply

https://aworkinglibrary.com/writing/reading-matters-deeply
1•herbertl•12m ago•0 comments

Energy and the Matter Problem

https://fojournal.org/essay/energy-and-the-matter-problem/
1•speckx•12m ago•0 comments

Vast AI Down

https://statusgator.com/services/vast
1•joeiq•13m ago•0 comments

What Compiled Orchestration Buys You: 3M Events/S in a Browser JVM

https://fluxtion-playground.dev/blog/2026-07-31-compiled-orchestration-performance
1•v12technology•14m ago•0 comments

Going Backward

https://antonz.org/going-backward/
1•WhyNotHugo•15m ago•0 comments

Understanding Entropy and Randomness (once and for all)

https://blog.clear-byte.com/understanding-entropy-and-randomness-once-and-for-all-9ac1e048ae70?sh...
3•kirillwolkow•17m ago•0 comments

1999999999999999999999

1•httpsnewsycombi•17m ago•0 comments

How to get better every week with AI

https://www.theaithinker.com/p/how-to-get-better-every-week-with
3•adamfaik•19m ago•0 comments

Show HN: Sentivel – a status page that tracks the providers you depend on

https://www.sentivel.com
1•jensonhirst•21m ago•0 comments

AI enthusiast mods BIOS with Claude Code, defeats RSA-2048 signature checks

https://www.tomshardware.com/laptops/ai-enthusiast-mods-bios-with-claude-code-ai-defeats-rsa-2048...
1•sbulaev•21m ago•0 comments

Volunteer cyber experts are helping protect rural water systems

https://www.cybersecuritydive.com/news/water-cybersecurity-def-con-franklin-outcomes/826517/
1•speckx•21m ago•0 comments

Show HN: Driftty – mobile focused web TTY

https://github.com/mdp/driftty
1•mdp•22m ago•0 comments

Is 'bra doping' a thing at the Tour de France Femmes?

https://cyclingmagazine.ca/sections/news/is-bra-doping-a-thing-at-the-tour-de-france-femmes/
1•astronads•22m ago•1 comments

Why Were the Dabaos Late?

https://www.crowdsupply.com/baochip/dabao/updates/why-were-the-dabaos-late
1•snvzz•23m ago•0 comments

Twenty Years of Pandoc

https://pandoc.org/twenty-years-of-pandoc.html
1•fiddlosopher•23m ago•0 comments

Show HN: Jotchi, a smart scratchpad for the busy brain

https://jotchi.com/app
1•andyfilms1•24m ago•0 comments
Open in hackernews

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

https://github.com/mmcdole/lunar
5•drakenot•58m 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•53m 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•32m 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.