frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A 27B model matched GLM-5.3-Flash once we closed the benchmark leaks

https://aistack.imec-int.com/blog/agents-peeking
1•flifenstein•1m ago•0 comments

Airspace: The Database You Have

https://getair.space/
1•ferriswil•1m ago•1 comments

Who bankrolls the AI agent swarm?

https://noperator.dev/posts/who-bankrolls-the-ai-agent-swarm/
1•noperator•2m ago•0 comments

Lovable rewrites Vite in Rust – Reduces memory usage by 10x

https://lovable.dev/blog/faster-previews-oj
3•vikeri•3m ago•0 comments

Scavenger – harvest any working piece of a page, hotwire it into HTML

https://github.com/octantes/scavenger
1•octantes•4m ago•0 comments

So you want to use OpenRouter?

https://simonwillison.net/2026/Sep/11/so-you-want-to-use-openrouter/
1•hndhyc0bdt•4m ago•0 comments

How and Why We Bought 4x DGX Sparks

https://blog.alexellis.io/how-and-why-we-bought-4-dgx-sparks/
1•alexellisuk•6m ago•0 comments

Agentic test processes, LLM benchmarks, and other notes on agentic coding

https://danluu.com/ai-coding/
2•admp•7m ago•0 comments

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
1•arnemunthekaas•7m ago•0 comments

Started Learning Pentesting

1•muzan•8m ago•0 comments

An Ode to Links

https://blog.jim-nielsen.com/2026/ode-to-links/
1•speckx•9m ago•0 comments

I Built a Python SDK to Debug RAG Pipelines

https://github.com/mohamedaminefezzani/rag-debugger
1•za3ter•13m ago•1 comments

16 of 32 well-known sites block at least one AI search crawler

https://ai-visibility.lastminutedealshq.com/who-blocks-ai-search
1•reesecalder•13m ago•0 comments

Prisma's pgbouncer=true on Supabase made every query 4 round-trips (postmortem)

https://blog.simbastack.com/four-round-trips-six-months/
1•asenna•13m ago•0 comments

Why Most Published Research Findings Are False – PLOS Medicine

https://journals.plos.org/plosmedicine/article?id=10.1371/journal.pmed.0020124
1•bilsbie•14m ago•0 comments

95% of airline websites fail Core Web Vitals

https://calibreapp.com/blog/airline-websites-are-slow
2•benschwarz•14m ago•1 comments

Show HN: Disconnect – an iOS app blocker only a friend can unlock

https://apps.apple.com/us/app/digital-detox-lock-disconnect/id6743134572
1•shuaib•16m ago•0 comments

Three changes Madring will make after terrible F1 debut

https://www.the-race.com/formula-1/madring-f1-spanish-gp-circuit-three-changes-planned-2027/
1•Markoff•16m ago•0 comments

Open weights are not open source: Why AI's favorite label is under dispute

https://www.theregister.com/columnists/2026/09/15/open-weights-are-not-open-source-why-ais-favori...
4•pseudolus•17m ago•0 comments

Gnu/Hurd strikes back: How to use it in a (somewhat) practical way (2023)

https://mhatta.medium.com/gnu-hurd-strikes-back-4021433d506d
2•bmacho•18m ago•2 comments

Performance Improvements in .NET 11

https://devblogs.microsoft.com/dotnet/performance-improvements-in-net-11/
2•soheilpro•20m ago•0 comments

How to optimize websites for fast loading and slow network speeds

https://xnacly.me/posts/2022/web-performance/
1•ibobev•20m ago•0 comments

Show HN: VectisPDF – Fast, private in-browser PDF suite (No uploads, Rust/WASM)

2•Sacha-Builds•20m ago•0 comments

Rust 1.97.1

https://blog.rust-lang.org/2026/07/16/Rust-1.97.1/
2•hnd9q09qk4•21m ago•0 comments

Show HN: A 24/7 video channel where $5 puts your ad on air in about a minute

https://letmeshowyou.live
2•spotlayn•22m ago•0 comments

Security Essentials MVC Project Template

https://github.com/johnstaveley/SecurityEssentials/
1•Brysonbw•22m ago•0 comments

Show HN:Brewser, a web engine from scratch for the modded Nintendo Switch

https://brewser.io/
1•natureglass•22m ago•0 comments

US Military confirms it has deployed weapons in space

https://www.cnn.com/2026/09/15/science/us-space-force-weapons-capabilities-hnk
2•haunter•22m ago•0 comments

What if only one allocation needs to be borrow checked?

https://nitinm.dev/blog/gradual_ownership_in_a_high_level_language
2•chess10kp•23m ago•0 comments

Who funds METR? The viral Anthropic funding thread

https://tokenstead.ai/guides/who-funds-metr-anthropic-thread-audited
3•cdnsteve•24m 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!