frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Digit 5 Sets a New Bar for Humanoid Robot Safety

https://spectrum.ieee.org/humanoid-robot-safety
1•rbanffy•1m ago•0 comments

A.I.'S Effect on the Work Force Is Showing Up in Wages

https://www.nytimes.com/2026/09/16/business/ai-raises-hiring.html
1•marojejian•3m ago•2 comments

Combino – AI-Powered Daily Word Game

https://combino.io/
1•barbierocks•3m ago•0 comments

With 1 Extension: $20K in Bounties from Anthropic, Perplexity, Google, Microsoft

https://forever.security/blog/bragjack-hijacking-5-browsers-via-built-in-ai-assistants/
4•galwm•4m ago•1 comments

Nobel Laureate Michael Kremer Picked as World Bank Top Economist

https://www.bloomberg.com/news/articles/2026-09-16/nobel-laureate-michael-kremer-picked-as-world-...
1•paulpauper•4m ago•0 comments

What Regulatory Capture Looks Like [pdf]

https://danicaratelli.github.io/research/papers/Cybersecurity_GE.pdf
1•paulpauper•5m ago•0 comments

The 'But China ' Dilemma Driving the A.I. Race

https://www.nytimes.com/2026/09/15/opinion/ezra-klein-podcast-matt-sheehan.html
1•paulpauper•5m ago•0 comments

Show HN: A Coding Agent from Scratch

https://blog.softwarewrighter.com/2026/09/16/ai-tools-coding-agent-in-mlpl/
1•softwarewright•6m ago•0 comments

How is Wi-Fi node networking implemented in EasyMesh?

1•skaiuijing•6m ago•0 comments

Show HN: Font Generator

https://ufontgenerator.com/
1•artiomartiom•7m ago•0 comments

The Long Doomsday of A.I.

https://www.newyorker.com/culture/open-questions/the-long-doomsday-of-ai
1•halperter•7m ago•0 comments

Claude Cowork and chat are now one Claude

https://claude.com/blog/cowork-is-now-claude
1•vertigoruntime•10m ago•0 comments

We Must Create the Shit Machine

https://www.mcsweeneys.net/articles/we-must-create-the-shit-machine
1•CharlesW•10m ago•0 comments

WAP – World Action Protocol

https://github.com/world-action-protocol/wap
1•aralroca•11m ago•0 comments

Show HN:Reconstruct while retaining the generated judgments and explanations

https://cleanroom-qvq1xbb8o-ag3497120s-projects.vercel.app/
1•kofdai•11m ago•0 comments

Show HN: The Bill You Don't See Coming: AWS Extended Support Surcharges

https://greenops.cloud/blog/blog-deprecated-versions
1•depidsvy•11m ago•0 comments

I sent Google proof of a bot farm. They called it "normal user behavior."

https://dayzlegame.com/blog/google-ads-normal-user-behavior/
1•nickabe•11m ago•0 comments

Tin: A Text INdex for Postgres

https://planetscale.com/blog/introducing-tin
1•zombodb•12m ago•0 comments

Nano Empire – Open-source MCP gateway with x402 micropayments and A2A routing

https://nano-empire-mcp-1064490927432.us-central1.run.app
1•ainano•13m ago•0 comments

NHTSA Orders Tesla to Provide Answers on Cybercab Certification

https://driveteslacanada.ca/news/nhtsa-cybercab-special-order-aq26002/
5•daft_pink•13m ago•1 comments

Show HN: A free search console for grant making

https://data.charitysense.com/grants
1•mtweak•14m ago•0 comments

Show HN: The Temple of (online) Techno — MMO Rave World

https://hallucinate.site/?hn
1•stagas•14m ago•0 comments

Mice with human brain cells offer a tool to study disease

https://www.npr.org/2026/09/16/nx-s1-5968873/lab-mouse-human-brain-cells-organoid-disease-ethics
2•marojejian•15m ago•1 comments

Show HN: YOLO FPS-per-dollar numbers for edge AI boards ($75-$215)

https://github.com/chorylee/edge-ai-benchmarks
2•chorylee•15m ago•0 comments

GPT-6 Astra Controlling Blender for VFX

https://twitter.com/ryanvogel/status/2100251451758916047
4•ryanvogel•17m ago•0 comments

Venus may have swallowed its own moon

https://www.sciencedaily.com/releases/2026/09/260915232122.htm
2•bushwart•17m ago•0 comments

AI must not outrun safety controls, DeepMind co-founder warns

https://www.ft.com/content/0fc3ae6d-732e-4f08-950e-8669b1fcfd8e
1•saikatsg•18m ago•0 comments

Backflip: Apple now wants to train AI models with user data after all

https://www.heise.de/en/news/Backflip-Apple-now-wants-to-train-AI-models-with-user-data-after-all...
2•Topfi•18m ago•0 comments

Nvidia's AI Climate hoax – report

https://ketanjoshi.co/2026/09/16/nvidias-ai-climate-hoax-report/
2•hn_acker•18m ago•0 comments

Introducing the DeepMind Institute

https://institute.deepmind.com/essays/introducing-the-deepmind-institute/
3•jader201•19m 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!