frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pentagon releases second batch of UFO videos and first-hand testimony

https://www.theguardian.com/world/2026/may/22/pentagon-ufo-videos-testimony-documents
1•tosh•1m ago•0 comments

Build on Templ: The Stack for Token Communities

https://twitter.com/TemplFun/status/2057839047851041045
1•marcoworms•2m ago•0 comments

Samsung's memory chip employees negotiated $340k bonuses this year

https://www.theverge.com/tech/936002/samsung-memory-chip-employees-deal-strike-bonus
2•Brajeshwar•4m ago•0 comments

FiaPhy – Save over $5,000 as a solar investor or simply as a homeowner

https://github.com/fiaos-org/FiaPhy
1•openrockets•6m ago•1 comments

Ask HN: How are people getting feedback on prototypes?

1•kadhirvelm•7m ago•0 comments

Turn an Intel iMac into a 5K Display

https://github.com/swellweb/targetBridge
1•targetbridge•11m ago•0 comments

Judgment Is a Skill

https://personalis.io/blog/judgment
1•sylvanjsmit•12m ago•0 comments

Cosmic Philosophical Conjecture with Gemini: A Meta-Sci-Fi Documentary Project

https://medium.com/@f9121212/cosmic-philosophical-conjecture-with-gemini-a-meta-sci-fi-documentar...
1•ortrich•13m ago•0 comments

Cloudflare API and Pages down

https://www.cloudflarestatus.com
1•mittermayr•14m ago•1 comments

The emotional slot machine of being a sports fan

http://shikharsachdev.com/the-emotional-slot-machine-of-being-a-sports-fan/
1•shsachdev•14m ago•0 comments

WebGPU back end in llama.cpp/ggml

https://twitter.com/ggerganov/status/2057668450076520811
1•tosh•16m ago•0 comments

The Invention of Numbers [Humor]

https://yelluwcomedy.substack.com/p/the-invention-of-numbers
1•pryelluw•16m ago•1 comments

U.S. researchers face new restrictions on publishing with foreign collaborators

https://www.science.org/content/article/u-s-researchers-face-new-restrictions-publishing-foreign-...
2•ceejayoz•16m ago•0 comments

AI's Role in Revolutionizing Mathematics and the Quest for Ethical Science

https://www.eliza-ng.me/post/llmslargelangua_4/
1•speckx•17m ago•0 comments

Staysin.eu – does a domain's hosting and tracking leave the EU?

https://staysin.eu/
1•maxheyer•17m ago•0 comments

Semantic Commit Messages

https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716
1•lemonwaterlime•18m ago•1 comments

Show HN: My dad is a forensic accountant. I automated ~62% of his job

https://case-trail.com/blog/ai-forensic-accounting-automation
3•mstalcup•20m ago•1 comments

Trump's unsigned AI executive order

https://www.politico.com/news/2026/05/22/heres-a-draft-of-trumps-unsigned-ai-executive-order-0093...
1•JumpCrisscross•22m ago•1 comments

Mdview.io – a Markdown viewer for AI era documentation

https://mdview.io/
1•Igor_Wiwi•24m ago•0 comments

Show HN: Flow2 – We rebuilt presentations mobile first

https://flow2.co/
2•brookler•26m ago•0 comments

Anti-"doomer" feedback derails Trump's AI executive order

https://www.axios.com/2026/05/21/trump-ai-executive-order-postponed-why
2•mikhael•27m ago•0 comments

Agents League: The Esports-Inspired Hackathon Where AI Agents Battle for Glory

https://techcommunity.microsoft.com/blog/azuredevcommunityblog/agents-league-the-esports-inspired...
1•geox•29m ago•1 comments

The AI Superstars Who Say a 'Vibe Slop' Crisis Is Coming

https://www.wsj.com/tech/ai/vibe-coding-slop-ai-tools-e6a99394
3•The_Fox•30m ago•1 comments

To achieve major goals, NASA seeks to streamline its organization

https://arstechnica.com/space/2026/05/to-achieve-major-goals-nasa-seeks-to-streamline-its-organiz...
1•LorenDB•31m ago•1 comments

Show HN: Appbun turn any webpage into an inspectable Electrobun desktop app

https://github.com/bigmacfive/appbun
1•bigmacfive•31m ago•0 comments

The Fake Nobel That Duped the Romanian Academy

https://www.scena9.ro/en/article/romanian-academy-nobel-florent-montaclair-chomsky
1•speckx•32m ago•0 comments

Show HN: Interactive first-principles climate physics simulation with explainer

https://earth.crackalamoo.com
1•crackalamoo•32m ago•0 comments

GLP-1s Linked to Lower Risk of Cancer Spread in Four Tumor Types

https://www.medpagetoday.com/meetingcoverage/asco/121397
2•ascorbic•33m ago•0 comments

A PDF let the internet hear the final words in the cockpit of UPS plane

https://www.cnn.com/2026/05/22/us/plane-crash-audio
2•intrasight•34m ago•0 comments

Dutch FIOD dismantled arm of Stark Industries – bulletproof hoster

https://twitter.com/IntCyberDigest/status/2057847058430656518
1•defly•35m 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!