frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Rejected by YC

https://rejectedbyyc-ten.vercel.app/
1•leonagano•1m ago•0 comments

Weber State Censors, Then Cancels, Censorship Conference

https://www.insidehighered.com/news/faculty/academic-freedom/2025/10/08/weber-state-censors-then-...
1•JumpCrisscross•1m ago•0 comments

Model-Harness-Fit

https://twitter.com/nicbstme/status/2051131906327212298
1•gmays•1m ago•0 comments

Top Cybersecurity Marketers and CMOS to Follow in 2026

https://gracker.ai/cybersecurity-marketing-library/best-cybersecurity-marketers-2025
1•mooreds•2m ago•0 comments

Cartoon Network Flash Games

https://www.webdesignmuseum.org/flash-game-exhibitions/cartoon-network-flash-games
1•willmeyers•2m ago•0 comments

Sunburn inspired a new way to store energy

https://www.bbc.com/news/articles/c62l9gnx775o
1•Brajeshwar•3m ago•0 comments

Mother's Day Gifts Made from Better Materials

https://littlegreensteps.substack.com/p/mothers-day-gifts-made-from-better
1•grapevine12•3m ago•0 comments

Codex can now use Chrome directly on macOS and Windows

https://www.youtube.com/watch?v=b6Mxcv1pyBU
2•doppp•3m ago•0 comments

Banks are funding climate chaos. You don't have to

https://www.not-ship.com/banks-are-funding-climate-chaos-you-dont-have-to-2/
3•ndr42•4m ago•0 comments

Hope: A post-transformer architecture for general intelligence at low compute

https://blankline.org/research/hope
1•DarenWatson•5m ago•0 comments

Capsules: Compile-time lock discipline in OxCaml

https://kcsrk.info/ocaml/oxcaml/modes/blogging/2026/05/08/capsules-in-oxcaml/
1•matt_d•7m ago•0 comments

let-go: Almost Clojure written in Go

https://github.com/nooga/let-go
1•tosh•7m ago•0 comments

Helix 02 Bedroom Tidy [video]

https://www.youtube.com/watch?v=8xEuFQz4E4A
2•selimonder•7m ago•0 comments

Show HN: Rubberduck – Software design agent where you make the decisions

https://userubberduck.com/
1•acolytic•7m ago•0 comments

The Tomahawk Turbine Engine Could Dramatically Chop Fuel Use and Emissions

https://www.motortrend.com/news/tomahawk-tx-trick-cycle-turbine-engine-less-fuel-emissions
1•ckozlowski•8m ago•0 comments

Debian: Linux Vulnerability Mitigation (Dirty Frag)

https://blog.daniel-baumann.ch/posts/20260508-1.html
1•speckx•10m ago•0 comments

Can LLMs model real-world systems in TLA+?

https://www.sigops.org/2026/can-llms-model-real-world-systems-in-tla/
2•mad•10m ago•0 comments

Bernstein: Deterministic orchestrator for 40 CLI AI agents

https://github.com/sipyourdrink-ltd/bernstein
2•nateb2022•11m ago•0 comments

k on PDP-11

https://ktye.github.io/pdp11/index.html
1•tosh•11m ago•0 comments

Support Xdg_projects_dir in Gnome

https://gitlab.gnome.org/GNOME/glib/-/merge_requests/5141
2•petepete•13m ago•0 comments

Support is wild in an age of AI

https://successfulsoftware.net/2026/05/08/support-is-wild-in-an-age-of-ai/
1•hermitcrab•14m ago•0 comments

Handwritten SDKs Are Dead

https://workos.com/blog/handwritten-sdks-are-dead
1•grinich•15m ago•0 comments

Show HN: GETadb.com – every GET request creates a DB

https://www.getadb.com/
1•nezaj•15m ago•1 comments

Code has always been worthless

https://roganov.me/blog/code-always-worthless/
1•IFC_LLC•15m ago•0 comments

Building a Harper Desktop App

https://elijahpotter.dev/articles/building-a-harper-desktop-app
1•chilipepperhott•17m ago•0 comments

Show HN: Notion-to-site – sync any Notion database to local Markdown/MDX/JSON

https://github.com/rashidazarang/notion-to-site
1•rashidae•20m ago•0 comments

I didn't think I could get addicted to weed. I was wrong – and I'm not alone

https://www.theguardian.com/wellness/2026/may/08/cannabis-addiction-recovery
4•n1b0m•21m ago•0 comments

Gmail on Android lost access to O365 mailboxes

https://issuetracker.google.com/issues/461996029
1•sega_sai•22m ago•1 comments

Behind the Scenes Hardening Firefox with Claude Mythos Preview

https://simonwillison.net/2026/May/7/firefox-claude-mythos/
1•Brajeshwar•24m ago•0 comments

Show HN: Vpg – Pglite for Native Code

https://github.com/Ladybug-Memory/vpg
1•adsharma•24m 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!