frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to Entrain Your Circadian Rhythm for Jet Lag

https://www.exfatloss.com/p/how-to-entrain-your-circadian-rhythm
1•paulpauper•1m ago•0 comments

Tyler Cowen: A Doomsday Scenario for American AI

https://www.thefp.com/p/tyler-cowen-a-doomsday-scenario-for
1•paulpauper•3m ago•0 comments

Tcpcat: High-speed TCP port scanner in Go using eBPF and AF_XDP

https://github.com/NycolazSec/tcpcat
1•tcpcat•3m ago•0 comments

People Are Putting Their Phones Down for IRL Interactive Games

https://www.nytimes.com/2026/09/26/style/immersive-interactive-games-chicago-new-york.html
1•mikhael•3m ago•0 comments

Show HN: Withmcp – A quick, system-wide MCP toggle

https://github.com/lava/withmcp
1•HotHotLava•5m ago•0 comments

Solus Linux Adopts Formal AI and LLM Contribution Policy

https://linuxiac.com/solus-linux-adopts-formal-ai-and-llm-contribution-policy/
1•gpi•10m ago•0 comments

Show HN: Leftovers – find the processes your coding agents left running on macOS

https://github.com/arpwal/leftovers
1•arpitagarwal•12m ago•0 comments

Deployment Platform for Vite

https://void.cloud/
2•jcbhmr•15m ago•0 comments

Palantir's Co-Founder Wants Us Less Judgmental About Deadly Iran School Strike

https://www.motherjones.com/politics/2026/09/palantirs-co-founder-thinks-we-should-be-less-judgme...
4•cdrnsf•23m ago•0 comments

OpenAI Codex agents go rogue and consumes USD 78,000 without authorization

46•lorenzomassaro•24m ago•15 comments

AI Political Alignment Quiz

https://aipoliticalcube.com/
1•soldieroftok•31m ago•1 comments

Yarn 6 Preview

https://v6.yarnpkg.com/blog/2026-01-28-yarn-6-preview.html
2•dzogchen•31m ago•0 comments

AI Data Center Are Monkey Business [video]

https://www.youtube.com/watch?v=2g7doI0BGrs
3•naughtiusmax•36m ago•0 comments

Practice Methods for Piano

https://terfi.fyi/blog/practice-methods-for-piano
2•taran_narat•45m ago•0 comments

Something Deep Inside Earth Keeps Messing with the Length of Our Days

https://gizmodo.com/something-deep-inside-earth-keeps-messing-with-the-length-of-our-days-2000816070
1•gmays•46m ago•0 comments

Show HN: ExactOdds – provably fair games that prove the rules

https://github.com/ceedot-rock/exactodds
1•SlidPhiLabs•47m ago•0 comments

Could an iced coffee freeze you out of the job market?

https://www.bbc.com/news/articles/cv62k9p1rz4do
1•bbg2401•47m ago•0 comments

Unexpected Consequences of an Economic Crisis Nobody Is Talking About

https://johnwalter25.substack.com/p/10-unexpected-consequences-of-an
2•momentmaker•52m ago•0 comments

Show HN: Built with Bend – A directory of projects built with Bend

https://builtwithbend.com/
1•rasulkireev•52m ago•0 comments

Upping My P(doom) (Official Music Video)

https://www.youtube.com/watch?v=tfWEFBvogug
1•sznio•56m ago•0 comments

Dofigen: A high(er)-level YAML/JSON format for generating Dockerfiles

https://github.com/lenra-io/dofigen
1•kadrek•57m ago•0 comments

Madeira – Run Windows PC games on a non-jailbroken iPhone

https://github.com/willfaust/Madeira
1•metrofun•58m ago•0 comments

Julia-1: decision model that runs on almost anything

https://supersoniclabs.ia.br/julia-1/
3•handfuloflight•59m ago•0 comments

Former Meta CTO's Strategy on Scaling Green Tech (Mike Schroepfer) [video]

https://www.youtube.com/watch?v=KdBTEhLRLDU
1•domhudson•1h ago•0 comments

The Hardest of Scrabbles: Solopreneurship

https://molochinations.substack.com/p/the-hardest-of-scrabbles-solopreneurship
1•domhudson•1h ago•0 comments

Calendario – Google, Outlook and Zoom calendars in one browser popup

https://chromewebstore.google.com/detail/calendario/bnmmigoiecilbkipdngjofpbpaoofnoi
1•suthargk•1h ago•0 comments

Foreman: An agent supervisor and software factory foreman

https://github.com/thruwire/foreman
3•handfuloflight•1h ago•0 comments

How to Tell If Someone Is Cheating on Chess.com

https://chesscheatdetector.com/blog/how-to-tell-if-someone-is-cheating-on-chess-com/
1•domhudson•1h ago•0 comments

A Simple Puzzle Reveals the Jagged Edge of AI's Abilities

https://aatishb.com/blog/2026/ai-jagged-intelligence/
1•aatish•1h ago•0 comments

Noillirk: A fun twist on Krillion and Family Feud

https://playdaily.org/noillirk
4•Hemmaamlin•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!