frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

iOS 27 Released

https://www.apple.com/os/ios/
1•Zhenya•1m ago•0 comments

Show HN: MCP Harbor – An MCP Registry

https://ai.mcpharbor.dev/
2•Lbesecker195•2m ago•0 comments

Kevin Boone: Why are modern televisions so cheap?

https://kevinboone.me/cheap_tv.html
2•speckx•3m ago•0 comments

Developing provably correct Rust code with Verus

https://www.amazon.science/blog/developing-provably-correct-rust-code-with-verus
2•Betelbuddy•3m ago•0 comments

EU to limit access to social media before age of 15

https://www.politico.eu/article/eu-to-propose-new-legislation-on-minors-protection-on-thursday/
3•thm•3m ago•0 comments

CHERIoT Provides Strong and Usable Isolation Without an MMU

https://queue.acm.org/doi/10.1145/3831361
1•birdculture•3m ago•0 comments

The Beauty of the Middle East

https://protesilaos.com/commentary/2026-09-14-beauty-middle-east/
1•dalvrosa•4m ago•0 comments

SCOTUSblog writer sentenced to six years in prison

https://www.nbcwashington.com/news/national-international/supreme-court-litigator-6-years-prison-...
1•mukmuk•4m ago•1 comments

The Great Unwind

https://revyl.com/blog/the-great-unwind/
2•anamhira•4m ago•0 comments

Show HN: I rebuilt a 4-year-old app in 5 days using many agents – here's harness

https://mega.dev/autonomous-product-development
1•gregrog•5m ago•0 comments

Volvo Trucks launches new 80-tonne electric truck with longer range

https://www.volvotrucks.com/en-en/news-stories/press-releases/2026/sep/volvo-trucks-launches-new-...
1•thelastgallon•5m ago•0 comments

Limen: One-human-many-agents harness built from files, Git and one CLI

https://github.com/overment/limen
1•gregrog•6m ago•0 comments

Theseus: A neural architecture research stack with time-travel debugging

https://twitter.com/houjun_liu/status/2099531885818855774
1•devStorms•7m ago•1 comments

We are all Product Engineers now – Seldo.com

https://seldo.com/posts/we-are-all-product-engineers-now/
1•rbanffy•9m ago•0 comments

Push-based vs. Pull-based Customization

https://brevzin.github.io/c++/2026/09/14/push-vs-pull/
1•ibobev•9m ago•0 comments

A1ex: A simple LLM coding agent in Lua

https://github.com/ziyao233/a1ex
1•uneven9434•9m ago•0 comments

Prompt steering can reduce DeepSeek v4 hallucinations to below GPT and Claude

https://propensitylabs.substack.com/p/how-to-get-deepseek-to-hallucinate
2•unconditioned•9m ago•0 comments

The Metamorphosis of Prime Intellect

https://en.wikipedia.org/wiki/The_Metamorphosis_of_Prime_Intellect
2•milleramp•12m ago•0 comments

Sign in as Y Combinator

https://trustedrouter.com/sign-in-as-ycombinator
1•ljlolel•12m ago•1 comments

America's Everywhere Millionaires

https://www.newyorker.com/magazine/2026/09/21/the-everywhere-millionaire-owen-zidar-and-eric-zwic...
5•bookofjoe•13m ago•1 comments

A cache hit is not proof that you skipped the work

https://siddhantkhare.com/writing/kv-cache-truth-auditor
2•gmays•13m ago•0 comments

We cut CDN metadata lookup latency by 91%

https://vercel.com/blog/how-we-cut-cdn-metadata-lookup-latency-by-91-percent
1•speckx•14m ago•0 comments

Your AI coding spend bought 25% more output. Duplication rose 81%.

https://thenewstack.io/ai-coding-duplication-rose/
1•Brajeshwar•15m ago•0 comments

Free IVF with Pavel Durov's donated sperm

https://altravita-ivf.com/free-ivf-with-pavel-durov-donated-sperm.html
3•Mizza•16m ago•0 comments

Buffer overruns, license violations and bad code: FreeBSD 13's close call (2021)

https://arstechnica.com/gadgets/2021/03/buffer-overruns-license-violations-and-bad-code-freebsd-1...
1•robinpie•16m ago•0 comments

Automattic's board is out after failed attempt to oust CEO Matt Mullenweg

https://techcrunch.com/2026/09/14/sources-say-automattics-board-is-out-after-failed-attempt-to-ou...
2•bhrlady•16m ago•1 comments

A Cop's Case for Flock

https://www.worksinprogress.news/p/a-cops-case-for-flock
2•abe94•19m ago•0 comments

Show HN: Biloba: fast and stable Chrome-based browser tests in Go and Vitest

https://github.com/onsi/biloba
3•onsi•19m ago•0 comments

Ask HN: Why the sudden "AI Regulation" posts?

2•stevenhubertron•19m ago•2 comments

Yulbbs

https://seancoates.com/blogs/yulbbs
2•speckx•20m 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•1y ago

Comments

semihs•1y 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_•1y 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•1y 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_•1y ago
That sounds great!