frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Estonia to give digital identities to AI agents

https://www.euractiv.com/news/estonia-to-give-digital-identities-to-ai-agents/
1•giuliomagnifico•4m ago•0 comments

PWA for nervous system regulation (no subscriptions, offline)

https://quietudeapp.com/
1•saphidev•6m ago•0 comments

Show HN: I Built a SaaS Explainer Template Editor in Clickcast.tech

https://www.clickcast.tech/template-editor
1•clickcasttech•6m ago•0 comments

Linux 7.2 Gets Rid of the Last Optimized MD5 Implementation

https://www.phoronix.com/news/Linux-7.2-MD5-Generic-Only
2•t-3•7m ago•0 comments

Tesla HW3 claim grows to 7,000 owners, gets backing for collective action

https://electrek.co/2026/06/18/tesla-hw3-claim-netherlands-7000-owners-kennedy-van-der-laan/
2•breve•8m ago•0 comments

Haggis legalised in US state as Tartan Army celebrate another World Cup win

https://www.dailyrecord.co.uk/news/scottish-news/haggis-legalised-state-tartan-army-37314996
1•jjgreen•9m ago•0 comments

Rockstar Games faces full hearing over alleged union busting

https://www.theregister.com/offbeat/2026/06/19/rockstar-games-faces-full-hearing-over-alleged-uni...
1•t-3•12m ago•0 comments

The room the economy can't see

https://wilsoniumite.com/2026/06/19/the-room-the-economy-cant-see/
1•Wilsoniumite•12m ago•0 comments

Norway greenlights first full-scale ship tunnel

https://eandt.theiet.org/2026/06/18/norway-greenlights-world-s-first-full-scale-ship-tunnel
2•geox•12m ago•0 comments

GitHub Copilot App

https://github.com/features/ai/github-app
1•adrianvi•14m ago•0 comments

Pazuzu

https://spectrecollie.com/2026/06/18/pazuzu/
1•jwx48•17m ago•0 comments

Protect an MCP Server with an Authorization Server

https://fusionauth.io/blog/mcp-authorization-server
1•sixhobbits•20m ago•0 comments

Sorry Guys,but I'll Be Cryosleeping Throughout the Rest of This Space Expedition

https://www.mcsweeneys.net/articles/sorry-guys-but-ill-be-cryosleeping-throughout-the-rest-of-thi...
1•calcifer•21m ago•0 comments

Conversations Should Stay Yours

https://getweeve.io/
1•dylandeheer•25m ago•0 comments

Pull request limits are cutting down the noise

https://github.blog/open-source/maintainers/how-pull-request-limits-are-cutting-down-the-noise/
3•ingve•25m ago•0 comments

Taipy – Alternative to Streamlit

https://taipy.io/
1•amai•27m ago•0 comments

Node-Fetch on latest Node Update broken

https://github.com/nodejs/node/issues/63989
1•DDerTyp•30m ago•0 comments

Business Intelligence as Code

https://evidence.dev/
1•janandonly•32m ago•0 comments

SSD Prices in 2026

https://i.imgur.com/ekYqwY6.png
2•toilet•32m ago•1 comments

Show HN: I built an 11-LLM consensus engine to detect AI hallucination

https://github.com/jaquelinejaque/quorum-saas-starter
3•jaquelinejaque•35m ago•0 comments

Why Social Media Bans Alone Can't Solve the Age Verification Dilemma

https://about.fb.com/news/2026/06/how-to-verify-age-online/
1•kerim-ca•39m ago•1 comments

Utopia (By Fable)

https://aiking.dwyer.co.za/utopia
2•sixhobbits•40m ago•0 comments

Noumena Code

https://code.noumena.com
1•Marius77•41m ago•0 comments

Show HN: I built a Wu-Tang name generator (wutangname.online)

https://wutangname.online/
1•chenliang001•41m ago•0 comments

Sweden may oppose Tesla's supervised self-driving tech in Europe over speeding

https://www.reuters.com/business/autos-transportation/sweden-may-oppose-teslas-supervised-self-dr...
1•JumpCrisscross•45m ago•0 comments

Barret Zoph is out at OpenAI again after just five months

https://www.theverge.com/ai-artificial-intelligence/952837/barret-zoph-openai-thinking-machines-lab
2•alecco•45m ago•2 comments

The Tokenminning Manifesto

https://www.tokenminning.com/
1•claudiacsf•46m ago•0 comments

Show HN: Alert for real time application including video and audio

https://sf-voice.sh
1•ThatDumbGirl•46m ago•0 comments

Nanowar of Steel – Kotlin (Official Power Point Video)

https://www.youtube.com/watch?v=BsfXZjKLT9A
1•napolux•52m ago•1 comments

WPoptic, A growing public database of WordPress plugin usage

https://wpoptic.com/
1•WPoptic•53m 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!