frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Terence Tao: SAIR's Open Math Model Initiative

https://www.youtube.com/watch?v=PZRb6NIki2w
1•doppp•2m ago•0 comments

Roman Timekeeping

https://en.wikipedia.org/wiki/Roman_timekeeping
1•janandonly•3m ago•0 comments

iPhone 18 Pro with La Croix cooling

https://birchtree.me/blog/iphone-18-pro-with-la-croix-cooling/
1•ingve•5m ago•0 comments

Google's Binder C Linux driver being removed in favor of Rust

https://www.phoronix.com/news/Google-Binder-C-Goodbye
1•joshcsimmons•5m ago•0 comments

Show HN: Word42 Open Source Wordprocessor

2•roschdal•7m ago•0 comments

Base Labs launches an open-weight AI safety partnership with Hugging Face

https://techcrunch.com/2026/09/17/base-labs-launches-an-open-weight-ai-safety-partnership-with-hu...
1•marcosscriven•8m ago•0 comments

Volkswagen Mission Efficiency Sets Three EV Records

https://theevreport.com/volkswagen-mission-efficiency-ev-records
1•mpweiher•16m ago•0 comments

How Notion handles concurrent editing with CRDTs

https://www.notion.com/blog/how-notion-handles-concurrent-editing-with-crdts
2•hisamafahri•16m ago•0 comments

Cube

https://www.cube-motion.dev/
1•handfuloflight•17m ago•0 comments

Reading Markdown in VSCode Doesn't Have to Suck

https://anandprashant.com/posts/reading-markdown-in-vscode-doesnt-have-to-suck
1•primaprashant•18m ago•0 comments

SpaceX Is Retiring Crew Dragon

https://gizmodo.com/spacex-is-retiring-crew-dragon-forcing-nasa-to-bet-big-on-boeings-troubled-st...
1•calcifer•20m ago•0 comments

Human Motor Corpus Callosum

https://www.jneurosci.org/content/27/45/12132
1•bryanrasmussen•24m ago•1 comments

Mostly Oberon (2020)

https://rsdoiel.github.io/blog/2020/04/11/Mostly-Oberon.html
1•marttt•25m ago•0 comments

$32M in Google Ads Spend: Lessons Learned

https://mojodojo.io/blog/32m-google-ads-audit
2•zenincognito•26m ago•2 comments

Show HN: Local subagent orchestration for Codex/Claude

https://github.com/ringlochid/oh-my-subagents
1•ringlochid•34m ago•0 comments

Cloak Data at Every Touchpoint

https://incountry.com/
1•taubek•36m ago•0 comments

What Happens When Your RAG System Retrieves the Wrong Documents?

https://medium.com/@NikoZero11/your-rag-pipeline-doesnt-need-more-retrieval-it-needs-better-decis...
1•Savanjj•37m ago•0 comments

SwarmAuth – OAuth 2.1 for AI Agent Swarms

https://pypi.org/project/swarmauth/
1•waspdrey•39m ago•0 comments

VortexMQ – Fast message broker in pure Go with Redis protocol

1•ianshugarg•44m ago•0 comments

Haxophone – A hackable electronic saxophone with mechanical keys

https://www.crowdsupply.com/cardona-bits/haxophone
1•raffael_de•45m ago•0 comments

AI posters don't have to be horrible

https://john.hartnup.uk/2026/06/07/ai-event-posters.html
7•ereiamjh•46m ago•1 comments

Show HN: AgentMeasure – healthchecks and settlement statements for AI bills

https://github.com/roy-tong/AgentMeasure
1•tongroy•51m ago•0 comments

Stop adapting Jane Austen 5 other 18th‑century writers perfect for the screen

https://theconversation.com/stop-adapting-jane-austen-five-other-18th-century-writers-perfect-for...
3•zeristor•59m ago•0 comments

Ask HN: Losing motivation to work in the IT field, need advice

5•trowa159•59m ago•1 comments

Microsoft Patents "Ad-Credit" System to Serve In-Game Ads During Pause Windows

https://respawnfirst.com/microsoft-patents-ad-credit-system-for-pc-and-consoles-to-serve-in-game-...
2•haunter•1h ago•0 comments

Dear Customer, Fuck You

https://fuck-off.ai
4•gfody•1h ago•0 comments

Benchmarking Wild vs. Mold

https://davidlattimore.github.io/posts/2026/09/18/benchmarking-wild-vs-mold.html
2•vinhnx•1h ago•0 comments

Classifier.dev: outperforms Jev and is free

https://classifier.dev/
2•handfuloflight•1h ago•0 comments

CrypLLM: AI chat agent for CrypTool 2

https://github.com/CrypToolProject/CrypTool-2/tree/main/CrypLLM
2•modinfo•1h ago•0 comments

What Motivates Innovators?

https://bec-systems.com/blog/0356-what-motivates-innovators/
2•jyhrow•1h ago•1 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!