frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gitgo: A Go implementation of Git functions (2016)

https://github.com/ChimeraCoder/gitgo
1•todsacerdoti•15s ago•0 comments

NY bill to require devices to conduct commercially reasonable age assurance

https://github.com/flatpak/xdg-desktop-portal/pull/1922
1•nickslaughter02•1m ago•0 comments

How do I get startups to use my open-code project?

1•ErezShahaf•2m ago•0 comments

Ask HN: Resources to make devs more AI aware

1•myworkaccount2•4m ago•1 comments

My first post, I'll try not to muck it up :P

https://groups.google.com/g/retro-car-radio
1•prestodigital•4m ago•1 comments

Ben Affleck Founded a Filmmaker-Focused AI Tech Company. Netflix Just Bought It.

https://www.hollywoodreporter.com/business/digital/ben-affleck-ai-netflix-1236521806/
1•voxadam•5m ago•0 comments

The AI Benchmark Trap

https://ianreppel.org/the-ai-benchmark-trap/
1•speckx•6m ago•0 comments

Amazon checkout is not working

https://downdetector.ca/status/amazon/
2•kaypee901•6m ago•0 comments

Sacred Values of Future AIs

https://www.lesswrong.com/posts/sjeqDKhDHgu3sxrSq/sacred-values-of-future-ais
1•gmays•7m ago•0 comments

The Future of Healthcare Will Be Built on Enhanced Data

1•BE-Healthmetryx•8m ago•0 comments

Lock.pub – AI helped me turn a 3-year-old side project into a real product

https://lock.pub/
1•astraljoker•9m ago•1 comments

Am I Being Pwned? See what your Chrome extensions are exfiltrating

https://amibeingpwned.com/demo/hackernews
2•acorn221•10m ago•0 comments

Show HN: Argmin AI, system level LLM cost optimization for agents and RAG

https://argminai.com
2•konyrevdmitriy•11m ago•0 comments

Show HN: Mumpix – persistent memory for AI agents (works in browser and Node)

https://www.mumpixdb.com/
2•carreraellla•11m ago•1 comments

AI helped me try a new workout app

https://matanabudy.com/ai-helped-me-try-a-new-workout-app/
2•matanabudy•13m ago•0 comments

Amazon Books Are Down

https://www.amazon.com/dp/B0DZ666HCL
2•ada1981•13m ago•1 comments

From Logistic Regression to AI

https://www.johndcook.com/blog/2026/03/04/from-logistic-regression-to-ai/
2•gmays•14m ago•0 comments

Show HN: Reconlify – local-first reconciliation CLI for CSV/TSV and text logs

https://github.com/testuteab/reconlify-cli
2•testuteab•15m ago•0 comments

I've never parented a 6-year-old. But I've dealt with macOS system updates

https://ihnatko.com/ive-never-had-the-experience-of-parenting-a-6-year-old-child-but-ive-dealt-wi...
3•latexr•15m ago•1 comments

Show HN: Sigil – source code security analysis for MCP servers (open source)

https://github.com/sigildev/sigil
2•sigildev•17m ago•0 comments

Show HN: FreshLimePay – Generate PayPal and Stripe checkout buttons

https://www.freshlimepay.com/
2•powerwild•18m ago•0 comments

53% of U.S. adults say Americans have bad morals and ethics

https://www.pewresearch.org/religion/2026/03/05/in-25-country-survey-americans-especially-likely-...
3•PaulHoule•18m ago•2 comments

Show HN: I built an LSM storage engine from scratch in Rust

https://n8z.dev/posts/building-strata/
2•nlz•21m ago•0 comments

'Execution at sea': Was the Iranian ship sunk by US in the Indian Ocean unarmed?

https://www.thestatesman.com/india/execution-at-sea-was-iris-dena-iranian-frigate-sunk-by-us-in-t...
5•TheAlchemist•21m ago•0 comments

Getting Started with the Popover API

https://www.smashingmagazine.com/2026/03/getting-started-popover-api/
2•PaulHoule•22m ago•0 comments

ALT5 Digital Holdings Alternative Funding from World Liberty Financial

https://www.thecreditbubble.com/p/lotw-148-tokens-all-the-way-down
2•petethomas•23m ago•0 comments

Entanglement-assisted non-local optical interferometry in a quantum network

https://www.nature.com/articles/s41586-026-10171-w
2•bookofjoe•23m ago•0 comments

Beyond Slop

https://www.joelsimon.net/beyond-slop
2•joelS•23m ago•0 comments

Found a CVSS 10.0 bypass in Hugging Face's model scanner. We open-sourced ours

https://www.promptfoo.dev/blog/open-sourcing-modelaudit/
8•yashchhabria•24m ago•1 comments

BYD's Second-Generation Blade Battery Makes Western EV Tech Look Ancient

https://insideevs.com/news/789094/byd-second-generation-blade-battery/
4•nobody9999•24m ago•0 comments
Open in hackernews

Show HN: DeraineDB – A 33MB Vector DB in Zig/Go with Sub-Millisecond HNSW

https://github.com/RikardoBonilla/DeraineDB
3•RikardoB•1h ago

Comments

RikardoB•1h ago
Hi HN, I'm Ricardo from Colombia.

I got frustrated trying to run local RAG pipelines on standard hardware. Booting up traditional vector databases usually meant sacrificing gigabytes of RAM before even ingesting the first vector. I needed something that could run on the Edge (specifically, for a local Point of Sale system) without choking the OS.

So, I built DeraineDB. It's a hyper-optimized, embedded vector engine designed for extreme low footprint and sub-millisecond latencies.

Some architectural decisions I’d love your feedback on:

- Zig Core + Go Orchestrator: I used Zig for the bare-metal memory-mapped storage (mmap) and SIMD math, and Go for the gRPC network orchestration.

- The "Zero-Copy" Bridge: Go's Garbage Collector was initially killing my latency when passing 1536-dimensional arrays to C/Zig. I fixed this by using unsafe.Pointer to map Protobuf slices directly into Zig's memory space. Zero copies, massive latency drop.

- HNSW Graph Segregation: I completely separated the payload (.drb files with strict cache-line alignment) from the HNSW navigation graph (.dridx files). This solved a nasty buffer overflow I was fighting and made the $O(\log N)$ search rock solid.

- Bitwise Metadata Filtering: Instead of JSON parsing, I implemented a 64-bit metadata_mask evaluated via Bitwise AND directly inside the HNSW Greedy Routing loop.

The result: It handles 1536D vectors in a 33MB Docker image, consumes ~21MB of RAM under load, and hits 0.89ms for HNSW warm searches.

The repo includes the Python benchmark and a local True RAG demo using Llama 3.2.

I would absolutely love it if you guys could audit the architecture, review the CGO/Zig bridge, and roast my code. Let me know where I can improve!