frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How to breathe in fewer microplastics in your home

https://www.bbc.com/future/article/20260410-how-to-breathe-in-fewer-microplastics-in-your-home
1•vinni2•1m ago•0 comments

Cirrus Labs to join OpenAI shut down Circus CI on Monday, June 1, 2026

https://cirruslabs.org/
1•seekdeep•1m ago•0 comments

Claude Code: all issues get auto-closed without review?

https://github.com/anthropics/claude-code/issues/30407
1•marcindulak•5m ago•1 comments

Visconti-Sforza Tarot

https://en.wikipedia.org/wiki/Visconti-Sforza_Tarot
1•kakadu•5m ago•0 comments

How the Vision Pro Rollout Inflamed Tensions at Apple

https://www.wired.com/story/book-excerpt-mutiny-noam-scheiber-apple-vision-pro/
1•alsetmusic•6m ago•0 comments

Show HN: I'm organizing a vibe coding game dev competition

https://vibej.am/2026/
3•pieterhg•15m ago•0 comments

Iran war volatility is driving oil trading boom on Hyperliquid, says JPMorgan

https://www.coindesk.com/business/2026/03/20/iran-war-volatility-is-driving-oil-trading-boom-on-h...
1•PaulHoule•19m ago•0 comments

A History of the Early Years of AI at the University of Edinburgh

https://journals.sagepub.com/doi/epdf/10.1177/30504554261417567
1•jeremyscanvic•20m ago•0 comments

Tesla gets FSD Supervised approved in the Netherlands – here's what it means

https://electrek.co/2026/04/10/tesla-fsd-supervised-approved-netherlands-rdw-europe/
1•Someone•23m ago•0 comments

Persistent vs. Stubborn / Genius vs. Intelligent

1•shoman3003•23m ago•0 comments

Show HN: Angel Copilot – open-source tool for assessing startup deals

https://github.com/chouligi/angel-copilot/tree/main
1•chouligi•24m ago•0 comments

Why AI Coding Tools Still Feel Stuck on Localhost

https://kubekattle.github.io/ktl/blog/ai-tools-stuck-on-localhost.html
2•KyleVlaros•24m ago•2 comments

Towards a Science of Scaling Agent Systems

https://arxiv.org/abs/2512.08296
2•gpi•25m ago•0 comments

Is Ireland the worst run country in Europe?

https://www.irishtimes.com/opinion/2026/04/11/david-mcwilliams-ireland-has-too-much-money-and-is-...
4•yawboakye•28m ago•1 comments

Native macOS Multi Agent Development UI

https://super.engineering
3•ksajadi•28m ago•1 comments

Show HN: Bal – a Knights and Knaves logic puzzle game with Glicko rating system

https://bal.sciforge.ai/
1•skaye•31m ago•0 comments

AIs Job Ledger has 2 Columns

https://www.aei.org/economics/ais-job-ledger-has-two-columns/
1•RickJWagner•33m ago•0 comments

Chaoskampf

https://en.wikipedia.org/wiki/Chaoskampf
1•thunderbong•34m ago•0 comments

’Abhorrent’: the inside story of the Polymarket gamblers betting millions on war

https://www.theguardian.com/business/2026/apr/11/polymarket-gamblers-betting-iran-war-ukraine-new...
14•sandebert•35m ago•1 comments

Codex GUI's spinner uses 70% of GPU

https://github.com/openai/codex/issues/16857
1•Einenlum•37m ago•0 comments

Meta is set to pay its top AI executives almost a billion each in bonuses

https://www.msn.com/en-my/news/other/meta-is-set-to-pay-its-top-ai-executives-almost-a-billion-ea...
2•seekdeep•38m ago•0 comments

Škoda Duobell bike bell pierces noise-cancelling headphones

https://www.dezeen.com/2026/04/09/skoda-duobell-bike-bell-noise-cancelling-headphones/
3•trauco•41m ago•0 comments

US intelligence indicates China is preparing weapons shipment to Iran

https://www.cnn.com/2026/04/11/politics/us-intelligence-iran-china-weapons
3•OutOfHere•41m ago•1 comments

Japan's cabinet approved a bill classifying crypto as a financial instrument

https://www.ccn.com/news/crypto/japan-classifies-crypto-financial-instrument-historic-shift/
1•giuliomagnifico•43m ago•0 comments

Show HN: Bunqueue – Saga workflow engine for Bun with embedded SQLite

https://bunqueue.dev/guide/workflow/
1•kernelvoid•43m ago•0 comments

Hungary Is a Laboratory for Illiberal Nationalism. The Results Are In

https://www.cato.org/commentary/hungary-laboratory-illiberal-nationalism-results-are
2•rwmj•45m ago•0 comments

Show HN: I rebuilt a 2000s browser strategy game on Cloudflare's edge

https://kampfinsel.com/
3•parzivalt•45m ago•0 comments

I built a pure WGSL LLM engine to run Llama on my Snapdragon laptop GPU

https://github.com/Beledarian/wgpu-llm
1•Beledarian•47m ago•1 comments

Scaling Managed Agents: Decoupling the brain from the hands

https://www.anthropic.com/engineering/managed-agents
1•jbredeche•51m ago•0 comments

Keyboards

https://mastodon.social/@keyboards
1•doener•52m 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!