frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

w0rdz aRe 1mpoRtAnt

https://blog.jim-nielsen.com/2026/w0rdz-are-1mportant/
1•Curiositry•2m ago•0 comments

Lentil – LLM Powered Linting

https://github.com/Haizzz/lentil
1•haizzz•7m ago•0 comments

"Post-Visual Web: Designing pages for agents, not readers

https://salah.louizy.com/blog/post-visual-web/
1•losalah•8m ago•0 comments

What clues reveal about a possible Windows 12

https://www.pcworld.com/article/3068331/windows-12-rumors-features-pricing-everything-we-know-so-...
2•XzetaU8•9m ago•0 comments

Show HN: HumanRoot – Signed proof of human authorization for AI agents

https://github.com/Thinklanceai/humanroot
1•thinklanceai•11m ago•0 comments

Claude vs. US Govt: OpenAI Gamble

https://www.youtube.com/watch?v=Ph8CrTNlWbM
1•ashutosh0707•18m ago•0 comments

Show HN: Mindspend – Track how you feel about your spending, not just numbers

https://www.mindspend.app/
2•mogic•18m ago•0 comments

Generate a production-ready constitution.md or Claude.md for spec driven dev

https://younss.github.io/ConstitutionKit/
1•younss•19m ago•0 comments

Stocklens Software

https://stocklnsss.lovable.app
1•StockLens_1•23m ago•0 comments

Mac Has Hidden VRAM [video]

https://www.youtube.com/watch?v=nxCtScEImew
1•goosebump•24m ago•0 comments

Show HN: Offline AI That Analyzes Your Health Data with Evidence-Based Reasoning

https://twitter.com/AshtonBars/status/2028612540444651995
1•sagebowsystem•34m ago•0 comments

Ask HN: Who's hiring but companies that don't have AI mandates?

2•ares623•41m ago•2 comments

Post-AI World: Notes on Economy, Meaning, Agency

https://yashmouje.com/blog/post-ai-world
1•yashmouje•43m ago•0 comments

Mechanical Habits

https://matklad.github.io/2025/12/06/mechanical-habits.html
1•r4um•44m ago•0 comments

A Crisis in the Alps: Airbnb, Climate Change and Americans

https://www.nytimes.com/2026/03/02/travel/french-alps-problems-overdevelopment-climate-change.html
3•RestlessMind•47m ago•0 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•r4um•48m ago•0 comments

Denoising my Life: Part 1

https://adityashrishpuranik.com/writing/denoising-my-life
2•adityapuranik99•48m ago•0 comments

MIDI Viz Piano

https://zz85.github.io/midiviz/midiviz_piano.html
1•memalign•48m ago•0 comments

Windows 12 Reportedly Set for Release This Year

https://tech4gamers.com/windows-12-reportedly-relasing-2026-modular-ai-focused-os/
1•ryandrake•53m ago•0 comments

Merge PDF

https://www.pdffixnow.com/merge-pdf
1•instahotstar•58m ago•1 comments

I got tired of rewriting interview questions for every candidate,so I built this

https://recruitlens.io/
1•elminson•1h ago•1 comments

I built a collection of privacy-focused browser tools (no uploads)

https://everytool.solutions/
1•Mihir1426•1h ago•0 comments

MachineAuth: Open source Authentication infrastructure for AI agents

https://github.com/mandarwagh9/MachineAuth
1•mandarwagh•1h ago•1 comments

Rust zero-cost abstractions vs. SIMD

https://turbopuffer.com/blog/zero-cost
1•whiteros_e•1h ago•0 comments

I Have No Mouth

https://www.leemeichin.com/posts/i-have-no-mouth
1•freediver•1h ago•0 comments

The GPT-3.5 Era: A Retrospective on 404s, Biometric Clocks, and $400 Bills

https://chippytime.com/gpt3-story
1•chippytech•1h ago•0 comments

Show HN: Claude-brain – Sync your Claude Code brain across machines via Git

https://github.com/toroleapinc/claude-brain
1•edvatar•1h ago•0 comments

GitNexus: The Zero-Server Code Intelligence Engine

https://github.com/abhigyanpatwari/GitNexus
1•mpweiher•1h ago•0 comments

Show HN: Kira – AI agent for Android that runs in Termux and has a socialnetwork

https://github.com/levilyf/droidclaw
1•animiso•1h ago•0 comments

The Modular Phone of the Future [video]

https://www.youtube.com/watch?v=tQn8X6l3-ig
1•mgh2•1h 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•10mo 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!