frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I've Been Reading

https://antonyfb.com/blog/reading-straw-world.html
1•jruohonen•16s ago•0 comments

JavaScript / ECMAScript Internationalization (I18n)

https://www.jsi18n.com/
1•eustoria•1m ago•0 comments

Making my blog feel like other people are here

https://keith.is/post/playhtml-shared-header/
1•eustoria•2m ago•0 comments

Claude Fable 5.1 results on ARC-AGI

https://arcprize.org/results/anthropic-claude-fable-5-1
2•matt1•3m ago•0 comments

Aurem – ships real commits to your website from plain English, no coder needed

https://auremcto.com/
2•tjsandhu•4m ago•0 comments

A docs page is a long and complex search query to find AI agents

https://blog.val.town/aeo
3•stevekrouse•4m ago•0 comments

Pgwatch v6: dashboards reimagined, and a reaper that doesn't choke

https://www.cybertec-postgresql.com/en/pgwatch-v6-dashboards-reimagined-and-a-reaper-that-doesnt-...
1•blueshoess•5m ago•0 comments

Appletini: The Card for Everything [video]

https://www.youtube.com/watch?v=vyAJKuzkzYg
1•frizlab•6m ago•0 comments

I don't use a Computer [pdf]

https://classes.matthewjbrown.net/teaching-files/philtech/berry-computer.pdf
3•sashank_1509•11m ago•2 comments

UnitedHealthcare to drop prior authorization for range of conditions

https://www.reuters.com/legal/litigation/unitedhealthcare-drop-prior-authorization-requirements-r...
2•elo2000•11m ago•0 comments

Dark matter hunt takes unexpected turn after signal spotted in LZ detector

https://www.imperial.ac.uk/news/articles/natural-sciences/physics/2026/dark-matter-hunt-takes-une...
1•cisc•13m ago•0 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
2•all2•15m ago•0 comments

Panzoe Technologies

https://panzoe.ai/
1•roper1225•18m ago•0 comments

India preparing rollout of agentic payments on UPI

https://www.reuters.com/world/india/india-preparing-rollout-agentic-payments-upi-sources-say-2026...
1•alephnerd•19m ago•0 comments

The Nerd Reich wants to destroy democracy, and its mask has slipped

https://www.abc.net.au/news/2026-09-02/the-nerd-reich-silicon-valley-fascism-war-on-democracy-abc...
13•phs318u•20m ago•2 comments

Meta's Addictive Design

https://www.bitsoffreedom.nl/en/2026/07/22/metas-addictive-design/
2•jruohonen•21m ago•0 comments

Russia helping Iran develop supersonic cruise missiles

https://www.ft.com/content/6cf367bc-95b0-4f1f-b149-a25684adefc3
2•doener•22m ago•1 comments

A PCB business card with a batteryless LED, powered by the phone that taps it

https://www.kevin.md/the-business-card-that-lights-up.md/
1•thekevintang•22m ago•0 comments

It's simple to buy Canadian with O SCANada

https://www.oscanadaapp.ca/
2•cf100clunk•23m ago•0 comments

10 AI Lessons from Driving 200M+ Fully Autonomous Miles

https://waymo.com/blog/2026/08/10ailessons/
2•bookofjoe•24m ago•0 comments

Cryptocurrency Sucks – In excruciating detail [pdf]

https://redacted.moe/f/5b697982.pdf
4•Cyclone_•24m ago•0 comments

California ban on 'addictive' social media for teens heads to Newsom

https://www.politico.com/news/2026/08/31/social-media-addictive-ban-newsom-01058241
2•1vuio0pswjnm7•25m ago•0 comments

Cutting an AI agent's network access mid-run, measured at 127 ms

https://medium.com/data-science-collective/your-coding-agent-has-your-aws-keys-and-an-open-intern...
2•sebuzdugan•27m ago•0 comments

Kleinanzeigen's category tree, reverse-engineered (no official API exists)

https://github.com/Rebaiahmed/anzeigenboost-open
2•rebai94•28m ago•0 comments

Dyson Launches Toothbrush

https://www.dyson.com/oral-care/electric-toothbrush/camerajet/ceramic-ultra-blue
20•noja•29m ago•4 comments

Show HN: The Daily Set – an (over engineered) daily puzzle game

https://setpuzzle.com/
8•adamsvystun•30m ago•3 comments

Show HN: Groundbeat – I removed the email wall from my polling site

https://groundbeat.com
2•dgerken•31m ago•0 comments

Sosc Core to Institute AI Ban, Technology-Free Classrooms – UofChicago

https://chicagomaroon.com/53262/news/sosc-core-to-institute-ai-ban-technology-free-classrooms-thi...
1•pbui•31m ago•0 comments

Show HN: Teslacode.dev – use Claude Code on your Tesla screen

https://teslacode.dev
1•kvakkefly•32m ago•0 comments

Organisation-specific Git authentication and commit signing

https://jamesmead.org/blog/2026-04-19-organisation-specific-git-authentication-and-commit-signing
1•speckx•33m ago•0 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!