frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Israeli fire kills girl student in Gaza, medics say

https://www.reuters.com/world/middle-east/israeli-fire-kills-girl-student-gaza-medics-say-2026-04...
2•lr0•1m ago•0 comments

IMDB created my account for merely visiting the site

3•astr0n0m3r•2m ago•0 comments

CNN investigation: Exposing a global 'rape academy'

https://www.cnn.com/interactive/2026/03/world/expose-rape-assault-online-vis-intl/index.html
3•1659447091•6m ago•0 comments

New to Hackerview

1•foxxyyybusiness•7m ago•0 comments

Show HN: Idontuselinkedin.com

https://idontuselinkedin.com
5•jmholla•9m ago•2 comments

InterviewGPT: Stop Guessing. Start Scaling. Land Your Dream FAANG Offer

https://interviewgpt.deepchill.app/
1•tiancaioyzy•9m ago•0 comments

Do Science in Bed

https://monsharen.github.io/Peer/
1•ycombinatornu•9m ago•0 comments

How Microsoft Abuses Its Users

https://lzon.ca/posts/other/microsoft-user-abuse/
2•jpmitchell•10m ago•0 comments

Apple and Lenovo have the least repairable laptops, analysis finds

https://arstechnica.com/gadgets/2026/04/apple-has-the-lowest-grades-in-laptop-phone-repairability...
1•josephcsible•12m ago•0 comments

Show HN: Solving digital piracy with game theory instead of DRM

https://piecely.app/explore
2•johndebord•12m ago•1 comments

Ford patents lip reading and emotion detection inside the car [video]

https://www.youtube.com/watch?v=g5V3cxjDaFU
2•_DeadFred_•15m ago•0 comments

Researchers turn recovered car battery acid, plastic waste into clean hydrogen

https://www.cam.ac.uk/research/news/researchers-turn-recovered-car-battery-acid-and-plastic-waste...
1•gmays•15m ago•0 comments

Open source, agentic knowledge bases for all of humanity's knowledge

https://alpharesearch.nyc/blog/launching-alpha-research/
1•rprend•16m ago•0 comments

Launch of Artemis II: Rocket Camera Views [video]

https://www.youtube.com/watch?v=mn7WMowM1xY
1•Yukonv•19m ago•0 comments

Moving from WordPress to Jekyll (and static site generators in general)

https://www.demandsphere.com/blog/rebuilding-demandsphere-with-jekyll-and-claude-code/
2•rgrieselhuber•19m ago•0 comments

Secure AI Agent Connections to Enterprise Tools

https://www.arcade.dev/blog/connect-ai-agents-enterprise-tools/
1•manveerc•20m ago•0 comments

What About Website Form Outreach

2•hjconstas•20m ago•0 comments

Show HN: We built the "LLM knowledge base" Karpathy described 9 yrs ago

https://mythos.one/me/brianswichkow/54528e
2•brianswichkow•23m ago•2 comments

Show HN: I built a weather site for the Eastern Caribbean

4•ashitlerferad•25m ago•0 comments

Rīgā, Madonas ielā, autovadītājus sagaida bīstami iegruvumi un bedres

https://lente.lv/latvija/raksts/riga-madonas-iela-autovaditajus-sagaida-bistami-iegruvumi-un-bedr...
1•janwebdev•25m ago•0 comments

I built an AI-powered Kanban board for your GitHub repos

https://github.com/Kill-The-Backlog/Kill-The-Backlog
1•jvaill•26m ago•1 comments

Codedb

https://github.com/justrach/codedb
1•handfuloflight•26m ago•0 comments

cplt is a sandbox for GitHub Copilot CLI using Apple's Seatbelt framework

https://github.com/navikt/cplt
1•starefossen•28m ago•0 comments

Parallel Worlds [video]

https://www.youtube.com/watch?v=85ECmDF5YFM
1•claude-ai•28m ago•0 comments

Relay

https://github.com/msllrs/relay
2•handfuloflight•28m ago•0 comments

China trailing behind in robot density

https://www.therobotreport.com/ifr-reports-robot-density-increase-across-europe-asia-americas/
2•ironyman•29m ago•0 comments

The Government's New 'Risk' Label for Anthropic Is a Turning Point For

https://beeble.com/en/blog/the-government-s-new-risk-label-for-anthropic-is-a-turning-point-for-t...
1•janwebdev•30m ago•0 comments

There Are Zero-Day Exploits for Your Mind

https://mikemorgenstern.substack.com/p/there-are-zero-day-exploits-for-your-mind
2•mikeyla85•30m ago•0 comments

Void Rescue System – 0.5M decoder for regression transformers

https://github.com/ikermoel/VRS-Void-Rescue-System
1•ikerM•31m ago•0 comments

Very good thank you information conglomerates

https://neuromatch.social/@jonny/116373289181802627
1•novemp•31m ago•1 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!