frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Taylor series in the Russian civil war era Ukraine

https://elr3to.blogspot.com/2013/04/i-tamm-and-remainder-term-in-taylors.html
1•ganitam•1m ago•1 comments

Material Lab

https://materiallab.ai
1•danjlaury•4m ago•1 comments

Emails show Amazon colluded to raise prices, California authorities allege

https://www.theguardian.com/us-news/ng-interactive/2026/apr/20/amazon-sellers-price-raises-califo...
1•kmfrk•5m ago•1 comments

New Tractor with 12-Valve Cummins and Zero Electronics Goes Back to the Basics

https://www.thedrive.com/news/new-tractor-with-12-valve-cummins-and-zero-electronics-goes-back-to...
2•pkaeding•6m ago•0 comments

Spirit Airlines in Talks with Trump Administration on Government Investment

https://www.wsj.com/business/airlines/struggling-spirit-airlines-in-talks-with-trump-administrati...
2•petethomas•10m ago•0 comments

Interview: Christopher Borgert on an Infamous Glyphosate Paper

https://undark.org/2026/04/20/interview-christopher-borgert-glyphosate/
1•EA-3167•20m ago•0 comments

California Accuses Amazon of Price Fixing in Legal Filing

https://www.nytimes.com/2026/04/20/technology/amazon-antitrust-suit-california.html
3•1vuio0pswjnm7•22m ago•0 comments

The Flattering Mirror

https://hansstegeman.substack.com/p/the-flattering-mirror
1•severine•23m ago•0 comments

Roko's Basilisk

https://en.wikipedia.org/wiki/Roko%27s_basilisk
1•BiraIgnacio•23m ago•0 comments

It's not just Apple News study finds rampant bias on Google News, Yahoo and Bing

https://nypost.com/2026/04/20/business/its-not-just-apple-news-left-wing-bias-rampant-on-google-n...
3•1vuio0pswjnm7•24m ago•0 comments

Making RAM at Home [video]

https://www.youtube.com/watch?v=h6GWikWlAQA
3•kaipereira•25m ago•0 comments

Show HN: Mimi in the browser – hear the semantic/acoustic split

https://www.frisson-labs.com/mimi-codec
3•ymaws•26m ago•1 comments

macOS permission popup now can sit under System Settings with animated guidance

https://github.com/jaywcjlove/PermissionFlow
1•frabonacci•27m ago•0 comments

Clanker

https://en.wikipedia.org/wiki/Clanker
4•nvahalik•28m ago•0 comments

Microsoft now offering chance to win $1M or a car if you switch to Edge

https://www.neowin.net/news/microsoft-now-offering-chance-to-win-1-million-or-a-car-if-you-switch...
3•croes•28m ago•1 comments

Linux PTP mainline development war story and new features

https://bootlin.com/blog/linux-ptp-mainline-development-war-story-and-new-features/
3•ahlCVA•33m ago•0 comments

Bizarre Viruses Indeed

https://www.science.org/content/blog-post/bizarre-viruses-indeed
2•etiam•37m ago•0 comments

New Uber Sexual Assault Trial Underway in North Carolina Federal Court

https://www.law.com/therecorder/2026/04/20/new-uber-sexual-assault-trial-underway-in-north-caroli...
2•1vuio0pswjnm7•41m ago•0 comments

Fedizen.eu Delivers All Relevant Fediverse News

https://fedizen.eu/#Fedizen
1•doener•42m ago•0 comments

Linux 7.1 will have an optional new NTFS driver

https://www.theregister.com/2026/04/20/linux_71_new_ntfs/
2•blackcoffeerain•42m ago•1 comments

Tools of Statecraft

https://www.fpri.org/article/2008/01/tools-of-statecraft-diplomacy-and-war/
1•_doctor_love•44m ago•0 comments

Microsoft helped write data centre emissions secrecy into EU law

https://www.impactloop.com/artikel/microsoft-helped-write-data-centre-emissions-secrecy-into-eu-l...
4•doener•45m ago•0 comments

Show HN: Trees Hate You Guide – play the demo

https://treehateyou.net/
2•jokera•45m ago•1 comments

Tell HN: Gemini CLI and codex are broken

2•garyfirestorm•46m ago•0 comments

Getting back into photography, ditching the phone camera in 2026?

2•eigenhombre•49m ago•3 comments

Watch Twitch Streams on the Amiga

https://amigabench.itch.io/amistreamraider
2•doener•52m ago•0 comments

Linux 7.1 update includes new in-kernel NTFS driver

https://www.tomshardware.com/software/linux/linux-7-1-update-includes-new-in-kernel-ntfs-driver-d...
3•ValentineC•52m ago•0 comments

Forgejo v15.0 Is Available

https://forgejo.org/2026-04-release-v15-0/
2•birdculture•52m ago•0 comments

Mayhem's Legacy: Why MetaBrainz Matters More Than Ever

https://compassmapandkey.com/2026/04/18/mayhems-legacy-why-metabrainz-matters-more-than-ever-and-...
1•JadedBlueEyes•53m ago•0 comments

Stalwart v0.16: A New Foundation

https://stalw.art/blog/stalwart-0-16/
1•currysausage•56m 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•12mo ago

Comments

semihs•12mo 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!