frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Music of the Spheres: SMBC 5 part comic co-authored with Terry Tao

http://smbc-comics.com/comic/spheres-part-1
1•yeellow•2m ago•0 comments

Show HN: Go language extension with HTML templates

https://github.com/doors-dev/gox
1•derstruct•3m ago•0 comments

Show HN: The Stack, a Clay sculpture that writes poems through Wi-Fi [video]

https://vimeo.com/1181880000
1•G_S•4m ago•0 comments

Gender Medicine Set Itself Up for Disaster

https://www.compactmag.com/article/how-gender-medicine-set-itself-up-for-disaster/
1•isolli•4m ago•0 comments

Show HN: Polter – Agent Driven UI (react library)

https://mydatavalue.github.io/polter/
2•lemonade311•6m ago•0 comments

The Building Block Economy – Mitchell Hashimoto

https://mitchellh.com/writing/building-block-economy
1•futurecat•7m ago•0 comments

Untaxed hidden wealth surpasses wealth of the poorest half of humanity

https://www.oxfam.org/en/press-releases/untaxed-wealth-hidden-offshore-richest-01-surpasses-entir...
2•robtherobber•8m ago•0 comments

We're Getting the Wrong Message from Mythos

https://danielmiessler.com/blog/wrong-message-from-mythos
1•tobr•20m ago•0 comments

Mesurer: Measure and Align Everything on Localhost

https://mesurer.ibelick.com
1•handfuloflight•20m ago•0 comments

Supply chain attack on CPU-Z and HWMonitor

https://twitter.com/vxunderground/status/2042483067655262461
1•aprilnya•22m ago•1 comments

US plans to automatically register young men for military draft

https://www.bbc.com/news/articles/cd6lx2lpl9xo
3•georgecmu•26m ago•1 comments

Show HN: Open-Source MCP Servers – Twitter, Bluesky, LinkedIn, Google Ads, HN

https://github.com/isteamhq/mcp-servers
4•spotlayn•29m ago•0 comments

Elastic Tabstops (2006)

https://nick-gravgaard.com/elastic-tabstops/
1•dhruv3006•29m ago•0 comments

Show HN: Emduke32 – duke nukem 3D native in your web browser

https://originalsouth.github.io/emduke32/
1•originalsouth•32m ago•0 comments

Show HN: Hindsight Simulator – Go back in time and get rich

https://chrispattle.com/hindsight-simulator
4•pattle•33m ago•0 comments

Startup Focido joins the Limb accelerator

https://focido.com/
1•vladimir_fc•34m ago•0 comments

Running Terraform against Azure locally, without a subscription

https://topaz.thecloudtheory.com/blog/terraform-local-azure-no-subscription/
2•kamilmrzyglod•35m ago•0 comments

Show HN: Nvim plugin to jump to concrete interface implementation for Python

https://github.com/sigfriedCub1990/nvim.py_gti
1•sigfriedcub1990•36m ago•0 comments

TOON: Token-Oriented Object Notation

https://toonformat.dev/
2•pramodbiligiri•36m ago•0 comments

Kintify AI tool to analyze cloud issues and suggest fixes

1•kintify•37m ago•0 comments

Show HN: Mantyx – Agents that solve real problems for you and your business

https://mantyx.io/
2•mantyx•43m ago•0 comments

Architecting the Autonomous Enterprise with Agentic Workflows

https://viitorcloud.com/blog/ai-integration-services-for-agentic-workflows/
2•Olivia_Watson•44m ago•0 comments

I shipped a transaction bug, so I built a linter

https://leonh.fr/posts/go-transaction-linter/
1•leonhfr•44m ago•0 comments

Surelock

https://notes.brooklynzelenka.com/Blog/Surelock
1•lukastyrychtr•46m ago•0 comments

LLM Wiki v2 – extends Karpathy's take on LLM wiki

https://gist.github.com/rohitg00/2067ab416f7bbe447c1977edaaa681e2
1•rohitghumare•47m ago•0 comments

For AI, energy is the final frontier

https://m4ttl4w.substack.com/p/energy-the-final-frontier
1•mattyboomboom•48m ago•0 comments

We pay you 2x back if you follow the plan and miss your goal – 30 free codes

https://nano.com/
1•DiegoGilH•49m ago•0 comments

From $11/Month to $0: How I Used AI to Reclaim My Evening

https://www.rockoder.com/blog/website-migration/
2•ZacnyLos•51m ago•0 comments

Show HN: Keeper – embedded secret store for Go (help me break it)

https://github.com/agberohq/keeper
2•babawere•52m ago•0 comments

AI camera scanning cars issue 500k unjustified fines/year in the Nederlands

https://nltimes.nl/2026/04/09/camera-scanning-cars-issue-500000-unjustified-parking-fines-per-yea...
2•giuliomagnifico•53m 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•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!