frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Judge Strikes Down Trump's $100K H-1B Visa Fee

https://www.wsj.com/politics/policy/judge-strikes-down-trump-administrations-100-000-h-1b-visa-fe...
1•gjkood•1m ago•0 comments

Show HN: I Built an LLM Engine, That Test LLM on Boolean Logic

https://github.com/Shrivastava-Aditya/boolean-algebra-engine
1•shrvx•1m ago•0 comments

NASA's X-59 Aircraft Flies Supersonic for First Time

https://www.nasa.gov/aeronautics/x-59-first-supersonic-flight/
2•gnabgib•2m ago•0 comments

Indicator: Indicator Go delivers customizable strategies, backtesting framework

https://github.com/cinar/indicator
1•lsferreira42•2m ago•0 comments

Replay: Box2D

https://box2d.org/posts/2026/06/replay/
1•kg•5m ago•0 comments

AMule 3.0.0

https://github.com/amule-project/amule/releases/tag/3.0.0
1•asp1•5m ago•0 comments

SQL

https://remy.wang/cs143/notes/sql/sql.html
1•jasim•6m ago•0 comments

Small modular nuclear reactor reaches criticality in first test

https://arstechnica.com/science/2026/06/first-us-test-of-modular-reactor-reaches-criticality/
1•rbanffy•6m ago•1 comments

The Beginning of the End

https://www.downtownjoshbrown.com/p/the-beginning-of-the-end
1•mooreds•7m ago•0 comments

We launched an app where users earn credit-card points for saving, not spending

https://apps.apple.com/us/app/symphony-save-earn/id6758022445
1•James_berry•7m ago•0 comments

The Model Is No Longer the Bottleneck

https://www.k-dense.ai/blog/the-model-is-no-longer-the-bottleneck
1•amrrs•8m ago•0 comments

Passing DBs Through Continuations

https://remy.wang/blog/cps.html
1•jasim•10m ago•0 comments

Ask HN: Does consciousness itself require memory?

2•modinfo•11m ago•0 comments

Apple Child Safety

https://www.apple.com/child-safety/
2•narenst•12m ago•0 comments

Ask HN: Why won't you be replaced by AI?

1•atleastoptimal•13m ago•2 comments

Show HN: Guarden – Authorization for AI agent actions powered by OPA

https://github.com/las7/Guarden
1•sakuraiben•15m ago•0 comments

UK Gov't: Tech companies like Apple and Google have three months or else

https://twitter.com/ukhomeoffice/status/2063976128692273615
1•naturalmovement•16m ago•0 comments

iMessage for Claude Code / Codex

https://messaging.prbe.ai/
1•richardwei6•16m ago•0 comments

Berlin pulls plug on Franco-German fighter jet

https://www.ft.com/content/c13f2931-f2b5-49f7-93ef-b605c22547de
1•JumpCrisscross•16m ago•0 comments

The Roman Dodecahedron Decoded: A falsifiable mechanism for an ancient compass

https://hopcyn.substack.com/p/the-dodecahedron-decoded
1•DownThePiraeus•19m ago•0 comments

Andrew Tate's Empire of Abuse

https://www.newyorker.com/magazine/2026/06/15/andrew-tates-empire-of-abuse
8•petethomas•19m ago•1 comments

I stopped wasting Claude tokens

https://botverse.cloud
1•MarkTurnerETech•20m ago•1 comments

LibreOffice attacks Euro-Office for defaulting to Microsoft Office formats

https://www.neowin.net/news/libreoffice-developer-takes-a-dig-at-euro-office-in-new-open-letter/
2•bundie•20m ago•0 comments

Apple reveals new AI architecture built around Google Gemini models

https://www.macrumors.com/2026/06/08/apple-reveals-new-ai-architecture/
3•unclefuzzy•20m ago•0 comments

The Allure of the Single-Sentence Novel

https://www.totei.com/story/single-sentence-novel-daniel-kraus-jon-fosse
1•paulpauper•22m ago•0 comments

What Is AI Doing to Math?

https://www.nytimes.com/2026/06/05/podcasts/hardfork-ipo-math.html
1•retupmoc01•24m ago•0 comments

Why are cells small?

https://burrito.bio/essays/what-limits-a-cells-size
13•mailyk•24m ago•2 comments

Switzerland wil have a referendum to cap population at 10M

https://www.admin.ch/en/sustainability-initiative
40•napolux•25m ago•31 comments

There Are Many Configurations of Business That Work

https://commoncog.com/there-are-many-configurations-of-business-that-work/
2•sebg•25m ago•0 comments

You are here on the AI change curve

https://howfastis.ai/
1•paulpauper•25m 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!