frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Feature release system with MCP agent controls

https://featureflare.com/
2•jsonstcyr•4m ago•0 comments

The Whitelist Won: How Anthropic Turned a Pentagon Blacklist into a Consortium

https://liminaldr.substack.com/p/the-whitelist-won
1•BlendedPanda•4m ago•0 comments

A Visual Guide to Gemma 4

https://newsletter.maartengrootendorst.com/p/a-visual-guide-to-gemma-4
2•vismit2000•5m ago•0 comments

Show HN: An agent-friendly image CDN built on Cloudflare Workers

https://img.pro
2•cr1st1an•6m ago•0 comments

Show HN: 2500 vision benchmarks / evals for Vision Language Models

https://github.com/Overshoot-ai/vlm-benchmarks
1•zakariaelhjouji•6m ago•0 comments

Demystifying Open Silicon – Matt Venn Is Democratizing Chip Design

https://www.siliconimist.com/p/tiny-tapeout-matt-venn
1•johncole•9m ago•0 comments

Show HN: Public Domain Audiobooks with AI (Azalea Audio)

https://apps.apple.com/us/app/azalea-audio/id6761150322
1•nbaronia•12m ago•1 comments

Show HN: Pasteur, a Milkdrop Visualization Exporter

https://pasteur.cc/
1•markneub•13m ago•0 comments

Starfling: A one-tap endless orbital slingshot game in a single HTML file

https://playstarfling.com
2•iceberger2001•14m ago•0 comments

Show HN: Side-by-side comparison tools for US LLC formation,banking and payments

https://www.globalsolo.global/tools/compare
1•jettfu•14m ago•0 comments

Darknet Diaries: SuperBox

https://darknetdiaries.com/episode/172/
1•leonim•16m ago•0 comments

WireGuard developer can't ship software updates after Microsoft locks account

https://techcrunch.com/2026/04/08/wireguard-vpn-developer-cant-ship-software-updates-after-micros...
1•wglb•17m ago•0 comments

Exploring the Far Side of the Moon: A Visual History

https://invertingvision.com/2026/04/06/exploring-the-far-side-of-the-moon-a-visual-history/
1•bookofjoe•19m ago•0 comments

Eavesdropping on Satellite Internet: Trying the "Dontlookup" Code

https://www.youtube.com/watch?v=VE7S1nk4F04
2•emsign•23m ago•0 comments

Anomalisa: Zero config anomaly detection with Welford's algorithm and a KV store

https://anomalisa.uriva.deno.net/
1•uriva•26m ago•0 comments

Release Management in the Agentic Era

https://medium.com/@taleodor/release-management-in-the-agentic-era-3e9eba4c0323
2•taleodor•27m ago•0 comments

How to Do an AX Audit

https://techstackups.com/articles/how-to-do-an-ax-audit/
2•mooreds•35m ago•0 comments

Company Orchestrator: The Last Job

https://sintem.co/essays/1/
1•sintem•37m ago•0 comments

AI and the Human Voice

https://gilest.org/notes/2026/human-ai/
2•avernet•44m ago•0 comments

Edalex Celebrates Double Recognition at 2026 EdTech Cool Tool Awards

https://www.edalex.com/news/edalex-rich-skill-descriptor-rsd-library-openrsd-integrated-new-muzzy...
1•edalex•46m ago•1 comments

Codex overtakes Claude Code to become #1 AI coding tool (April 2026)

https://ai-coding.info/en
4•kotauchisunsun•47m ago•0 comments

I wrote a WebAssembly plugin system for my Wayland compositor

https://www.youtube.com/watch?v=Kohl9wy3S7g
2•matthewkosarek•47m ago•0 comments

0x021 – Durable Workflows

https://unzip.dev/0x021-durable-workflows/
1•vismit2000•49m ago•0 comments

Ask HN: Deterministic codebase maps vs. LLM inferred knowledge graphs?

2•IxInfra•55m ago•1 comments

Ask HN: Why don't frontier AI model providers continuously improve their models?

1•jballanc•56m ago•1 comments

The brazen rightwing plan to conquer American schools

https://www.theguardian.com/education/ng-interactive/2026/apr/08/prageru-university-conservatism
10•jethronethro•1h ago•1 comments

Show HN: Ptoe.org

https://periodictableofelements.org/
1•nadermx•1h ago•0 comments

Giving LLMs a Formal Reasoning Engine for Code Analysis

https://yogthos.net/posts/2026-04-08-neurosymbolic-mcp.html
4•zdw•1h ago•0 comments

ServerCrate – Zero-knowledge Restic backup hosting, from $15/mo

https://servercrate.net/
1•rambooon•1h ago•0 comments

New PC Gaming Handheld Canceled Due to Soaring Storage Prices

https://kotaku.com/new-pc-gaming-handheld-would-have-to-cost-4000-because-of-storage-prices-so-it...
1•PaulHoule•1h ago•0 comments
Open in hackernews

What every developer needs to know about in-process databases

https://www.graphgeeks.org/blog/what-every-developer-needs-to-know-about-in-process-dbmss
12•semihs•11mo ago

Comments

semihs•11mo ago
In-process (aka embedded/embeddable) databases are not new. In fact SQLite is the most widely deployed database in the world. However, starting with DuckDB, there is a new set of in-process database systems, such as Kuzu and Lance. As a co-developer of Kuzu, I hear several frequently asked questions (some of which are misconceptions) about in-process databases.

- What are their advantages/disadvantages compared to client-server databases? - Does in-process mean databases are in-memory/ephemeral? (NO!) - Can in-process databases handle only small amounts of data? (NO!) - What are some common use cases of in-process databases? - What if my application needs a server?

I tried to answer some of these questions in a blog post with pointers to several other resources that articulate several of these points in more detail than I get into.

I hope it's helpful to clarify some of these questions and help developers position in-process DBMSs against client-server ones.

emmanueloga_•11mo ago
The article suggests running Kuzu in a FastAPI frontend for network access. A caveat: production Python servers like Uvicorn [1] typically spawn multiple worker processes.

A simple workaround is serving HTTP through a single process language like Go or JavaScript, since Kuzu has bindings for both. Other processes could access the database directly in read-only mode for analysis [2].

For better DX, the ideal would be Kuzu implementing the Bolt protocol of Neo4J directly in the binary, handling single-writer and multi-reader coordination internally. Simpler alternative: port the code from [3] to C++ and add a `kuzu --server` option.

--

1: https://fastapi.tiangolo.com/deployment/server-workers/#mult...

2: https://docs.kuzudb.com/concurrency/#scenario-2-multiple-pro...

3: https://github.com/kuzudb/explorer/tree/master/src/server

semihs•11mo ago
Yes this makes sense and we plan to eventually do something along what you are suggesting. We also have a plan to have a built-in server/GUI, where users can directly launch a web-based explorer through our CLI by typing "kuzudb -ui".
emmanueloga_•11mo ago
That sounds great!