frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Influence of Anxiety: Harold Bloom and Literary Inheritance

https://thepointmag.com/examined-life/the-influence-of-anxiety/
1•apollinaire•17s ago•0 comments

Show HN: Mcpfs – Mount MCP servers as FUSE filesystems

https://github.com/airshelf/mcpfs
1•evoleinik•2m ago•0 comments

What Is Code Review For?

https://blog.glyph.im/2026/03/what-is-code-review-for.html
1•ingve•3m ago•0 comments

Israel Is Blowing Up Iran's Police State to Clear the Way for a Revolt

https://www.wsj.com/world/middle-east/israel-is-blowing-up-irans-police-state-to-clear-the-way-fo...
1•breppp•4m ago•0 comments

Show HN: Cloudwright – validate, cost, and export cloud architectures from text

https://github.com/xmpuspus/cloudwright
1•xmpuspus•5m ago•0 comments

Show HN: Spotlytt

https://spotlytt.com
1•pbs29•5m ago•1 comments

Quiet War: The Polity, The Terminator, and AI takeover

https://yadin.com/notes/quiet/
1•dryadin•7m ago•0 comments

Show HN: Armalo – The Infrastructure for Agent Networks

1•ArmaloAI•9m ago•0 comments

Parakaryon – the sole species in the genus Parakaryon

https://en.wikipedia.org/wiki/Parakaryon
1•gurjeet•10m ago•0 comments

Tell HN: I exported my data from ChatGPT

1•luxpir•12m ago•0 comments

Polymarket and Kalshi's Iran War Wagers Are Ghoulish – and Troubling

https://www.bloomberg.com/opinion/articles/2026-03-04/prediction-markets-polymarket-kalshi-iran-w...
1•petethomas•12m ago•0 comments

Franz Kafka's Lost Treatise on Wayland

https://spader.zone/kafka/
1•dboon•13m ago•0 comments

A Temporal Dark Patterns Audit of McDonald's Self-Ordering Kiosk Flow

https://arxiv.org/abs/2603.03218
1•50kIters•13m ago•0 comments

Show HN: Yare.io – 1v1 JavaScript coding game

https://yare.io
2•levmiseri•16m ago•0 comments

Blackbird: The homemade drone that hit nearly 700km/h

https://newatlas.com/drones/biggs-blackbird-411mph/
1•asdefghyk•17m ago•1 comments

Design-First Collaboration

https://martinfowler.com/articles/reduce-friction-ai/design-first-collaboration.html
1•donutshop•19m ago•0 comments

Show HN: Yet another colour palette generator, but it's a cool one

https://fungiboletus.github.io/MicroColourGPT3000/
1•speedgoose•21m ago•1 comments

Claude Code Or: How I Learned to Stop Worrying and Love the Agent

https://brian.jp/blog/claude-code-or-how-i-learned-to-stop-worrying-and-love-the-agent-34/
1•lofties•22m ago•1 comments

US troops were told war on Iran was 'all part of God's divine plan'

https://www.theguardian.com/world/2026/mar/03/us-israel-iran-war-christian-rhetoric
2•KnuthIsGod•23m ago•0 comments

US launches military operations in Ecuador

https://www.politico.com/news/2026/03/03/us-military-operations-ecuador-00811272
3•c420•23m ago•1 comments

A record number of objects went into space in 2025

https://ourworldindata.org/data-insights/a-record-number-of-objects-went-into-space-in-2023
1•m-hodges•24m ago•0 comments

npmx: a fast, modern browser for the npm registry

https://npmx.dev/blog/alpha-release
1•OuterVale•28m ago•0 comments

Feature led building vs. user led building

https://salah.louizy.com/blog/feature-led-building-vs-user-led-building/
1•losalah•30m ago•0 comments

I used the new Linux Terminal on Android and I'm impressed

https://www.makeuseof.com/used-new-linux-terminal-on-android-impressed/
1•thunderbong•30m ago•0 comments

Show HN: Deploy OpenClaw in Seconds

https://deplyclaw.ai/
1•Creator-io•32m ago•0 comments

Oval – Native macOS client for Open WebUI with on-device voice mode

https://github.com/shreyaspapi/Oval
1•shreyaspapi•38m ago•1 comments

Redesigning Mathematics for Elegant Physics

https://twitter.com/devrimyasar/status/2029006461267857637
1•aesopsfable•40m ago•0 comments

How Mossad hacked traffic cameras to track Ayatollah Khamenei

https://www.google.com/search?q=How+Mossad+hacked+traffic+cameras+to+track+Ayatollah+Khamenei
9•asdefghyk•43m ago•1 comments

Show HN: Hacking Sony A6000 for Fun

https://docodethatmatters.com/hacking-sony-a6000-for-modernization/
1•skittleson•43m ago•0 comments

How Anonymous Bettors Cashed in on the Iran Strike, Hours Before It Happened

https://www.nytimes.com/2026/03/03/upshot/prediction-markets-iran-strikes.html
3•jbegley•44m 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!