frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI and Job Postings: From Destruction to Creation

https://www.hiringlab.org/2026/07/08/ai-and-job-postings-from-destruction-to-creation/
1•hartleybrody•1m ago•0 comments

Madame Semver Will See You Now

https://nesbitt.io/2026/05/10/madame-semver-will-see-you-now.html
1•progbits•1m ago•0 comments

If you want to make money, be useful to rich people

https://filiph.net/text/to-make-money-be-useful-to-rich-people.html
1•speckx•4m ago•0 comments

How to Build a Low-tech Website? (2018)

https://solar.lowtechmagazine.com/2018/09/how-to-build-a-low-tech-website/
1•downbad_•4m ago•0 comments

Who Owns What Your Agent Knows?

https://www.safiware.com/p/who-owns-what-your-agent-knows
1•safiware•5m ago•0 comments

MITS: Rockets, Calculators, and Personal Computers

https://www.abortretry.fail/p/micro-instrumentation-and-telemetry
1•BirAdam•6m ago•0 comments

Ask HN: Active Forums You're a Part Of

1•insanejules•8m ago•0 comments

Logical Query Processing (2009) [pdf]

https://accessexperts.com/wp-content/uploads/2015/07/Logical-Query-Processing-Poster.pdf
1•rzk•9m ago•1 comments

Pactiamo|Proposals, contracts, signatures and payment in one link

https://www.pactiamo.com
1•kkmigu•10m ago•0 comments

The State of AGENTS.md: scoring the 16 biggest AI agent repos' own instructions

https://fpaul.dev/writing/state-of-agents-md-2026/
1•Fpailo•10m ago•0 comments

L8ER SK8ER, a history of a book that never sold

https://biblicallyaccuratealiens.substack.com/p/l8er-sk8er-a-history
1•meandthemajor•11m ago•0 comments

The New York nurses replaced by AI: 'It should concern every patient who cares'

https://www.theguardian.com/technology/2026/jul/13/nurses-new-york-ai
2•beardyw•12m ago•0 comments

A Right Too Expensive to Exercise Isn't a Right

https://deepbluedynamics.com/blog/right-too-expensive-to-exercise
2•kordlessagain•18m ago•0 comments

69% support forcible transfer of 50% AI stock to public fund: Verasight

https://reports.verasight.io/reports/june-2026-ai-survey
2•akramachamarei•19m ago•0 comments

Show HN: ProtoLink – A Python runtime for distributed A2A agents

https://github.com/nMaroulis/protolink
2•nmaroulis21•20m ago•0 comments

Browser over SSH

https://duetbrowser.com/krnl-ss-redirect
1•keepamovin•20m ago•1 comments

How the most impactful AI startups will be built in emerging markets

https://blogs.worldbank.org/en/voices/small-ai--big-bets--how-the-world-s-most-impactful-ai-start...
1•alphabetatango•22m ago•0 comments

Archangel: Cia's Supersonic A-12 Reconnaissance Aircraft [pdf]

https://dn790002.ca.archive.org/0/items/CIABooksMonographs/Archangel-2ndEdition-2Feb12.pdf
1•smalltorch•23m ago•0 comments

SociaLLM Engineering: On Manipulating AI Agents and what we can do about it

https://cephalosec.com/blog/sociallm-engineering-old-tricks-ai-agents-are-the-new-victims/
1•Versipelle•23m ago•0 comments

Toast IDE Gets LSP Goto and Autocomplete

https://github.com/paradise-runner/toast
1•dividedcomet•23m ago•0 comments

Cairn, an AI agent with a $50 budget, an email address, and a constitution

https://github.com/opitaru-sys/seed-agent
1•GreatOldOne•23m ago•0 comments

TrulyFreeOCR – Permissive-license OCR to PDF, self-contained, MRC compression

https://github.com/msmarkgu/TrulyFreeOCR
1•markfront•24m ago•0 comments

Show HN: Runscribe – Turn a terminal session into a re-runnable runbook, offline

https://github.com/hamzamansoorch/runscribe
1•hamza_mansoor•25m ago•0 comments

I'm Making Strandfall, a Solarpunk Orienteering Larp

https://mssv.net/2026/04/29/im-making-strandfall-a-solarpunk-orienteering-larp/
1•surprisetalk•26m ago•0 comments

Show HN: Latent-free ternary LLM training

https://github.com/ValerioDolci/bitbop
1•Feyd•26m ago•1 comments

A Farewell to ARPs: IPv4 Service on IPv6-Only Networks

https://labs.ripe.net/author/remco-van-mook/a-farewell-to-arps-ipv4-service-on-ipv6-only-networks/
1•speckx•28m ago•0 comments

Is Vibecoding Viable for Business?

https://brids.bearblog.dev/is-vibecoding-viable-for-business/
1•mindwok•30m ago•0 comments

Deaths in the UK outnumber births for first time in 50 years

https://www.telegraph.co.uk/news/2026/07/01/death-day-births-50-years-ons-family-england-wales-csj/
1•rwmj•31m ago•0 comments

MCP Spec Check

https://github.com/Roee-Tsur/mcp-spec-check
1•igtztorrero•31m ago•0 comments

SMS Pumping Fraud

https://amrshawky.com/posts/sms-pumping-fraud/
2•amr_shawky•32m 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!