frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SoC 2 has no real edge

1•krishgolcha•3m ago•0 comments

The Great American GLP-1 Experiment

https://www.nytimes.com/interactive/2026/04/15/opinion/glp1-health-effects.html
1•paulpauper•5m ago•0 comments

Show HN: KillClawd – a sarcastic AI desktop crab by local Ollama

https://github.com/ninjahawk/KillClawd
1•ninjahawk1•8m ago•0 comments

We mapped the nationwide Instructure breach

https://data.dailycal.org/2026-05-07-shiny-hunters/
1•notmysql_•12m ago•0 comments

The End of Elsewhere

https://fugitivemargins.substack.com/p/the-end-of-elsewhere
1•celadevra_•12m ago•0 comments

The Secret Diary That Has Spilled into the Musk vs. OpenAI Feud

https://www.wsj.com/tech/musk-openai-trial-greg-brockman-diary-journal-6950270e
1•RyanShook•13m ago•0 comments

Nvidia introduces back end for CUDA kernels in Rust

https://github.com/NVlabs/cuda-oxide
1•ketchup32613•37m ago•0 comments

Ask Hacker News: AI music with feedback

1•alpple•39m ago•0 comments

vLLM Routing and KV

https://avkcode.github.io/blog/how-vllm-works.html
2•gmays•48m ago•0 comments

A Mental Model for Agentic Work

https://basti.io/blog/agentic_work_mental_model/
1•vinhnx•50m ago•0 comments

Non-invasive profiling of the tumour microenvironment with spatial ecotypes

https://www.nature.com/articles/s41586-026-10452-4
2•bookofjoe•52m ago•0 comments

VGC: A Zone-Based Garbage Collection Architecture for Python's Parallel Runtime

https://arxiv.org/abs/2512.23768
2•teleforce•55m ago•0 comments

Tell HN: "Epstein files" is getting buried by deliberate suppresion-propaganda

14•notepad0x90•56m ago•4 comments

Open-source AWS evidence collector for SoC 2 audits

https://loxeai.com
1•arjavmehta•57m ago•0 comments

How to Work and Compound with AI

https://eugeneyan.com/writing/working-with-ai/
1•vinhnx•59m ago•0 comments

Open weights are quietly closing up – and that's a problem

https://martinalderson.com/posts/open-weights-are-quietly-closing-up/
2•vinhnx•1h ago•0 comments

He says U.S. troops abused him in Iraq's Abu Ghraib and his life is still ruined

https://www.npr.org/2023/04/11/1167341565/us-iraq-war-abu-ghraib-survivor
2•Cider9986•1h ago•0 comments

AI's Circular Psychosis

https://www.wheresyoured.at/premium-ais-circular-psychosis/
5•greedo•1h ago•1 comments

AI Hard Drive Shortage Making It More Expensive, Harder to Archive the Internet

https://www.404media.co/the-ai-hard-drive-shortage-is-making-it-more-expensive-and-harder-to-arch...
2•pabs3•1h ago•1 comments

Chamath Palihapitiya: What I Learned from Being Around the Top.01%

https://www.youtube.com/watch?v=RWqB9eAKMx0
2•Brysonbw•1h ago•0 comments

I built GitHub Store to 12,500 stars in 6 months – I started at 16

https://github-store.org/blog/how-i-built-github-store/
6•rainxchzed•1h ago•23 comments

I built a baremetal RustOS (O(1)allocator NVMeDMA ZeroTrust sandbox for AIAgents

https://github.com/joreag/polymorph_os
1•joreag•1h ago•0 comments

Software Sustainability Maturity Model (2013)

http://oss-watch.ac.uk/resources/ssmm
1•pabs3•1h ago•0 comments

Gemini went down with 1099 error

https://support.google.com/gemini/thread/431758595/1099-error?hl=en
1•nsoonhui•1h ago•0 comments

The Explorer Board a $99 Artix UltraScale+ FPGA Board from Adiuvo

https://explorerboard.tech/
3•signalhound•1h ago•0 comments

Remembering Planet Source Code: Sharing Code Before GitHub Made It Easy

https://www.pietschsoft.com/post/2026/05/05/remembering-planet-source-code-sharing-code-before-gi...
1•pabs3•1h ago•0 comments

Figure new humanoid robot demoing Bedroom Tidy

https://www.youtube.com/watch?v=8xEuFQz4E4A
1•zkjiang•1h ago•0 comments

Show HN: Nexa-gauge – Cache/cost-aware graph-based eval for LLM and RAG

https://github.com/harnexa/nexa-gauge
3•Sardhendu•1h ago•0 comments

Venom and Hot Peppers Offer a Key to Killing Resistant Bacteria

https://www.wired.com/story/mexican-science-transforms-scorpion-venom-and-habanero-chile-into-ant...
2•littlexsparkee•1h ago•1 comments

People Hate AI Art

https://mccue.dev/pages/5-8-26-ai-art
21•3dedb728-3f77•1h ago•2 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!