frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

About 100 firefighters are convicted of arson, every year

https://www.firerescue1.com/arson-investigation/articles/expert-firefighter-arson-a-long-standing...
1•gurjeet•1m ago•0 comments

Fireside Friday, July 31, 2026 (On The Odyssey)

https://acoup.blog/2026/07/31/fireside-friday-july-31-2026-on-the-odyssey/
1•Tomte•5m ago•0 comments

Loora: Design files your agent can edit

https://loora.design/
1•handfuloflight•5m ago•0 comments

A.I. Books Sneak Their Way into Stores

https://www.nytimes.com/2026/07/28/books/ai-bookselling-amazon.html
1•lxm•6m ago•0 comments

Climate Change Is Moving Mountains

https://www.theatlantic.com/science/2026/07/climate-change-land/688129/
1•littlexsparkee•12m ago•0 comments

Ask HN: Anyone got DeepSeek-v4-flash-0731 running using antirez/ds4?

1•freakynit•13m ago•0 comments

BMW Spider-Man in-car advertising

https://consumerrights.wiki/w/BMW_Spider-Man_in-car_advertising
40•goplayoutside•26m ago•9 comments

MiniMax H3: Open weights Omni-modal model

2•ignoramous•28m ago•0 comments

The Cost of China's Free A.I

https://www.nytimes.com/2026/07/29/opinion/ai-china-us-free-models.html
3•lxm•29m ago•0 comments

The development pipeline is a production system

https://sundry.jerryorr.com/2026/07/31/development-pipeline-is-a-production-system
12•firefoxd•35m ago•0 comments

What Is MiniMax H3? Everything You Need to Know About the Hailuo 3.0 Video Model

https://minimaxh3.art/blog/what-is-minimax-h3
2•wangneo276•36m ago•0 comments

Saudi PIF's $55B EA deal gets EU approval under subsidy rules

https://www.reuters.com/legal/transactional/saudi-pifs-55-billion-ea-deal-gets-eu-approval-under-...
2•doughnutstracks•39m ago•0 comments

US lawmakers investigate DoorDash's use of Moonshot AI's Kimi K2.6 model

https://www.scmp.com/news/china/diplomacy/article/3362616/us-lawmakers-investigate-doordashs-use-...
4•fragmede•41m ago•2 comments

Situational Awareness Holdings Report

https://last10k.com/sec-filings/2045724
2•ijidak•44m ago•0 comments

History of Submarine Telegraphy

https://atlantic-cable.com/
2•walrus01•44m ago•0 comments

Doom on Emacs

https://github.com/minad/doom-on-emacs/tree/3830991bd3d69a9426498ee4a3dc8b55c8eb2eb5
2•signa11•49m ago•0 comments

AI broke writing as proof-of-thought

https://hereisyourbrain.substack.com/p/ai-generated-content-mind-virus
5•prdgl_daughter•57m ago•0 comments

Claude 5 family's hallucinations look a lot like internal Anthropic emails

https://github.com/alectrocute/dario-and-amanda-prompt/blob/main/outputs.md
3•arm32•58m ago•2 comments

Snapcompact: SoTA compaction – instant, local, free. Pick 3

https://stencil.so/blog/snapcompact
2•mji•59m ago•0 comments

The One That Says IT All

https://liljrxsoverign.substack.com/
2•liljr20•1h ago•0 comments

Bearded Vulture

https://en.wikipedia.org/wiki/Bearded_vulture
3•petethomas•1h ago•1 comments

Show HN: Open source React Native debugging studio

https://www.nativescope.dev
3•guigg•1h ago•1 comments

Why bowling alleys are replacing pins with strings [video]

https://www.youtube.com/watch?v=vhjp--rA9ho
2•hydrox24•1h ago•0 comments

Flint: A Visualization Language for the AI Era

https://microsoft.github.io/flint-chart/
13•vinhnx•1h ago•3 comments

Firefox Local Mode for Web Developers

https://firefox-source-docs.mozilla.org/devtools-user/local_mode/index.html
6•csmantle•1h ago•0 comments

Leopold Aschenbrenner built a $45B AI hedge fund – and lost most of it in days

https://www.cnbc.com/2026/07/31/leopold-aschenbrenner-situational-awareness-fund-fire-sale.html
4•gilfoyle_7•1h ago•1 comments

Abora OS – A NixOS based distro

https://www.aboraos.org/
2•gallon-poem•1h ago•0 comments

I Work at Micro-Center (1985) [video]

https://www.youtube.com/watch?v=0ywbd76wVtk
2•doublepg23•1h ago•1 comments

Snapchat joins other popular platforms in fight against 'AI slop'

https://www.bbc.com/news/articles/c77g6dm5pr8o
2•vinni2•1h ago•0 comments

How Did America Get Its Name? (2016)

https://blogs.loc.gov/loc/2016/07/how-did-america-get-its-name/
2•thunderbong•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•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!