frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Verified by Spotify badge lets you know this artist isn't AI

https://www.theverge.com/tech/921048/verified-by-spotify-badge
1•Brajeshwar•26s ago•0 comments

How to Euthanize a Whale

https://undark.org/2026/04/27/whale-euthanasia/
1•speckx•1m ago•0 comments

Claude Code refuses requests or charges extra if your commits mention "OpenClaw"

https://twitter.com/theo/status/2049645973350363168
1•elmean•1m ago•0 comments

Anti-DDoS Firm Heaped Attacks on Brazilian ISPs

https://krebsonsecurity.com/2026/04/anti-ddos-firm-heaped-attacks-on-brazilian-isps/
2•lschueller•2m ago•0 comments

Ask HN: commands.sh

https://www.commands.sh/
1•_august•3m ago•1 comments

The More Young People Use AI, the More They Hate It

https://www.theverge.com/ai-artificial-intelligence/920401/gen-z-ai
4•karakoram•4m ago•0 comments

OpenUsage: Track all your AI usage, in one panel

https://github.com/robinebers/openusage
1•nateb2022•4m ago•0 comments

Our Future Is Being Devoured by Feral Thought Experiments

https://www.programmablemutter.com/p/our-future-has-been-devoured-by-feral
1•m-hodges•5m ago•0 comments

VibeLens: Visualize and analyze your AI agent sessions

https://github.com/CHATS-lab/VibeLens
1•yejh•6m ago•0 comments

Show HN: Homebutler – a single-binary homelab ops tool with backup drills

https://github.com/Higangssh/homebutler
1•swq115•7m ago•0 comments

Bahtiarbeck95 Gmail.com

https://blog.cloudflare.com/deploy-planetscale-postgres-with-workers/
1•korikorikori•7m ago•0 comments

What if the universe isn't expanding, but stabilizing?

https://archive.org/details/tenants-of-the-long-sunday
1•voxsignals•8m ago•0 comments

Thoughts on the Boiling Frogs 2026 conference

https://blog.allegro.tech/2026/04/thoughts-on-boiling-frogs-2026.html
1•karmazyn•8m ago•0 comments

The AI Productivity Scorecard Is Broken

https://engineeredinsight.substack.com/p/the-ai-productivity-scorecard-is
1•hacked_brain•8m ago•0 comments

Show HN: Iso.me – Open-source, on-device iOS location tracker

https://github.com/CodyBontecou/isome
1•codybontecou•9m ago•0 comments

Coding Stats

https://github.com/Chrisiisx/Coding-Stats
1•chrisiisx•9m ago•0 comments

Microsoft open-sources "the earliest DOS source code discovered to date"

https://arstechnica.com/gadgets/2026/04/microsoft-open-sources-the-earliest-dos-source-code-disco...
2•DamnInteresting•10m ago•0 comments

Octopus 'krakens' as large as semi-trucks stalked ancient seas

https://www.science.org/content/article/octopus-krakens-large-semi-trucks-stalked-ancient-seas
1•gmays•10m ago•0 comments

Exp-Minus-Log made practical for RPN calculators

https://tangentsoft.com/rpn/wiki?name=R47%3A+Programming+Project+-+EML
1•wyoung2•11m ago•1 comments

Top Best Business Books for Entrepreneurs to Read in 2026

https://1-pagedigitalmarketingplan.com/top-19-best-business-books-for-entrepreneurs-to-read-in-2026/
2•TechOnionKing•11m ago•0 comments

I scraped 1.94M Airbnb photos for opium dens, pet cameos, and messy kitchens

https://burla-cloud.github.io/examples/airbnb-burla-demo/
5•jmp1062•12m ago•0 comments

Restraining AI development for the sake of safety

https://joecarlsmith.com/2026/03/19/on-restraining-ai-development-for-the-sake-of-safety/
1•speckx•12m ago•0 comments

StupidStackLanguage

https://esolangs.org/wiki/StupidStackLanguage
1•optimalsolver•12m ago•0 comments

I over-engineered my simple AI backend: distillation, router, embedding etc.

https://sisyphusconsulting.org/case-studies/2026/04/01/scaling-llms-at-the-edge/
1•bhagyeshsp•12m ago•1 comments

Finding a RCE in my old TP-Link router

https://mrbruh.com/tplink/
3•MrBruh•12m ago•0 comments

Neo Factory – Building Your Neo

https://www.1x.tech/discover/neo-factory
1•denysvitali•13m ago•0 comments

Nothing Is Broken. So Why Does Everything Feel Off?

https://therealitydrift.substack.com/p/nothing-is-broken-so-why-does-everything-feel-wrong
1•realitydrift•17m ago•1 comments

Show HN: Agent-recall-AI – Auto-save for AI agents that die mid-task

https://github.com/srinathsankara/agent-recall-ai
1•SrinathSankara•17m ago•1 comments

OpenHabitat v0.1: open-source Health Automation Systems

https://www.openhabitat.build/habitat/intro/
1•michaelrm•19m ago•1 comments

Rich People Didn't Use to Look Like This

https://www.nytimes.com/2026/04/30/opinion/plastic-surgery-rich-face.html
5•prmph•20m ago•4 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•11mo 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!