frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Artemis II Flight Day 10: Crew Sets for Final Burn, Splashdown

https://www.nasa.gov/blogs/missions/2026/04/10/artemis-ii-flight-day-10-crew-sets-for-final-burn-...
1•js2•22s ago•0 comments

LLMs 'banchmark' where they write code controlling units in a 1v1 RTS

https://yare.io/ai-arena
1•levmiseri•38s ago•0 comments

May be the first year of a million CVEs

https://liam-on-linux.dreamwidth.org/98430.html
1•speckx•1m ago•0 comments

The Hypercurious Mind

https://aeon.co/essays/how-the-hypercuriosity-of-adhd-may-have-helped-humans-thrive
1•supermdguy•2m ago•0 comments

Indian Government seeks X Community Notes oversight with IT Rules tweaks

https://www.hindustantimes.com/india-news/government-seeks-x-community-notes-oversight-with-it-ru...
1•LordAtlas•4m ago•0 comments

Cypress vs. Playwright: Architecture Deep Dive

https://yatsushi.com/blog/cypress-vs-playwright/
1•jumbosushi•4m ago•0 comments

A New Wakamai Fondue

https://pixelambacht.nl/2026/a-new-wakamai-fondue/
1•robin_reala•5m ago•0 comments

A discrete structural grammar for financial markets – Kaggle competition

https://www.kaggle.com/competitions/ska-crypto-trading-bot-with-binance
1•quantiota•5m ago•0 comments

Two hundred chimpanzees are embroiled in a 'civil war'

https://www.scientificamerican.com/article/two-hundred-chimpanzees-are-embroiled-in-a-civil-war/
2•gscott•6m ago•0 comments

Peers vote to ban pornography depicting sex acts between stepfamily members

https://www.theguardian.com/society/2026/apr/10/porngraphy-depicting-sex-acts-between-stepfamily-...
3•azalemeth•7m ago•0 comments

BMW iX5 Hydrogen Gets New Flat Tank System, Range Up to 750 Km

https://www.bmwblog.com/2026/04/08/bmw-ix5-hydrogen-flat-tank-system-750-km-range/
1•akyuu•9m ago•0 comments

The AWS Lambda 'Kiss of Death'

https://shatteredsilicon.net/the-aws-lambda-kiss-of-death/
2•tkyjonathan•9m ago•1 comments

Ask HN: What Are You Working On? (April 2026)

1•niyazpk•9m ago•0 comments

Detecting multiple cancers and other diseases from a single blood sample

https://medicalxpress.com/news/2026-04-multiple-cancers-diseases-blood-sample.html
1•gmays•12m ago•0 comments

The Global Wildlife Trade Is Fueling the Spread of Viruses

https://e360.yale.edu/digest/wildlife-trade-disease
1•speckx•12m ago•0 comments

Show HN: I built an AI pipeline to turn Infosec talks into readable, quick blogs

https://greptalks.ai
1•csima•14m ago•0 comments

They thought Iran has no air defence

https://megam226.substack.com/p/they-said-iran-had-no-air-defenses
2•megam226•15m ago•0 comments

Engineering a Better Java Build Tool [video]

https://www.youtube.com/watch?v=OtsJ902k458
1•lihaoyi•16m ago•0 comments

Europe funds our brainwashing (Proton CEO warns) [video]

https://www.youtube.com/watch?v=RTCkiWju46o
1•chriswep•16m ago•0 comments

Built something I don't even know how to position anymore

https://www.indiehackers.com/post/built-something-i-don-t-even-know-how-to-position-anymore-dfbb5...
1•Damjanmb•17m ago•0 comments

Industrial design files for Keychron keyboards and mice

https://github.com/Keychron/Keychron-Keyboards-Hardware-Design
19•stingraycharles•19m ago•1 comments

Deep Thought: A Conversation with Wolf Biermann – Arte.tv Documentary

https://www.youtube.com/watch?v=7KG4_6vy3P4
1•doener•19m ago•0 comments

New Vulnerabilities in IBM WebSphere Liberty Can Lead to Full Server Compromise

https://www.oligo.security/blog/new-websphere-liberty-vulnerabilities
1•curmudgeon22•21m ago•0 comments

TurboQuant Pro – 27-41x embedding compression via PCA-Matryoshka

https://github.com/ahb-sjsu/turboquant-pro
2•ahb-sjsu•21m ago•0 comments

Claude Code is a vibe-coded mess. Some of it is good

https://blog.raed.dev/posts/claude_code_clever_ideas/
5•Raed667•22m ago•1 comments

Xclif: The file routing-based CLI framework

https://github.com/ThatXliner/xclif
1•thatxliner•22m ago•0 comments

Meta Pauses Work with Mercor After Data Breach Puts AI Industry Secrets at Risk

https://www.wired.com/story/meta-pauses-work-with-mercor-after-data-breach-puts-ai-industry-secre...
1•gmays•22m ago•0 comments

Deconstructing a Black Hole in a Fragment Shader

https://vaidikv.github.io/deconstructing-a-black-hole/
2•apson•24m ago•1 comments

WildDet3D: Scaling Promptable 3D Detection in the Wild

https://allenai.github.io/WildDet3D/
1•aanet•24m ago•1 comments

Show HN: Electric Minds Reborn: pioneering virtual community, on a new platform

https://electricminds.org
1•amysox•25m 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•11mo ago

Comments

semihs•11mo 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_•11mo 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•11mo 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_•11mo ago
That sounds great!