frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Artificial beaver dams saw juvenile coho salmon survival rates go from 8% to 60%

https://www.discoverwildlife.com/animal-facts/artificial-beaver-dams-california
1•speckx•55s ago•0 comments

Omacom Foundation hires kernel developer Krzysztof Wilczyński

https://omarchy.org/news/2026/09/omacom-foundation-hires-krzysztof-wilczynski/
1•TiredOfLife•1m ago•0 comments

Trump administration aims to strip schools' tax exemption if they consider race

https://www.washingtonpost.com/education/2026/09/03/trump-administration-aims-strip-schools-tax-e...
1•dataflow•2m ago•0 comments

A Cop's Case for Flock

https://www.worksinprogress.news/p/a-cops-case-for-flock
1•abe94•3m ago•0 comments

Show HN: Caption and Cut removes pauses and filler words, burns in captions

https://captionandcut.app/
1•markusegonkuhn•4m ago•0 comments

Brazil's $97M Discord Lawsuit Could Reshape Big Tech Regulation

https://medium.com/@theanalyst410/feature-bans-vs-d10a86ccf5b7
2•souvic•6m ago•0 comments

IMABO: infinitely many-armed bandit with an oracle for hyperparam optimization

https://github.com/Tiime-Software/IMABO
1•Bluestein•7m ago•0 comments

Put-That-There

https://interfacemuseum.com/exhibits/put-that-there/
1•tosh•7m ago•0 comments

Ask HN: Laptop or Desktop?

2•Gecko4072•7m ago•1 comments

Homegrown Auth Is a Business Continuity Risk, Not Just a Security Risk

https://fusionauth.io/blog/homegrown-auth-business-continuity-risk
3•mooreds•7m ago•0 comments

Lipogram

https://en.wikipedia.org/wiki/Lipogram
1•thunderbong•8m ago•0 comments

Realtime Streaming of Synchronized Video, Audio, and Control Feeds

https://kyber.tech
1•r3trohack3r•9m ago•0 comments

OpenAI's new reasoning technique alarms AI safety experts

https://techcrunch.com/2026/09/02/openais-new-reasoning-technique-alarms-ai-safety-experts/
2•Brajeshwar•11m ago•0 comments

Show HN: Snowglobe: a whole distributed system's OpenTelemetry, from one binary

https://github.com/ImmersiveFusion/snowglobe
1•dkowalski•11m ago•1 comments

Texas Data Center Map: See where data centers are operating or planned

https://www.kxan.com/news/texas/texas-data-center-tracker-see-where-600-projects-are-operating-or...
4•simonpure•12m ago•0 comments

Lustro by Ligatum

https://github.com/Ligatum/Lustro
2•Ligatum•13m ago•0 comments

Tuft and Needle

https://oleander.dev/blog/tuft-and-needle
2•phixMe•13m ago•0 comments

CitePrism, see whether ChatGPT, Gemini and Perplexity recommend your brand

https://citeprism.com/
1•vernu•13m ago•0 comments

Prediction: AI Will Collapse

https://twitter.com/wordgrammer/status/2095263188153401712
6•asdev•13m ago•0 comments

Show HN: Dagic – a typed DAG language so LLM agents can compose tool calls

https://github.com/RohitEdathil/dagic
1•RohitEdathil•13m ago•1 comments

Trojan horses to AI-proof exams: how professors are tackling students' AI use

https://www.nature.com/articles/d41586-026-02370-2
1•speckx•14m ago•0 comments

Show HN: The Ninety Nine Names of Allah Android App

https://play.google.com/store/apps/details?id=io.github.muntasimulhaque.ninetynine
1•muntasimulhaque•15m ago•0 comments

Show HN: A search for meaning: retrieval methods visualized

https://www.parsewise.ai/search-for-meaning
1•gergelycsegzi•16m ago•1 comments

W3C: In-Browser Email Verification API

https://github.com/WICG/email-verification
1•michael-sumner•16m ago•0 comments

Google WeatherNext 3

https://deepmind.google/science/weathernext/
1•matthieu_bl•16m ago•0 comments

Beware: Malicious Profiles on YC Co-Founder Matching

4•pain_perdu•20m ago•0 comments

Ask HN: Can we classify AI as: subhuman, quasihuman, human, superhumam?

1•aunekiaru•20m ago•1 comments

Not Your Compute, Not Your Model

https://deskofjim.com/blog/compute/
2•jamesbaker1•21m ago•0 comments

Scientists, Not Lawyers

https://www.robw.fyi/2026/09/02/scientists-not-lawyers/
1•someguy101010•21m ago•0 comments

Show HN: A Context Registry for AI coding agents

https://context.apimatic.io/
5•sohaibtariq•22m 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•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!