frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Clipps personal save library with relevant link extraction and an MCP server

https://clippsapp.com/
1•mkawell•1m ago•1 comments

Opus 4.7 is unusable. I am tired of the apologies

1•thinkingkite•2m ago•1 comments

Solod v0.1: Go ergonomics, practical stdlib, native C interop

https://antonz.org/solod-v0-1/
1•ingve•2m ago•0 comments

Molecular quantum nanosensors functioning in living cells

https://www.science.org/doi/10.1126/sciadv.aeb5422
1•bookofjoe•3m ago•0 comments

Show HN: A "Mental Background OS" to make unfinished thoughts end

https://mindbebop.com/mental-background-os.html
1•kentaroyamauchi•3m ago•0 comments

Shrinkflation Is Quietly Making All Gadgets Worse

https://gizmodo.com/shrinkflation-is-quietly-making-all-gadgets-worse-2000754565
1•cainxinth•4m ago•0 comments

Building the deployment tool I wish I had

https://ruuda.nl/2026/deptool
1•ruuda•5m ago•0 comments

A real Good Samaritan (2010)

https://www.bbc.com/news/magazine-12043294
1•downbad_•5m ago•1 comments

Show HN: Tracking market shifts before they become obvious

https://www.researchterminal.ai
1•ipachanga•6m ago•0 comments

Open Vibe: agent tutors you as you vibe code your SaaS app

https://wasp.sh/blog/2026/04/29/introducing-open-vibe
2•Martinsos•9m ago•0 comments

Show HN: Toposonico, a music recommender you can navigate

https://toposonico.com/#lon=-2.2852&lat=-7.0984&z=8.45&entity=album&rowid=4939391
1•deppep•10m ago•0 comments

When 'if' slows you down, avoid it

https://easylang.online/blog/branchless
2•chrka•10m ago•0 comments

A Collection of .gitignore Templates

https://github.com/github/gitignore
1•terminalbraid•10m ago•0 comments

Ask HN: How much trouble do you have with GitHub?

1•Myzel394•14m ago•1 comments

Extending JavaScript at once with a WASM language

https://github.com/naver/lispe/wiki/1.4-Extending-JS-at-once-with-a-WASM-language
1•clauderoux•15m ago•1 comments

Foam Knowledge Graph

https://foamnotes.com
1•ankitg12•15m ago•0 comments

How to start up as an individual developer?

1•alexyan0431•17m ago•0 comments

What Is Curiosity? Mathematically?

https://francesco215.github.io/Bayes-bandit/
1•Sacco215•17m ago•0 comments

Show HN: KubeAstra–Open-source AI agent that debugs and recovers Kubernetes pods

https://github.com/kubeastra/kubeastra
2•pruthviraja•17m ago•0 comments

Advertisers Meta Ad Performance Worst in Years

https://old.reddit.com/r/FacebookAds/comments/1ssnswl/we_turned_off_our_ad_account_15kday_today_f...
2•faangguyindia•18m ago•0 comments

Eugene Braunwald, Whose Research Reshaped Cardiology, Dies at 96

https://www.nytimes.com/2026/04/25/health/eugene-braunwald-dead.html
1•akbarnama•19m ago•0 comments

Goodbye Information Age

https://unherd.com/2026/05/goodbye-information-age/
1•voxleone•19m ago•1 comments

Tabwrangler: A browser extension to automatically closes your unused tabs

https://github.com/tabwrangler/tabwrangler
1•ankitg12•19m ago•0 comments

Show HN: Typewryte – Type through classics to read more deeply

https://www.typewryte.com/
2•rhowel33•19m ago•1 comments

Amazon Supply Chain Services: Amazon's Logistics Network

https://www.aboutamazon.com/news/retail/amazon-supply-chain-services-for-business
1•ksec•19m ago•0 comments

5k-year-old artificial island hidden in Scottish loch predates Stonehenge

https://archaeologymag.com/2026/05/5000-year-old-artificial-island-in-scottish-loch/
1•bookofjoe•20m ago•0 comments

The "Negative split" software engineering effect

https://newsletter.manager.dev/p/the-negative-split-software-engineering-effect
1•flail•22m ago•0 comments

Ladon – typed, resumable web crawlers in Python

https://github.com/MoonyFringers/ladon
1•feeder81•22m ago•0 comments

How the AP uncovered US big tech's role in China's digital police state

https://apnews.com/article/chinese-surveillance-silicon-valley-uyghurs-tech-xinjiang-00bed6421ad8...
4•ki4jgt•24m ago•0 comments

What is the current size of the Universe?

https://sci-bot.ru/what-is-the-current-size-e170
1•majkinetor•24m 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!