frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Koide Formula

https://en.wikipedia.org/wiki/Koide_formula
1•tcp_handshaker•1m ago•0 comments

In a first, Blue Origin uses a recycled rocket to send a satellite into space

https://www.geekwire.com/2026/blue-origin-uses-a-recycled-rocket-to-launch-satellite-for-ast-spac...
1•SilverElfin•2m ago•1 comments

Making Illegal State Unrepresentable

https://blog.frankel.ch/illegal-state-unrepresentable/
1•Tomte•2m ago•0 comments

We Need a New Product Hunt

https://molodtsov.me/2026/04/we-need-a-new-product-hunt/
1•twapi•3m ago•0 comments

You're Invisible on the Internet. Here's the Why

https://medium.com/@simbamudonzvo/youre-invisible-on-the-internet-here-s-the-why-fbe086d99d62
1•TechOnionKing•3m ago•0 comments

The Best Photos of the Artemis II Mission

https://nautil.us/the-best-photos-of-the-artemis-ii-mission-1279789
1•Bender•4m ago•0 comments

Embedded Rust discovery guide for the official Rust ESP32-C3 board

https://github.com/melastmohican/esp-rust-board-discovery
1•melastmohican•5m ago•0 comments

Passmark: Open-source Playwright library for AI regression testing

https://passmark.dev
3•hliyan•6m ago•1 comments

Sandboxed AI agent orchestration platform

https://github.com/superhq-ai/superhq
2•purusa0x6c•6m ago•0 comments

The Secret Life of Circuits

https://lcamtuf.coredump.cx/electronics/
1•signa11•8m ago•0 comments

Turtle WoW classic server announces shutdown after Blizzard wins injunction

https://www.pcgamer.com/games/world-of-warcraft/turtle-wow-classic-server-announces-shutdown-afte...
3•Brajeshwar•9m ago•0 comments

Claude Brain

https://github.com/memvid/claude-brain
1•DeathArrow•9m ago•0 comments

Per-Screen Virtual Desktops Is Finally on KDE Plasma

https://www.neowin.net/news/after-21-years-of-waiting-kde-plasma-is-finally-adding-this-long-requ...
1•bundie•11m ago•0 comments

Against an Endless Present

https://thedispatch.com/article/short-video-memory-culture-books/
1•XzetaU8•11m ago•0 comments

What Category Is Prune?

https://contemplativegames.com/prune
1•justinneuman•12m ago•0 comments

Have your agent post Markdown/HTML/JSX to internet

https://www.saved.md/
1•anboias•15m ago•0 comments

Show HN: Find jobs and know your fit before you apply

https://karriero.net/
1•alenn_m•16m ago•1 comments

Who Voted You King?

https://chrisabraham.substack.com/p/who-voted-you-king
1•chrisabraham•16m ago•0 comments

Ηuman collective intelligence through space, body and material symbols

https://royalsocietypublishing.org/rstb/article/381/1948/20240448/481362/Scaffolding-minds-human-...
1•XzetaU8•16m ago•0 comments

Moonspans

https://moonpans.com/
1•tcp_handshaker•17m ago•0 comments

The first compliance-native Git platform

https://www.guardgit.com/
1•quietproof•18m ago•0 comments

Show HN: Ratio Royale – A playable simulation of the Dead Internet theory

https://vibeaxis.com/ratio-royale/
1•XQorp•18m ago•0 comments

Tesla owner uses emergency solar to trickle charge after running out of battery

https://electrek.co/2026/04/18/tesla-model-x-solar-charging-atacama-desert-chile-pan-american-hig...
2•Bender•22m ago•0 comments

I've fired one of Americas most powerful lasers heres what a shot day looks like

https://theconversation.com/ive-fired-one-of-americas-most-powerful-lasers-heres-what-a-shot-day-...
2•Bender•24m ago•0 comments

Steal My Password (Technique)

https://mastodon.social/@DazRunner/116431049586713261
2•keiste_sales•26m ago•0 comments

When I Quit My PhD

https://www.lowimpactfruit.com/p/when-i-quit-my-phd
2•mnky9800n•26m ago•0 comments

What we once had (at the height of the XMPP era of the Internet) (2023)

https://www.kirsle.net/what-we-once-had-at-the-height-of-the-xmpp-era-of-the-internet
2•lolpython•28m ago•0 comments

One codebase → every store, registry, CDN, and channel. Ads on every network

https://github.com/profullstack/sh1pt
2•buffer_overlord•29m ago•0 comments

Scoring 500 Show HN pages for AI design slop

https://www.adriankrebs.ch/blog/design-slop/
2•hubraumhugo•30m ago•0 comments

Ask HN: What makes a good Product Manager

3•chairhairair•30m 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•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!