frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Jerry's Map

http://www.jerrysmap.com/the-map
3•turtleyacht•3m ago•0 comments

Confidence estimation is a better metric than agreement for LLM judges

https://arxiv.org/abs/2604.20972
2•rapiddev•4m ago•0 comments

What Is Claude Tag?

https://support.claude.com/en/articles/15594475-what-is-claude-tag
2•shpat•4m ago•0 comments

Using CSS media queries to target monochrome e-paper

https://geastack.com/blog-same-app-color-and-e-paper
2•arbayi•4m ago•0 comments

My coworkers read my personal ChatGPT chats via Meta Analytics [video]

https://www.youtube.com/watch?v=iynIylRPqY4
4•emzra•4m ago•0 comments

LLMs Are Digitizing Judgment

https://www.modaic.dev/blog/certainty-is-all-you-need
2•rapiddev•5m ago•0 comments

Modal Auto Endpoints: Optimized inference you own

https://modal.com/blog/introducing-auto-endpoints
3•handfuloflight•8m ago•0 comments

Walmart, in Biggest Deal in Two Years, Buys Advertising Tech Firm

https://www.wsj.com/business/retail/walmart-in-biggest-deal-in-two-years-buys-advertising-tech-fi...
2•impish9208•8m ago•1 comments

Show HN: Appstr for Indies managing lots of apps

https://www.appstr.ai/
3•jkanalakis•10m ago•0 comments

Build a local voice assistant in 2026

https://blog.platypush.tech/article/Local-voice-assistant
3•speckx•10m ago•0 comments

A new evolution of Vector Database, add to your toolkit

https://github.com/grecinto/tensortree
2•grecinto•12m ago•0 comments

Ask HN: What jobs can I escape to outside of tech?

4•ericyd•12m ago•0 comments

10% Off Any Accessory

https://www.eastendbuyersguide.com/listings/rocky-point-cycle-inc-bicycle-store-rocky-point-ny?co...
2•MichelleCooley•12m ago•0 comments

GLM-5.2 Is the New Best Open Model

https://thezvi.wordpress.com/2026/06/22/glm-5-2-is-the-new-best-open-model/
3•gmays•13m ago•0 comments

Cirrus SF50 G3 Vision Jet [video]

https://www.youtube.com/watch?v=2VOAAWK7xNA
2•marklit•14m ago•0 comments

Software Design by Example

https://third-bit.com/sdxpy/
3•saikatsg•14m ago•0 comments

SpaceX launches $25B notes offering, source says

https://www.reuters.com/legal/transactional/spacex-launches-25-billion-notes-offering-source-says...
3•onemoresoop•15m ago•0 comments

Show HN: HN Who Is Hiring trends by month and category

https://hnhiring.josusanmartin.com/
2•josu•15m ago•1 comments

Elon's iPhone

https://elonsiphone.com/
5•momentmaker•16m ago•1 comments

GPS spoofing teleported me to Peru, mid-flight

https://blog.emilburzo.com/2026/06/gps-spoofing-teleported-me-to-peru-while-flying/
4•emilburzo•16m ago•1 comments

The End of Code Review: Coding Agents Supersede Human Inspection

https://arxiv.org/abs/2606.13175
3•cribwi•19m ago•0 comments

Confidential Apple Files Leaked on Dark Web After Supplier Cyberattack

https://www.macrumors.com/2026/06/23/apple-files-leaked-dark-web-cyberattack/
3•Brajeshwar•21m ago•0 comments

AI Models Soccer Tournament [video]

https://www.youtube.com/watch?v=OQV0CcjBF2Y
2•ajdrevrel•21m ago•0 comments

Building Intelligent Games

https://rasmusrasmussen.com/2026/06/23/building-intelligent-games/
2•rasras•21m ago•0 comments

Yet Another Piece of AI-Pilled Speculative Fiction Has Gone Dangerously Viral

https://gizmodo.com/yet-another-piece-of-ai-pilled-speculative-fiction-has-gone-dangerously-viral...
2•speckx•22m ago•0 comments

TDD is how I trust the code AI agents write [video]

https://www.youtube.com/watch?v=d5x38FCSCyM
3•douglas_waugh•22m ago•1 comments

Opinionated Python template: uv under the hood, Makefile as the control surface

https://github.com/alexkey/cookiecutter-uv-core
3•alexkey•23m ago•0 comments

Show HN: We Help Voice AI Handle Group Conversations

https://github.com/attenlabs/saa-sdk
4•betweenDan•24m ago•0 comments

Okrug.tv – Free Online Video and Entertainment Portal

https://okrug.tv
2•portlisa•24m ago•1 comments

Book-to-skill: Turn a technical book PDF into a Claude Code skill

https://github.com/virgiliojr94/book-to-skill
2•ethanpil•25m 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!