frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Who is quitting? (July 2026)

1•ethanwillis•1m ago•0 comments

BitTorrent's disastrous, legendary, and controversial story

https://www.theverge.com/tech/959848/bittorrent-story-25-years-piracy
1•Logans_Run•4m ago•0 comments

Show HN: Kube-insight – retained Kubernetes evidence for incident investigations

https://github.com/nowakeai/kube-insight
1•simalapo•4m ago•0 comments

Fedora Council Seeks to Shutdown Current Discussions over AI Developer Desktop

https://www.phoronix.com/news/Fedora-Council-AI-Desktop
1•rbanffy•5m ago•0 comments

LittleFedi: Light, yet Complete

https://rpi0w.stefanomarinelli.it/@stefano/687a61e9-dae7-4ed2-8c2e-94dfe0bd550c
1•doener•8m ago•0 comments

The security of modern password expiration (2010)

https://dl.acm.org/doi/10.1145/1866307.1866328
1•Tomte•9m ago•0 comments

Video game play linked to small boost in memory and cognitive abilities

https://www.sciencedirect.com/science/article/pii/S000169182600911X
1•giuliomagnifico•10m ago•0 comments

An AI that finds B2B leads while you work

https://www.relay-brief.com
1•mathias8dev•10m ago•0 comments

Great Songs Are Still Being Made: This Is the Killer Speaking

https://medium.com/the-hitmagist/great-songs-are-still-being-made-this-is-the-killer-speaking-ce3...
1•bryanrasmussen•10m ago•0 comments

Show HN: Hide an encrypted message inside a photo, in the browser

https://vajba.com/hide-message-in-image/
1•trivsamt•12m ago•0 comments

Show HN: Wikicube: instant wiki for any GitHub repo

https://wikicube.vercel.app/wiki/emmett-framework/granian
1•cpnwaugha•13m ago•0 comments

Wine 11.12 Released with Wayland Fractional Scaling, Other Wayland Enhancements

https://www.phoronix.com/news/Wine-11.12-Released
2•rbanffy•14m ago•0 comments

Rosenhan Experiment

https://en.wikipedia.org/wiki/Rosenhan_experiment
1•thunderbong•14m ago•0 comments

Bowlers Have Snapped over Wall Street's Takeover of the Sport

https://www.wsj.com/lifestyle/bowling-lucky-strike-lanes-private-equity-lawsuit-6763761f
1•impish9208•17m ago•1 comments

Quake Turns 30: John Romero Plays [video]

https://www.youtube.com/watch?v=y3Wekr-wnic
2•skibz•18m ago•0 comments

Many people misunderstand the purpose of code review

https://mathstodon.xyz/@mjd/115096720350507897
4•ColinWright•18m ago•0 comments

US PC shipments fell 7.0% in 1Q26, forecasted to fall 14% in 2026

https://omdia.tech.informa.com/pr/2026/june/us-pc-shipments-fell-7percent-in-1q26-marking-steepes...
1•giuliomagnifico•19m ago•0 comments

What Emily Bender Meant by "Stochastic Parrots"

https://spectrum.ieee.org/stochastic-parrot
1•rbanffy•20m ago•0 comments

Show HN: I measured the half-life of 41,301 Show HN launches. It's 7 hours

https://jonno.nz/posts/your-show-hn-dies-in-7-hours/
4•jonnonz•21m ago•0 comments

Why OOP Is Inherently Harmful: A Solution

https://notes.shixiangxi.com/en/docs/dual-world-theory/theory/
3•sxx0•22m ago•1 comments

The Perfect Match by Ken Liu (2012)

https://www.lightspeedmagazine.com/fiction/the-perfect-match/
1•laybak•24m ago•1 comments

To be trustworthy, LLMs need to show their work

https://cen.acs.org/pharmaceuticals/drug-discovery/AI-Chemist-trustworthy-LLMs-need/104/web/2026/06
2•ColinWright•24m ago•0 comments

PromptQL Tag – The company-wide AI agent for Slack

https://promptql.io/promptql-tag-slack-agent
1•gavinray•25m ago•0 comments

Deepest hand dug well in the world

https://www.mybrightonandhove.org.uk/places/utilities/woodingdean-well/woodingdean-well
1•zeristor•26m ago•1 comments

Liberty and Absurdity in 2026

2•dranimalz•26m ago•0 comments

Show HN: Domternal – headless rich-text editor for Angular/React/Vue/Vanilla

https://domternal.dev/
1•thomasnowhere•28m ago•0 comments

Vite+ Beta

https://voidzero.dev/posts/announcing-vite-plus-beta
4•Erenay09•29m ago•0 comments

Anthropic embedded spyware in Claude Code – and attempted to hide it from you

https://old.reddit.com/r/ClaudeAI/comments/1ujila1/anthropic_embedded_spyware_in_claude_code_and/
2•rvnx•30m ago•0 comments

Discovering My Talk

https://shkspr.mobi/blog/2026/01/discovering-my-talk/
2•ColinWright•30m ago•0 comments

Krafton Agrees to Pay 'Subnautica 2' Bonuses as Developer's CEO Resigns

https://www.bloomberg.com/news/articles/2026-07-01/krafton-agrees-to-pay-subnautica-2-bonuses-as-...
1•croes•31m 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•1y ago

Comments

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