frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Zehrava Gate – an control plane that sits between AI agents and prod

1•cgallic•1m ago•0 comments

Single-dose treatment approved for sleeping sickness

https://www.nature.com/articles/d44148-026-00051-w
1•bookofjoe•2m ago•0 comments

Show HN: AlphaEvolve inspired evolution harness for Pokemon

https://github.com/papercomputeco/pokemon
2•brianllamar•3m ago•0 comments

Ex-Google PM Builds God's Eye to Monitor Iran in 4D

https://www.youtube.com/watch?v=0p8o7AeHDzg
1•doener•4m ago•0 comments

The Only Code That Defies Entropy

https://ta.fo/the-only-code-that-defies-entropy/
1•freediver•4m ago•0 comments

Python: The Optimization Ladder

https://cemrehancavdar.com/2026/03/10/optimization-ladder/
1•Twirrim•5m ago•0 comments

The Public Suffix List

https://publicsuffix.org/list/public_suffix_list.dat
1•barishnamazov•6m ago•1 comments

V32 (Number Station)

https://priyom.org/number-stations/other/v32
1•NoboruWataya•6m ago•0 comments

I Built an AI Agent That Writes Its Own Rules from Its Mistakes

https://www.roryteehan.com/writing/i-built-an-ai-agent-that-writes-its-own-rules
1•freediver•7m ago•0 comments

Nasal spray protects mice from respiratory viruses, bacteria and allergens

https://medicalxpress.com/news/2026-02-universal-vaccine-nasal-spray-mice.html
3•PaulHoule•8m ago•0 comments

Toit

https://docs.toit.io/language/
1•tosh•9m ago•0 comments

OopsDB – A TCP proxy to stop AI agents from dropping your DB

https://github.com/pintayo/oopsdb
1•pintayo•9m ago•1 comments

Neon is a human-readable structured data format

https://doc.nette.org/en/neon/format
2•ifh-hn•9m ago•0 comments

New HyperCard discovery: Neuromancer / Count Zero / Mona Lisa Overdrive

https://macintoshgarden.org/apps/neuromancer-count-zero-mona-lisa-overdrive
2•naves•10m ago•0 comments

Tell HN: It's official, I'm done with Claude

2•ra0x3•10m ago•0 comments

Harrison Chase: How Coding Agents Are Reshaping Engineering, Product and Design

https://twitter.com/hwchase17/status/2031051115169808685
1•JnBrymn•11m ago•0 comments

Regxa – query NPM, PyPI, crates.io, RubyGems, Packagist from one TypeScript call

https://github.com/oritwoen/regxa
1•oritwoen•12m ago•1 comments

How Pokémon Go is giving delivery robots an inch-perfect view of the world

https://www.technologyreview.com/2026/03/10/1134099/how-pokemon-go-is-helping-robots-deliver-pizz...
1•rbanffy•13m ago•0 comments

AI's hidden bias: Chatbots can influence opinions without trying

https://news.yale.edu/2026/03/03/ais-hidden-bias-chatbots-can-influence-opinions-without-trying
1•geox•13m ago•0 comments

Ghostty 1.3

https://twitter.com/mitchellh/status/2031042095822340417
1•tosh•13m ago•0 comments

Google to Discontinue Widevine Cloud License Service in April 2027

https://castlabs.com/blog/widevine-retiring-cloud-license-service/
4•dabinat•15m ago•0 comments

Summry – I replaced my mess of Make.com automations with this

1•tetianad•16m ago•0 comments

Codex Unresponsive

https://status.openai.com/incidents/01KK9JA8JKQKDW1W24T09NHBYH
1•rvz•16m ago•0 comments

Announcing Fedora Linux 44 Beta

https://fedoramagazine.org/announcing-fedora-linux-44-beta/
1•voxadam•17m ago•0 comments

You Hired the AI to Write the Tests. Of Course They Pass

https://www.claudecodecamp.com/p/i-m-building-agents-that-run-while-i-sleep
6•aray07•18m ago•2 comments

A small experiment in context aware storytelling on the web

2•vibecoder21•21m ago•0 comments

Iran: "The internet belongs to those who convey the voice of the nation."

https://twitter.com/shahinlooo/status/2031362334174703657
1•bayat•21m ago•0 comments

Will AI CapEx Pay for Itself?

https://chenyu-li.info/blog/
1•chenyusu•22m ago•0 comments

Show HN: Sandsofti.me – Visualize the time you have left with loved ones

https://sandsofti.me
1•kwm•25m ago•0 comments

Straitsweeper

https://straitsweeper.com/
1•davedx•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•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!