frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI is getting better at writing. Humans must get better at editing

https://economist.com/leaders/2026/07/30/ai-is-getting-better-at-writing-humans-must-get-better-a...
1•andsoitis•17s ago•0 comments

New research says there are 9 types of procrastinators

https://www.inc.com/bill-murphy-jr/new-research-says-there-are-9-types-of-procrastinators-which-o...
1•EndXA•1m ago•0 comments

Fast 68030 Processor Card: Oliver Achten Is Working on the "Performer PF1230"

https://amiga-news.de/en/news/AN-2026-07-00158-EN.html
1•doener•1m ago•0 comments

Show HN: Social Network – News Based Social Discussion

https://qocial.com/
1•qocialApp•2m ago•0 comments

Has – High Assembler for Motorola 68000 (Amiga)

https://github.com/rozensoftware/highamigaassembler
1•doener•3m ago•0 comments

A stricter TypeScript for a world where AI writes most of the code

https://github.com/chitalian/Typescript-Ultra-Strict
1•MarcoDewey•4m ago•0 comments

I Learned to Stop Worrying and Love the Mask

https://dispatchesfromtheautismwars.substack.com/p/how-i-learned-to-stop-worrying-and
2•barry-cotter•5m ago•0 comments

Show HN: Vice Signalling – A narrative game about infiltrating a secret society

https://store.steampowered.com/app/4836310/Vice_Signalling/
1•pmwkaa•5m ago•0 comments

Ships stranded in Gulf could pose global invasive-species threat, study says

https://www.cbc.ca/lite/story/9.7293025
1•colinprince•6m ago•0 comments

Everyone is so annoying about AI

https://cailinpitt.com/blog/2026/8/01/everyone-is-so-annoying-about-ai
2•classictraffic•7m ago•0 comments

Show HN: Atomadic – Zero-LLM Sub-200us MCP Action Interlock

https://atomadic.tech/
1•Atomadic•9m ago•0 comments

The Coldcard Disaster Gets Worse: The Hack May Have Reached $88.6M

https://medium.com/mountain-movers/the-coldcard-disaster-gets-worse-the-hack-may-have-reached-88-...
2•paulpauper•14m ago•0 comments

Show HN: I added a client-side SQL sanitizer so schema never touches our servers

https://www.querytuner.com/
1•autoshiftops•14m ago•0 comments

Create Embedded Software with Swift

https://www.swift.org/get-started/embedded/
1•frizlab•17m ago•0 comments

Galaxy Research Coldcard hack update: 1,158.81 BTC stolen from 2,673 addresses

https://twitter.com/glxyresearch/status/2083560979128820105
3•paulpauper•17m ago•1 comments

Let Sand Think

https://magzimof.com/let-the-sand-think/
1•shaimagz•17m ago•0 comments

Show HN: MCP Emails – An MCP Server for Gmail and IMAP/SMTP Inboxes

https://github.com/Albretsen/MCPEmails/tree/main/self-host
2•asgeiralbretsen•18m ago•0 comments

Peter Principle

https://en.wikipedia.org/wiki/Peter_principle
2•num42•18m ago•0 comments

Is it time to stop using glue and labels on paper?

https://www.bbc.co.uk/news/articles/c872nj1n4xyo
2•edward•19m ago•0 comments

AI learns language from skewed sources. It could change how humans speak/think

https://www.theguardian.com/commentisfree/2026/apr/14/ai-language-human-speech
1•fzeindl•19m ago•0 comments

Show HN: LLM Tools that I made that I cant live without

1•dleech•20m ago•0 comments

Don't grab any seat on a rocket ship

https://hunterwalk.com/2026/08/02/why-grab-any-seat-on-the-rocketship-is-a-bad-career-strategy-th...
1•andsoitis•22m ago•0 comments

The Debate of Mockist vs. Classicist TDD Is Like OOP vs. FP

https://fagnerbrack.com/the-debate-of-mockist-classicist-tdd-is-like-oop-fp-c9124185f3d2
1•theanonymousone•23m ago•0 comments

Why Gen Z is nostalgic for a world it never knew

https://bigthink.com/mind-behavior/why-gen-z-is-nostalgic-for-a-world-it-never-knew/
5•LordAtlas•27m ago•0 comments

Show HN: NixOS-DGX-Spark – Nix and NixOS on the DGX Spark

https://github.com/graham33/nixos-dgx-spark
9•graham33•28m ago•2 comments

Yahoo Finance rate-limits you harder if you spoof a browser User-Agent

https://github.com/AdityaSBisht/finance-mcp
2•adityabisht2700•30m ago•0 comments

Feedback wanted: Reflex – A low-cost retrieval API for recurring documents

https://aivax.net/blog/reflex-retrieval-built-for-recurring-documents/
1•cypherpotato•30m ago•0 comments

Poles of Inaccessibility in the San Gabriel Mountains

https://notes.secretsauce.net/notes/2015/05/06_poles-of-inaccessibility-in-the-san-gabriel-mounta...
1•dima55•31m ago•0 comments

How fast is C++26's std:hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
2•usdogu•31m ago•0 comments

Pushes to arch AUR are suspendended right now.

https://lists.archlinux.org/archives/list/aur-general@lists.archlinux.org/message/YPJ3FQYJTJXXY3R...
11•EbNar•31m 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!