frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Soup Raiders Goes Native: Porting the Demo from Unity

https://eliasfarhan.ch/gamedev/cpp/2026/08/20/srnative-02-porting-unity.html
1•kwakwa_cat•1m ago•0 comments

Slopbait

http://writingball.blogspot.com/2026/08/slopbait.html
1•speckx•1m ago•0 comments

New Spanish nanomaterial cools surfaces by up to 12.9C without electricity

https://www.euronews.com/next/2026/08/17/new-spanish-nanomaterial-cools-surfaces-by-up-to-129c-wi...
1•bookofjoe•1m ago•0 comments

Consumer Rights Wiki

https://consumerrights.wiki/w/Main_Page
2•gregsadetsky•4m ago•0 comments

Hall of Shame: Documented Anti-Consumer Practices

https://www.fulu.org/hall-of-shame
1•gregsadetsky•4m ago•1 comments

Show HN: Language Audio Trainer – Learn languages without looking at the screen

https://playling.netlify.app/
1•SalaevAl•6m ago•0 comments

Claude "warning" users about language and defending business influencers

https://twitter.com/MatznerJon/status/2090157152690196754
2•slowin•7m ago•0 comments

Collabora and Flipper: Opening Up the RK3576

https://www.collabora.com/news-and-blog/news-and-events/collabora-flipper-opening-up-the-rk3576.html
1•gregsadetsky•8m ago•0 comments

Running Nam A2-Full Natively on an ESP32-P4

https://playtaurus.com/blog/running-nam-a2-full-natively-on-an-esp32-p4
1•arbayi•8m ago•0 comments

Customer Churn Intelligence – Emmanuel Onuoha · Streamlit

https://customer-churn-portfolio-z3hvzwkxs3yu8zvenx9yuk.streamlit.app
1•Emmydutch•8m ago•0 comments

Wyrmcourt – a free multiplayer role-playing game you play in a web browser

https://play.wyrmcourt.com/
1•jonnyka•11m ago•0 comments

NIH Directors Decide, Except When HHS Says No

https://formernih.substack.com/p/nih-directors-decide-except-when
1•SubiculumCode•12m ago•0 comments

Scientific spat erupts over claim that bones have key immune vessels

https://www.science.org/content/article/scientific-spat-erupts-over-claim-bones-have-key-immune-v...
1•prabal97•12m ago•0 comments

Please don't use "win" as an abbreviation for Microsoft Windows

https://www.gnu.org/prep/standards/standards.html#Trademarks
1•dyzone•13m ago•0 comments

Proton Mail now sorts emails into "Primary," "Social," and more, like Gmail

https://www.neowin.net/news/proton-mail-is-finally-now-able-to-sort-your-emails-into-different-ca...
1•bundie•15m ago•0 comments

Are you good at AI, or just using it?

7•ppezaris•19m ago•2 comments

Buoyant software – improves when models improve

https://blog.rajivayyangar.com/buoyancy/
2•rajivayyangar•20m ago•1 comments

Anchors: A simple daily ritual app

https://anchors.wallets.company
2•johnoke•20m ago•0 comments

Bitflash: A Tor-native revival of Bitcoin 0.1.0, mined on CPUs with RandomX

https://bitflash.network/
2•bitflash•21m ago•0 comments

Trading Correlation: From Parlays to Dispersion

https://viniciusesposito.com/notes/dispersion/
2•1htfp•21m ago•0 comments

Hola AI Agent

https://cloudgpu.io/agent/hola-ai-agent
2•seejay•22m ago•0 comments

Pulse: Track your spending as it happens.

https://pulse.wallets.company
2•johnoke•22m ago•1 comments

Academic who accused Jason Arday of plagiarism suspended by university

https://www.bbc.co.uk/news/articles/cevmrjd9lj1o
2•bushwart•23m ago•0 comments

Show HN: WaveHouse – Supabase for ClickHouse

https://wavehouse.dev
4•ericandr•24m ago•0 comments

The government's strategic plan for autism

https://27unihted.substack.com/p/hhss-strategic-plan-for-autism-just
3•SubiculumCode•25m ago•0 comments

Show HN: Skilldocs – Figma for Markdown

https://skilldocs.dev/tour
2•rajivayyangar•27m ago•1 comments

Optimizing things in the USSR (2016)

https://chris-said.io/2016/05/11/optimizing-things-in-the-ussr/
6•cassepipe•28m ago•2 comments

Route the Work, Not Just the Data: GPUs, CPUs, and the Rise of AI-Native SSDs

https://research.triunalabs.com/articles/ai-native-ssd/
3•paulwoll•29m ago•0 comments

The Foothills of Bay Area House Party – By Scott Alexander

https://www.astralcodexten.com/p/the-foothills-of-bay-area-house-party
8•haritha1313•31m ago•0 comments

Reading Together, Unsupervised

https://brian.abelson.live/log/2026/08/12/feederss.html
3•speckx•32m 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!