frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bespoke: A Programming Language for People Who Say Please – Larvitz Blog

https://blog.hofstede.it/bespoke-a-programming-language-for-people-who-say-please/
1•rbanffy•6m ago•0 comments

Music Theory

https://brianberns.github.io/
1•thunderbong•7m ago•0 comments

Show HN: Revival of the Personal Web

https://straw.page/explore
1•chickenman•8m ago•0 comments

Army to spend $465M on 'Group 3 killer' anti-drone laser

https://taskandpurpose.com/news/army-locust-laser-drone-killer/
1•bushwart•14m ago•0 comments

ROCm 10.0: A Decade of Open Compute, Built for the Age of Agentic AI

https://rocm.blogs.amd.com/ecosystems-and-partners/rocm-x-blog/README.html
2•metrofun•15m ago•0 comments

AI Is Already Making Us Less Human

https://www.theatlantic.com/ideas/2026/09/open-ai-consciousness-morality/688535/
1•pseudolus•23m ago•2 comments

GPT-6 Astra beats portal [video]

https://www.youtube.com/watch?v=g5u2y0BwRJ0
1•aizk•26m ago•0 comments

Airbnb cut authentication code by 60% with server-driven flows

https://medium.com/airbnb-engineering/flexible-authentication-reimagining-authentication-for-mill...
2•CoderLim110•37m ago•0 comments

Where Temporary Decisions Become Permanent Behavior

https://medium.com/@gurvinder372/article-8-where-temporary-decisions-become-permanent-behavior-0f...
2•gps372•38m ago•0 comments

216M Spy TVs – The LG Smart TV Problem [video]

https://www.youtube.com/watch?v=6IFVTcM28KA
4•treve•39m ago•0 comments

MathKernel: An evidence-aware multi-engine mathematics kernel and MCP server

https://github.com/Staatsgeheim/MathKernel
2•staatsgeheim•40m ago•0 comments

Meditations on Moloch (2014)

https://www.slatestarcodexabridged.com/Meditations-On-Moloch
1•vermilingua•52m ago•0 comments

The Death of Educational Content on YouTube [video]

https://www.youtube.com/watch?v=-Gnrp_caPvo
1•josephcsible•54m ago•1 comments

Prediction of maternal and infant outcomes with a Mother-Child AI agent

https://doi.org/10.1038/s41591-026-04694-y
1•sbulaev•54m ago•0 comments

LED Sports Ticker – A high-performance 60fps stadium-style scoreboard

https://play.google.com/store/apps/details?id=com.tickerled.sports&hl=en_US
1•scrolling•1h ago•0 comments

Hard-Chat – A serverless, RAM-only P2P terminal chat

https://github.com/mrhardlint/Hard-Chat
3•hardlint•1h ago•0 comments

Five dead after Amazon-branded cargo plane overruns runway at Miami airport

https://www.nbcnews.com/news/us-news/amazon-plane-crash-miami-rcna596369
1•r_singh•1h ago•0 comments

App Review Shenanigans

https://kaylees.site//app-review-shenanigans.html
3•latexr•1h ago•1 comments

Four Weeks of a Vegan Diet Alter Signs of Inflammation and Aging

https://www.uniklinik-freiburg.de/en/press/press-releases/detailed-view/6938-vier-wochen-vegane-e...
24•marvinborner•1h ago•21 comments

CrisperWhisper – Speech to Text Model That Transcribes What You Say Verbatim

https://github.com/nyrahealth/CrisperWhisper
2•Curiositry•1h ago•0 comments

The Turpentine Effect (2010)

https://ribbonfarm.com/2010/03/18/the-turpentine-effect/
2•Curiositry•1h ago•0 comments

Pivot to AI safety, I beg you

https://ceselder.substack.com/p/pivot-to-ai-safety-i-beg-you
7•doitLP•1h ago•6 comments

Genius AI Detector

https://geniusaidetector.com/
1•ohjeez•1h ago•0 comments

When the Building Becomes the Computer

https://medium.com/@Radomako/when-the-building-becomes-the-computer-ea91674841e2
2•richieadomako•1h ago•0 comments

Show HN: Find people who share your taste in books, films, and music

https://www.joinstratum.app/
1•JeffreyInyang•1h ago•0 comments

An MCP for Telling the Time?

https://smithery.ai/servers/wolfendentheo/Stamp
2•Facingsouth•1h ago•1 comments

Draw the Rest of the Owl

https://luke.zip/posts/draw-the-owl/
3•yathern•1h ago•0 comments

Show HN: Maths.free – Learn all of maths, in order

https://maths.free/
2•nadermx•1h ago•2 comments

I'm a father who studies the impact of AI: this is what parents need to know

https://www.theguardian.com/technology/2026/sep/06/daniel-susskind-father-studies-ai-artificial-i...
1•lemming•1h ago•2 comments

UN backs new map showing Africa's true relative size with US alone in opposition

https://www.npr.org/2026/09/04/nx-s1-5958611/africa-world-map-un-vote
13•anticorporate•1h ago•9 comments
Open in hackernews

Show HN: AnuDB – A RocksDB-Backed Embedded Database for Pi (With Benchmark)

https://github.com/hash-anu/AnuDB
1•hashmak_jsn•1y ago
Hi HN,

I’ve been working on AnuDB, a lightweight embedded key-value database backed by RocksDB, optimized for low-power devices like the Raspberry Pi.

It's designed as an alternative to SQLite in scenarios where high concurrency and write-heavy workloads matter.

I benchmarked AnuDB vs SQLite (with WAL mode) on a Raspberry Pi (ARMv7). Both were cross-compiled. Here are the results:

Benchmark: Operations per second (Ops/s)

Insert: AnuDB 448 | SQLite 839

Query: AnuDB 55 | SQLite 30

Update: AnuDB 408 | SQLite 600

Delete: AnuDB 556 | SQLite 1942

Parallel (10 threads): AnuDB 413 | SQLite 1.5

While SQLite is highly optimized for single-threaded operations, it struggles under multi-threaded writes. AnuDB, using RocksDB, handles parallel operations much better.

GitHub:

AnuDB: https://github.com/hash-anu/AnuDB

Benchmark: https://github.com/hash-anu/AnuDBBenchmark

Would love feedback on:

Use case suggestions

Benchmarking approaches

Whether this could be useful in your projects

Thanks!