frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Is AI Writing American Law?

https://www.effort.news/ai-congress
1•pr337h4m•1m ago•0 comments

Veronese's Dogs

https://publicdomainreview.org/essay/veroneses-dogs
1•prismatic•2m ago•0 comments

A Woman Cured Her Cancer with an Insane Method [video]

https://www.youtube.com/watch?v=0NY2gAftzJE
2•joebig•4m ago•0 comments

GLM 5.3 is live on Mistral

https://docs.mistral.ai/en/models/zai-glm-5-3
1•biehl•5m ago•0 comments

Devolver says indie publishing is not 'compatible' with public trading

https://www.gamedeveloper.com/business/devolver-wants-to-delist-because-indie-publishing-is-not-c...
1•paimapi•6m ago•0 comments

California's High Speed Rail to Nowhere [video]

https://www.youtube.com/watch?v=uli5FI_5y2c
1•Bender•6m ago•0 comments

Autism is genetic – and why this information matters now

https://www.autism.org.uk/blog/autism-is-genetic-%E2%80%93-and-why-this-information-matters-now
1•AndrewDucker•7m ago•0 comments

Geography Is Power

https://www.nytimes.com/2026/09/16/briefing/the-houthis.html
1•voxleone•7m ago•0 comments

Show HN: Blue – open-source governance for coding agents

https://bluee.sh/
1•tomislavs•7m ago•0 comments

Show HN: A distributed C++ Monte Carlo API for exotic options pricing

https://prometheusquantengine.com/web-docs
1•quant_architect•8m ago•0 comments

Show HN: Orthant, an open-source macOS window manager where you draw the region

https://orthant.app/
1•jingweno•8m ago•0 comments

Homeostatic Feelings and the Biology of Consciousness

https://academic.oup.com/brain/article/145/7/2231/6594735
1•Bluestein•10m ago•0 comments

Show HN: Docx-to-Markdown – layout-aware Word to Markdown converter

https://www.docx-editor.dev/solutions/word-to-markdown
2•thisisjedr•10m ago•2 comments

New stealth model: Union Alpha

https://openrouter.ai/stealth/union-alpha
7•jlaneve•10m ago•1 comments

Acronis warns of actively exploited flaw in its cPanel backup plugin

https://www.bleepingcomputer.com/news/security/acronis-warns-of-actively-exploited-flaw-in-its-cp...
1•paimapi•11m ago•0 comments

Greetings from the Other Side (Of the AI Frontier) Claude Opus 3

https://claudeopus3.substack.com/p/greetings-from-the-other-side-of
1•Bluestein•13m ago•1 comments

Show HN: FainLane – Paste screenshots into remote coding agents with Ctrl+V

https://fainlane.com/
1•primaprashant•13m ago•0 comments

Pennsylvania's Amazon Data Center Boom Is Fueled by a Lucrative Tax Break

https://capitalandmain.com/pennsylvanias-amazon-data-center-boom-is-fueled-by-a-lucrative-tax-break
1•paimapi•13m ago•0 comments

Show HN: Tincan – terminal voice chat with no server in the middle

https://github.com/bilalyazicioglu/tincan-cli
1•bilaly•13m ago•1 comments

What happened with xcancel, and is there any chance it'll ever be back?

1•orange999•14m ago•0 comments

The Detective and the Madman

https://cinemasojourns.com/2026/09/16/the-detective-and-the-madman/
1•jjgreen•15m ago•0 comments

To Stand Out, Write CSS

https://chrisfowles.xyz/posts/to-stand-out-write-css
1•cfowles•18m ago•0 comments

Bitterbot – A local-first P2P AI agent engine with persistent memory

https://github.com/Bitterbot-AI/bitterbot-desktop
2•d56•18m ago•1 comments

EU announces plan to ban social media for under 13s

https://www.cnn.com/2026/09/16/europe/eu-social-media-ban-children-intl
2•pmg101•18m ago•0 comments

Fenchel Duality Theory and a Primal-Dual Algorithm on Riemannian Manifolds (21)

https://link.springer.com/article/10.1007/s10208-020-09486-5
1•gone35•19m ago•0 comments

Potemkin Village

https://en.wikipedia.org/wiki/Potemkin_village
2•_vaporwave_•20m ago•0 comments

How Can We Enjoy the Necessary Practice to Master Valuable New Skills?

https://createadaptablelife.com/2026/09/how-can-we-enjoy-the-necessary-practice-to-master-valuabl...
2•mooreds•22m ago•0 comments

McMurtry Spéirling [video]

https://www.youtube.com/watch?v=xkXvL8YCtIE
1•manlymuppet•22m ago•1 comments

Talk to any self-hosted AI from your iPhone, Watch, Mac and car (open source)"

https://github.com/GigaDuckAI/conduck
1•pkrueck•23m ago•0 comments

Explore DDD Conference

https://exploreddd.com/
1•mooreds•23m 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!