frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenRouter is advertising popular Chinese models as based in Singapore

https://openrouter.ai/providers
1•K3N0B1•1m ago•0 comments

MIT student claims to synthesize dangerous chemical, prompting hazmat response

https://www.nbcboston.com/news/local/mit-chemical-hazmat-building-18/4006077/
1•rbanffy•1m ago•0 comments

Create QR codes for $1/month

https://www.createqrcodes.io
1•mattmerrick•2m ago•0 comments

Renderformer V2 (Full neural rendering)

https://renderformer.github.io/v2/
2•E-Reverance•9m ago•0 comments

Use of 'Reasonable' in Gun Control Advocacy

https://firearmsresearchcenter.org/working_papers/use-of-reasonable-in-gun-control-advocacy/
2•delschlangen•10m ago•0 comments

Mcptestkit

https://pypi.org/project/mcp-testkit/
2•opiniateddev•15m ago•0 comments

Fast Unicode (UTF-8) validation with autovectorization

https://nitely.github.io/2026/08/30/fast-unicode-utf-8-validation.html
1•nitely•28m ago•0 comments

I ran out of AI tokens in one app while holding unused tokens in another

1•nextma•31m ago•1 comments

40k Pounds of Pabst Blue Ribbon Beer Reported Stolen in California

https://www.nytimes.com/2026/08/29/business/pabst-beer-truck-stolen-california.html
1•ChrisArchitect•31m ago•0 comments

Tell HN: STOP making Vibe Slop websites that LAG on my MBP and workstation

2•moomoo11•33m ago•1 comments

Establishing the United States Space Academy – The White House

https://www.whitehouse.gov/presidential-actions/2026/08/establishing-the-united-states-space-acad...
3•rbanffy•34m ago•1 comments

Dancing Bot (Stepmania)

https://dominickp.github.io/dancing-bot/
2•dominick-cc•35m ago•2 comments

How Wingman is able to be client agnostic

https://docs.wingman.actor/concepts/clients/
1•ChaseRensberger•35m ago•1 comments

California lawmakers unanimously pass Linux exemption from age-verification law

https://www.tomshardware.com/software/linux/california-lawmakers-unanimously-pass-linux-exemption...
3•shscs911•36m ago•0 comments

You have to beat the models at something

https://www.seangoedecke.com/you-have-to-beat-the-models-at-something/
4•sam_bristow•40m ago•0 comments

There's no such thing as Just a Tool

https://deadsimpletech.com/blog/no-such-thing-as-just-a-tool
2•cratermoon•44m ago•0 comments

Ask HN: Hard Mode for LLMs

1•Harlekuin•46m ago•0 comments

Show HN: Memnest, local-first memory shared by pi, Claude Code and Codex

https://github.com/Blue-B/memnest
1•blue-b•47m ago•0 comments

China's AI Revolution and the Ideology of Xi Jinping

https://kevinrudd.com/media/anu-centre-for-china-in-the-world-annual-lecture-2026
1•verdverm•49m ago•1 comments

The Engineer as a Learning-System Builder

https://eug.github.io/posts/engineer-as-learning-system-builder.html
2•eugf_•54m ago•0 comments

World's first battery-powered self-unloading bulk carrier starts in Australia

https://www.bunkerindex.com/articles/article.php?a=23396&h=worlds-first-battery-powered-self-unlo...
3•thunderbong•55m ago•0 comments

LibreOffice 28.8

https://en.libre-office.fr/article.php/libreoffice-26-8-release-key-features-you-need-to-know
2•linuxkernal•57m ago•0 comments

Best AI Quiz Generator?

https://quizroom.ai
1•taimurkazmi•1h ago•1 comments

No Country for Mediocre Mathematicians

https://garvvee.substack.com/p/no-country-for-mediocre-mathematicians
6•reasonableklout•1h ago•2 comments

Popular code generator for TanStack Query hit by supply chain worm

https://www.aikido.dev/blog/popular-code-generator-for-tanstack-query-hit-by-supply-chain-worm
4•lbw1215•1h ago•0 comments

Algorithmic Rent-Pricing Litigation Expands Under New State and Local Laws

https://www.morganlewis.com/pubs/2026/08/algorithmic-rent-pricing-litigation-expands-under-new-st...
10•toomuchtodo•1h ago•1 comments

Show HN: TypeGPU Realtime Physics Sandbox

https://typegpu-sandbox.pages.dev
1•theRealestAEP•1h ago•0 comments

SkillRepo – Skillsets: Skill Governance for Teams

https://skillrepo.dev/blog/introducing-skillsets
2•atxpace•1h ago•0 comments

Is SQLite Having a Moment?

https://en.wikipedia.org/wiki/SQLite
1•diwash007•1h ago•0 comments

Meta Project OT plan to replace employees with AI agents

https://www.thestreet.com/technology/mark-zuckerberg-shocking-message-meta-employee-layoffs-artif...
10•elboru•1h ago•5 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!