frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Two Big Loan Defaults Add to Pain in Private-Credit Funds

https://www.wsj.com/finance/investing/two-big-loan-defaults-add-to-pain-in-private-credit-funds-b...
1•petethomas•1m ago•0 comments

The Coding Assistant Breakdown: More Tokens Please

https://newsletter.semianalysis.com/p/the-coding-assistant-breakdown-more
1•swolpers•1m ago•0 comments

The Last of the Lost Generation

https://porticoquarterly.com/book/the-last-of-the-lost-generation/
1•benbreen•2m ago•0 comments

AI written, edited or 'polished' books are being sold

https://theconversation.com/thousands-of-ai-written-edited-or-polished-books-are-being-sold-an-ee...
1•teleforce•2m ago•0 comments

Farewell ISDN, Ham Radio and Old Network Drivers: Linus Merges 138k LOC Removal

https://www.phoronix.com/news/Linux-7.1-Removes-Old-Net
1•voxadam•4m ago•0 comments

2 Men claimed a record by driving an old 3-wheel car length of Africa

https://apnews.com/article/adventure-car-africa-record-reliant-robin-0328f6a9dbcb407d539fe7aabf23...
1•gnabgib•4m ago•0 comments

Ask HN: Are We Destroying Earth?

2•vednig•6m ago•0 comments

Ancient DNA reveals pervasive directional selection across West Eurasia

https://www.nature.com/articles/s41586-026-10358-1
1•wslh•6m ago•0 comments

German cabinet approves 3-month IP address retention

https://europeanconservative.com/articles/news-corner/germany-merz-surveillance-ip-tracking-berli...
2•ExpertAdvisor01•18m ago•1 comments

GCC Establishes Working Group to Decide on AI/LLM Policy

https://www.phoronix.com/news/GCC-Working-Group-AI-Policy
1•breve•25m ago•0 comments

How Hard Is It to Open a File?

https://blog.sebastianwick.net/posts/how-hard-is-it-to-open-a-file/
1•vinhnx•25m ago•0 comments

Hotels are slashing World Cup rates as FIFA cancels rooms

https://moneywise.com/news/top-stories/fifa-world-cup-hotels-rates-tourism-slump
4•vrganj•37m ago•3 comments

Open VSX Sleeper Extensions Linked to GlassWorm Show New Malware Activations

https://socket.dev/blog/73-open-vsx-sleeper-extensions-glassworm
1•salkahfi•41m ago•0 comments

FilamentPHP MCP Server

https://github.com/suwi-lanji/filamentphp-mcp
1•bumi-kitan•43m ago•0 comments

Devin for Terminal

https://devin.ai/terminal
1•nickzana•44m ago•0 comments

The Bizarre Biology of Bdelloid Rotifers

https://biologicalrecording.co.uk/2025/09/23/bdelloid-rotifers/
2•thunderbong•44m ago•0 comments

SpaceX Starship Documentary – Test Like You Fly

https://www.spacex.com/content/starship/test-like-you-fly
1•d_silin•46m ago•0 comments

Xiaomi releases mimo-v2.5 model

https://mimo.xiaomi.com/mimo-v2-5
1•gainsurier•51m ago•0 comments

OpenAI's Sam Altman writes apology to community of Tumbler Ridge

https://www.cbc.ca/news/canada/british-columbia/sam-altman-tumbler-ridge-apology-9.7176482
3•acyou•51m ago•2 comments

Developing Trustworthy Information

https://jessicacanepa.com/blog/developing-trustworthy-information/
2•mooreds•53m ago•0 comments

YC as a Service

https://ycaas.lol
1•ipostragebait•54m ago•1 comments

Firefox Has Integrated Brave's Adblock Engine

https://itsfoss.com/news/firefox-ships-brave-adblock-engine/
13•nreece•56m ago•0 comments

Translinear Circuits as EML Natural Physical Substrate

https://zenodo.org/records/19749753
2•iranssantos•56m ago•1 comments

The Tail End (2015)

https://waitbutwhy.com/2015/12/the-tail-end.html
1•RyanShook•1h ago•0 comments

ZCAM: iOS camera app that cryptographically proves human authorship

https://zcam.succinct.xyz/
1•GZGavinZhao•1h ago•1 comments

Rippling exposed your SSN/banking to anyone who sent you an offer letter

https://infosec.exchange/@SecureOwl/116415101610028363
2•noiobeforebed•1h ago•0 comments

Useknockout – open-source background removal API, 40× cheaper than remove.bg

https://github.com/useknockout/api
3•tlorents•1h ago•0 comments

SF Giants sell piece of team to venture capital firm run by Joshua Kushner

https://www.sfgate.com/giants/article/sf-giants-joshua-kushner-22224927.php
1•iancmceachern•1h ago•0 comments

DevResolve – AI chat widget that answers technical questions from your docs

https://devresolve.ai
1•EthanWayne•1h ago•0 comments

Open source memory layer so any AI agent can do what Claude.ai and ChatGPT do

https://alash3al.github.io/stash?_v01
3•alash3al•1h 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!