frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GPT 5.5 Released in Codex

1•zuzululu•50s ago•0 comments

An Algorithmic Reconstruction of Normalisation by Evaluation

https://yangzhixuan.github.io/NbE.html
1•matt_d•2m ago•0 comments

Global energy markets are on the verge of a disaster

https://www.economist.com/finance-and-economics/2026/04/21/global-energy-markets-are-on-the-verge...
1•petethomas•13m ago•0 comments

Moving a tenant across PostgreSQL instances

https://ananthakumaran.in/2026/04/22/moving-tenant-across-postgresql-instances.html
1•ananthakumaran•16m ago•0 comments

Can EVs kill off petrol cars in China?

https://www.ft.com/content/c78e0368-cc57-4f92-ad62-a073e01ba73d
1•petethomas•19m ago•0 comments

Code, your choice: Netlify's stance on AI training data

https://www.netlify.com/blog/stance-on-ai-training-data/
1•kristianp•21m ago•1 comments

Changes to GitHub Copilot Individual Plans

https://simonwillison.net/2026/Apr/22/changes-to-github-copilot/
2•omer_k•23m ago•0 comments

Bob Dylan – Murder Most Foul (Official Audio) [video]

https://www.youtube.com/watch?v=3NbQkyvbw18
1•hkhn•25m ago•0 comments

The Mattering Instinct: How Our Deepest Longing Drives Us and Divides Us

https://rebeccagoldstein.com/the-mattering-instinct/
1•hkhn•26m ago•0 comments

OpenBSD – LibreSSL 4.3.1 Released

https://www.undeadly.org/cgi?action=article;sid=20260420085845
2•peter_hansteen•27m ago•0 comments

Elon Musk's SpaceX Endgame

https://www.theatlantic.com/technology/2026/04/elon-musk-starlink-satellites/686877/
2•paulpauper•29m ago•0 comments

The State of the Human Rights: April 2026

https://www.amnesty.org/en/documents/pol10/0320/2026/en/
1•hkhn•30m ago•0 comments

Hundreds trying to storm Wisconsin beagle research facility

https://www.msn.com/en-us/news/world/hundreds-trying-to-storm-wisconsin-beagle-research-facility-...
1•rguiscard•30m ago•0 comments

Happiness Feels

https://passiveaggressionoftheworlds.substack.com/p/how-happiness-feels
1•bunson_burner•34m ago•0 comments

Microsoft's GitHub grounds Copilot account sign-ups amid capacity crunch

https://www.theregister.com/2026/04/20/microsofts_github_grounds_copilot_account/
2•gpi•35m ago•0 comments

Ask HN: What Would Make Stack Overflow Great Again?

3•nnurmanov•40m ago•1 comments

Claude 4.7 blocks cyber prompts: before the fact vs. after the fact

https://raxitlabs.com/blogs/claude-47-five-layers-cyber-blocking
2•agairola•42m ago•0 comments

Show HN: XTTV, the App to watch long video from Twitter/X on Apple TV

https://apps.apple.com/us/app/xttv/id6757870255
1•ShawFei•42m ago•0 comments

Cognition without brains? Learning and memory in microorganisms

https://www.sciencedirect.com/science/article/pii/S0966842X26000909
1•the-mitr•42m ago•0 comments

Agent Harness Engineering

https://addyosmani.com/blog/agent-harness-engineering/
3•tanelpoder•46m ago•0 comments

Benchmarking Cloud vs. Local LLMs Why back end choice matters more than quant

https://arxiv.org/abs/2604.18566
2•tleitch•48m ago•0 comments

Ask HN: Is the internet getting more jank?

2•taurath•48m ago•1 comments

Everyone should have the opportunity to build their own house

https://reveriesofahuman.com/everyone-should-have-the-opportunity-to-build-their-own-house/
1•dartharva•50m ago•0 comments

Deeply Rooted

https://oxfordamerican.org/oa-now/deeply-rooted
1•gmays•52m ago•0 comments

HackerFork – Surfaces HN posts that never make the front page

https://hackerfork.com
2•saadn92•53m ago•1 comments

Sys. Review: The Impact of Covid-19 Vaccination on Myocarditis Risk and Recovery

https://www.mdpi.com/2039-7283/16/4/77
1•cratermoon•54m ago•0 comments

Netflix's AI deal puts the global VFX workforce at risk

https://restofworld.org/2026/netflix-interpositive-vfx-ai-automation/
3•jackyli02•55m ago•1 comments

FPGA-based tiled matrix multiplication accelerator for self-attention

https://arxiv.org/abs/2503.16731
3•sha_rad•56m ago•0 comments

Show HN: Proton VPN expands to 145 countries: A technical look at infrastructure

1•anju-kushwaha•59m ago•0 comments

Show HN: Aide – A customizable Android assistant (voice, choose your provider)

https://aideassistant.com/
1•yincrash•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•11mo 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!