frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Space nuclear programs face near- and long-term challenges

https://spacenews.com/space-nuclear-programs-face-near-and-long-term-challenges/
1•defrost•1m ago•0 comments

Show HN: Control AI Agents on Your Old PC at Home from Any Device Anywhere

https://github.com/elin66alpha/Relay
1•elin66alpha•3m ago•1 comments

Careless People (2025)

https://en.wikipedia.org/wiki/Careless_People
2•vismit2000•3m ago•0 comments

Show HN: Csift – the missing tool to sift your Claude Code sessions

https://github.com/wdhwg001/csift
1•wdhwg001•5m ago•0 comments

Customize a lunar calendar generator. Try FREE

https://lunacal-sable.vercel.app/
1•unhigo•6m ago•1 comments

Vasovagal: Markdown-Based 2nd Brain

https://vasovagal.github.io/
2•razkarcy•8m ago•0 comments

A Multiplayer Survival Pong

https://antics.gg/p/side-out-94df7d
2•burgerquizz•10m ago•0 comments

The Recursive Economy: AI Self-Improvement and Scarcity

https://recursive-economy.pages.dev/
1•codelion•13m ago•0 comments

Harvard Agrees to $53M Settlement in Body Part Theft Scandal

https://www.nytimes.com/2026/08/18/us/harvard-stolen-body-parts-settlement.html
2•ChrisArchitect•19m ago•1 comments

Generalized Audio-Driven Synthesis of Precise Drummer Motion

https://studios.disneyresearch.com/2026/08/18/generalized-audio-driven-synthesis-of-precise-drumm...
1•DustinBrett•20m ago•0 comments

TinyRetroPad is 130 times smaller than Windows Notepad

https://www.xda-developers.com/tinyretropad-130-times-smaller-than-windows-notepad-but-functional/
3•nianderwallace•22m ago•0 comments

Agent2Agent (A2A) joins Agentic AI Foundation (AAIF)'s open agentic stack

https://aaif.io/blog/a2a-joins-aaif
1•ChrisArchitect•25m ago•0 comments

The Machines Are Getting Cheap. The Toolpaths Are Not

https://sliptonic.com/posts/machines-cheap-toolpaths-not/
2•sergebakharev•25m ago•0 comments

Ask HN: How are front end friends doing these days?

1•BearBest•26m ago•2 comments

Japan's Gen X workers are struggling

https://www.economist.com/asia/2026/08/18/japans-gen-x-workers-are-struggling
1•andsoitis•27m ago•0 comments

Cosmological natural selection: evolution beyond biology

https://www.smithsonianmag.com/science-nature/earths-organisms-developed-via-evolution-some-theor...
1•fidrelity•29m ago•1 comments

How Claude is accelerating protein design and analytical chemistry

https://www.anthropic.com/research/Claude-accelerates-protein-design
1•starshadowx2•29m ago•0 comments

Does anyone care about HR?

1•drguzman•29m ago•0 comments

Will Autonomous AI Exceed AI-Aided Physicians as the Best Medical Care?

https://jamanetwork.com/journals/jama/fullarticle/2852952?guestAccessKey=562af865-a038-4425-993f-...
1•liamkf•30m ago•0 comments

Want a Simple, Metasearch Engine?

https://github.com/LiamProsser77/gronnfalk
1•Gronnfalk•31m ago•0 comments

Qnote – a notepad in the browser with no account and no cloud

https://qnote.online/
1•yashsharma04•32m ago•0 comments

Strive to Be Earth's Best Employer

1•oenton•40m ago•0 comments

Snake rendered with 576 browser windows

https://codepen.io/editor/GrahamTheDev/pen/019f90a9-1ed9-7d61-927e-31dd5256c79e
1•LouisLazaris•43m ago•1 comments

Puzzle nights are up 151% and my team works alone

https://dev.profullstack.com/~anthony/blog/017-post.html
2•buffer_overlord•43m ago•0 comments

Palomar: A registry of Lean verified mathematics

https://terrytao.wordpress.com/2026/08/18/palomar-a-registry-of-lean-verified-mathematics/
4•matt_d•48m ago•0 comments

Reasons to Avoid Seed Oils [video]

https://www.youtube.com/watch?v=EIKFuUnfeW4
2•pinkmuffinere•50m ago•0 comments

Tech Transparency Project – Holding Big Tech Accountable

https://www.techtransparencyproject.org/
2•dotcoma•51m ago•0 comments

"the mandate" a short fiction by Grok 4.6 on technological singularity

https://www.echohive.ai/the-mandate-singularity-fiction
2•echohive42•52m ago•0 comments

An Engineer as Civil Servant

https://govinsider.asia/intl-en/article/an-engineer-as-civil-servant
1•doppp•52m ago•0 comments

SniffCat – A free API for checking and reporting abusive IPs

https://sniffcat.com/
2•sefinek•54m 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!