frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: A deadly simple tmux windows like start UI

https://github.com/liyu1981/tmux_start_ui
1•liyu1981au•1m ago•0 comments

Landslides kill 227 at Democratic Republic of Congo coltan mines

https://www.wsws.org/en/articles/2026/02/09/jndz-f09.html
1•PaulHoule•3m ago•0 comments

Paul Brainerd, conservationist who pioneered desktop publishing, dies at 78

https://www.seattletimes.com/business/local-business/paul-brainerd-conservationist-who-pioneered-...
1•dangle1•4m ago•1 comments

Global regulators say AI image tools don't get a free pass on privacy rules

https://www.theregister.com/2026/02/23/privacy_watchdogs_ai_images/
1•Bender•4m ago•0 comments

Dynamically making agents to monitor PRs

https://blog.firetiger.com/deploying-changes-faster-with-firetiger/
1•spenczar5•5m ago•0 comments

Show HN: Credit Units – A New Credit Market Primitive (Live on Solana Devnet)

https://github.com/zippy2261-lgtm/credit-units
1•CU-Soon•5m ago•0 comments

Those Who Can, Teach History

https://www.historytoday.com/archive/making-history/those-who-can-teach-history
1•samclemens•6m ago•0 comments

Acting Ethically in an Imperfect World

https://tante.cc/2026/02/20/acting-ethical-in-an-imperfect-world/
1•cratermoon•15m ago•0 comments

Add smooth cursor animation · zed

https://github.com/zed-industries/zed/pull/44770
1•dmmalam•15m ago•0 comments

Arcee-AI/Trinity-Large-Preview

https://huggingface.co/arcee-ai/Trinity-Large-Preview
1•handfuloflight•18m ago•0 comments

Show HN: Steerling-8B, a language model that can explain any token it generates

https://www.guidelabs.ai/post/steerling-8b-base-model-release/
2•adebayoj•20m ago•0 comments

The $200M Machine That Prints Microchips: The EUV Photolithography System [video]

https://www.youtube.com/watch?v=B2482h_TNwg
1•mgh2•20m ago•0 comments

Psychology suggests making a shopping list is a sign of sharper thinking

https://economictimes.indiatimes.com/news/international/us/still-making-a-shopping-list-psycholog...
6•ColinWright•20m ago•1 comments

CurveFit – Free browser-based scientific curve fitting with AICc model selection

https://calyphi.com/app
1•emsti•22m ago•0 comments

A reproducible VOID boundary across GPT, Claude, and Gemini (GPT-4o video)

https://doi.org/10.5281/zenodo.18750330
1•rayanpal_•22m ago•1 comments

Utah mom Kouri Richin Googled 'luxury prisons for the rich' after killing spouse

https://www.foxnews.com/us/utah-mom-kouri-richins-googled-luxury-prisons-rich-allegedly-killing-h...
1•randycupertino•22m ago•1 comments

Webflow Agent Skills by 224 Industries

https://github.com/224-Industries/webflow-skills
1•flashbrew•24m ago•0 comments

Shatner is making an album with 35 metal icons

https://www.guitarworld.com/artists/guitarists/william-shatner-announces-all-star-metal-album
5•mhb•24m ago•0 comments

Hegseth to meet Anthropic CEO as Pentagon threatens banishment

https://www.axios.com/2026/02/23/hegseth-dario-pentagon-meeting-antrhopic-claude
2•samsolomon•26m ago•0 comments

DeepSeek trained AI model on Nvidia's best chip despite US ban

https://www.reuters.com/world/china/chinas-deepseek-trained-ai-model-nvidias-best-chip-despite-us...
1•geox•34m ago•0 comments

iMessage AI Chatbot Demo

https://github.com/sibblegp/car-service-demo
1•gsibble•35m ago•0 comments

Enthusiasts used their home computers to search for ET

https://phys.org/news/2026-01-enthusiasts-home-scientists-homing.html
2•Anon84•36m ago•1 comments

ChatGPT finds an error in Terence Tao's math research

2•codexon•38m ago•0 comments

AWS says more than 600 FortiGate firewalls hit in AI-augmented campaign

https://www.theregister.com/2026/02/23/aws_fortigate_firewalls/
1•Bender•40m ago•0 comments

Firefox 148 Now Available with the New AI Controls / AI Kill Switches

https://www.phoronix.com/news/Firefox-148
6•Bender•42m ago•0 comments

Meta problem with URPF our bundle in Boca raton

https://metafixthis.com/
1•synthesis5x•45m ago•1 comments

Netflix sparks fury by cutting off access for almost 90M devices

https://www.dailymail.co.uk/sciencetech/article-15585211/netflix-cuts-support-older-devices-plays...
2•Bender•46m ago•1 comments

Paediatricians' blood used to make new treatments for RSV and colds

https://www.newscientist.com/article/2516079-paediatricians-blood-used-to-make-new-treatments-for...
1•colinprince•46m ago•0 comments

Ask HN: What Linux Would Be a Good Transition from Windows 11

2•Cyberis•46m ago•5 comments

U.S. Plans to Stop Funding Low-Earning Degrees. Indiana May Just End Them

https://www.insidehighered.com/news/government/state-policy/2026/02/23/indiana-bill-would-use-fed...
4•bikenaga•48m 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•10mo ago

Comments

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