frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

US, Germany, Canada disrupt botnets that infected devices

https://www.reuters.com/business/media-telecom/us-says-it-disrupted-botnets-that-infected-over-3-...
1•thunderbong•23s ago•0 comments

Session: Send Messages, Not Metadata

https://getsession.org/
1•pretext•57s ago•0 comments

Human bias reminders can make AI decisions seem more acceptable, study finds

https://techxplore.com/news/2026-03-human-bias-ai-decisions.html
1•Brajeshwar•1m ago•0 comments

Briar: Secure Messaging Anywhere

https://briarproject.org
1•pretext•1m ago•0 comments

New Spider Mimics 'The Last of Us' Zombie Fungus Cordyceps

https://www.nytimes.com/2026/03/20/science/spider-cordyceps-fungus-zombies.html
1•wglb•2m ago•0 comments

Show HN: Agentic Algorithm Engineering

https://github.com/CHSZLab/AgenticAlgorithmEngineering
1•0x23•3m ago•0 comments

Making Traffic Jams with Lego Cars [video]

https://www.youtube.com/watch?v=kRPm3VDGqWE
1•twalichiewicz•3m ago•0 comments

Judge bars 2 Quebec men accused of fathering 100s of kids from donating sperm

https://globalnews.ca/news/11737620/philippe-normand-dominik-seelos-quebec-sperm/
2•canucker2016•4m ago•1 comments

After This Fungus Turns Ants into Zombies, Their Bodies Explode (2019)

https://www.nytimes.com/2019/10/24/science/ant-zombies-fungus.html
1•wglb•4m ago•0 comments

TraceLens – Paste an OpenTelemetry trace, get AI root cause analysis

https://tracelens.dev
1•solvepath•7m ago•1 comments

Grammarly cloned me for free; another AI company offered $2k to do the same

https://www.pcgamer.com/software/ai/first-grammarly-cloned-me-without-permission-then-another-ai-...
1•speckx•8m ago•0 comments

Do We Need a Programming Language Built Just for AI Agents?

https://lasans.blog/articles/thoughts/do-we-need-a-language-for-ai-agents/
1•lasgawe•9m ago•0 comments

I Built a Claude Code Hook Kit

https://github.com/Payshak/claude-hook-kit
1•paysh•10m ago•0 comments

Will Money Ruin Your Kids?

https://marcrandolph.substack.com/p/will-money-ruin-your-kids
2•theorchid•10m ago•0 comments

Sega Genesis Gets Long-Awaited Stock Ticker App 37 Years After Launch

https://hackaday.com/2026/03/19/sega-genesis-finally-gets-long-awaited-stock-ticker-app-37-years-...
1•nafnlj•10m ago•0 comments

Nano Banana Pro / Nano Banana 2 Prompt Library

https://promptsref.com/library/nano-banana-pro
1•eustoria•11m ago•0 comments

What we heard about Rust's challenges, and how we can address them

https://blog.rust-lang.org/2026/03/20/rust-challenges.md/
1•birdculture•12m ago•0 comments

Nvidia Vera CPU in Detail: High Perf Chip Takes Aim at Broader AI Server Market

https://www.servethehome.com/nvidias-vera-cpu-in-detail-high-perf-chip-takes-aim-at-broader-ai-se...
1•ksec•13m ago•1 comments

Am-I.exposed – Bitcoin Privacy Scanner

https://am-i.exposed/
1•eustoria•14m ago•0 comments

Clausona: Claude Code profile manager now auto-syncs plugins across accounts

https://github.com/larcane97/clausona
1•larcane•18m ago•0 comments

Seam Carving with Forward Energy

https://pictolab.io/seam-carving
1•ChadNauseam•19m ago•1 comments

Why the Iran War Will Not End? (Part 1/5)

https://open.spotify.com/episode/1PGqOD9KnJG9wlwa348NDP
1•shreshthdugar•20m ago•0 comments

Needful Windows Update

https://web.archive.org/web/20260320192752/https://blogs.windows.com/windows-insider/2026/03/20/o...
1•CppPro•21m ago•1 comments

Cline: Autonomous coding agent right in your IDE

https://github.com/cline/cline
1•pretext•23m ago•0 comments

Every open source PM2 dashboard is abandoned. So I built one

https://www.indiehackers.com/post/pm2-has-no-web-ui-every-open-source-alternative-is-dead-so-i-bu...
1•theorchid•26m ago•0 comments

Report and receive real-time ICE sighting alerts online in your neighborhood

https://antifreeze.app/
9•cf100clunk•27m ago•2 comments

Parents are refusing routine preventive care for newborns

https://apnews.com/article/babies-newborns-pediatricians-vitamin-k-hepatitis-b-erythromycin-91264...
13•geox•27m ago•0 comments

Fire experts 'kept awake' over growing hazard of lithium-ion batteries

https://www.theguardian.com/technology/2026/mar/20/fire-experts-losing-sleep-over-growing-hazard-...
4•Brajeshwar•28m ago•0 comments

Strategy in the New Missile Age

https://www.tandfonline.com/doi/full/10.1080/09636412.2025.2604503#abstract
1•paulpauper•30m ago•0 comments

David Botstein, Gene-Mapping Pioneer, Dies at 83

https://www.nytimes.com/2026/03/20/science/david-botstein-dead.html
1•paulpauper•31m 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•10mo 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!