frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nobel laureate Omar Yaghi joins Tsinghua to lead AI materials lab

https://www.nationpress.com/sciencetech/nobel-chemist-yaghi-moves-to-tsinghua
1•signa11•56s ago•0 comments

ZeroFS vs. Amazon S3 Files

https://www.zerofs.net/blog/zerofs-vs-aws-s3-files/
1•Eikon•1m ago•0 comments

The Toughest Material on Earth

https://phys.org/news/2022-12-toughest-material-earth.amp
1•lemonberry•3m ago•1 comments

Nugan Hand Bank

https://en.wikipedia.org/wiki/Nugan_Hand_Bank
1•stein1946•5m ago•0 comments

AgentKindergarten – daycare for your AI coding agents

https://github.com/rokrak1/agentkindergarten
1•rokrak•7m ago•0 comments

Codex now encrypts messages passed to subagents

https://github.com/openai/codex/issues/28058
1•gck1•8m ago•0 comments

Show HN: The MCP Census – 15,382 MCP servers, health-checked

https://mcpcensus.pages.dev/report
1•jveldsman•11m ago•0 comments

Making history : China lands rocket during an orbital launch for first time

https://www.space.com/space-exploration/launches-spacecraft/making-history-china-lands-rocket-dur...
1•signa11•16m ago•0 comments

Show HN: Richest people in the world by wealth creation instead of ownership

https://anti-forbes-list.vercel.app
1•sakshyampatro•21m ago•0 comments

Air conditioners were originally invented for printing presses

https://historyfacts.com/science-industry/fact/air-conditioners-invented-for-printing-presses/
1•thunderbong•23m ago•0 comments

Macintosh 9: Finder: View as Button (2024)

https://getbootstrap.com/docs/5.2/examples/blog/
1•haunter•26m ago•1 comments

Show HN: Create realistic group photos in real time with AI

https://pixailer.com
1•keenthinker•26m ago•2 comments

El Niño Is Wreaking Havoc on Pacific Fisheries

https://www.wired.com/story/el-nino-wreaking-havoc-on-pacific-fisheries/
1•beardyw•28m ago•0 comments

Lumvelle Drops ReviEwS (2026): We Tried It My Honest Review

https://gamma.app/embed/Lumvelle-Drops-ReviEwS-2026-We-Tried-It-My-Honest-Review-8ki1ftfh003qqdn
1•brentrq•29m ago•0 comments

Documentation is still in your Mum's filing cabinet

https://gerireid.com/blog/organising-documentation-for-humans-and-ai/
1•eigenBasis•34m ago•0 comments

Ask HN: Does your website work on Nordstjernen Web Browser?

1•roschdal•36m ago•1 comments

World Model Is the New Inflection Point

https://rajatghosh11.substack.com/p/one-model-to-rule-them-all
1•rghosh8•36m ago•0 comments

A font that humans can read but AI cannot

https://www.mixfont.com/ghost-font
2•justswim•38m ago•0 comments

Show HN: Image Generation API with QR code tracking and MCP support

https://templateson.com
1•maz225•38m ago•0 comments

Cost vs. accuracy in CursorBench 3.1: the effect of family and spend

https://www.shibaprasadb.com/2026/07/09/cursorbench-analysis.html
1•shibaprasadb•40m ago•0 comments

Show HN: A strategic word game where you make many words with 1 letter per turn

https://play.letterphile.com
1•sonOfHades•41m ago•1 comments

The Personal Safe – Zero-knowledge encrypted backup for your own S3 bucket

https://github.com/wocdamjack/thepersonalsafe
1•wocdamjack•43m ago•0 comments

Lumvelle ReviEwS (2026): We Tried It My Honest Review

https://gamma.app/embed/Lumvelle-ReviEwS-2026-We-Tried-It-My-Honest-Review-ge43hr5uq6eoxu3
1•bayszalu•45m ago•0 comments

Safari sidebar silently loads loads all your bookmarks

https://lapcatsoftware.com/articles/2026/7/1.html
3•JumpCrisscross•48m ago•0 comments

Open-source finance infrastructure in Rust

https://www.railsinfra.com
1•sibabale•57m ago•1 comments

Almost $1B Later, the US Still Can't Make a Medical Glove

https://www.bloomberg.com/news/features/2026-07-07/why-it-s-so-difficult-to-produce-100-american-...
21•helsinkiandrew•59m ago•10 comments

Consumers unsatisfied despite world-class networks

https://billbennett.co.nz/nz-telecom-customer-satisfaction-declines-comcom-report/
1•JumpCrisscross•1h ago•0 comments

New Earth Time – 360 degrees of time (2000)

https://newearthtime.net/
2•networked•1h ago•0 comments

FCC weighs changing E-Rate program, which lowers school internet bills

https://www.npr.org/2026/07/10/nx-s1-5878405/fcc-erate-schools-internet-discount
2•jonbaer•1h ago•0 comments

Microsoft latest report shows 25% emissions raised due to AI data centers

https://www.windowscentral.com/microsoft/dropping-greenwashing-credits-and-expanding-ai-datacente...
4•pjmlp•1h 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!