frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Small Is Beautiful

https://blog.dshr.org/2026/09/small-is-beautiful.html
1•zdw•47s ago•0 comments

Surfmen of the U.S. Life-Saving Service

https://www.nps.gov/calo/learn/historyculture/surfmen.htm
1•Bluestein•1m ago•0 comments

Meta's $17B Settlement Is a Bad Deal for Teens and All Social Media Users

https://www.eff.org/deeplinks/2026/09/metas-17-billion-settlement-bad-deal-teens-and-all-social-m...
1•panarky•3m ago•0 comments

Modernist Tiles with CSS Grid

https://www.carmenansio.com/articles/modernist-tiles-css-grid/
1•eustoria•4m ago•0 comments

Zitron: Have we reached Peak AI? (2024)

https://www.wheresyoured.at/peakai/
1•Jimmc414•6m ago•1 comments

I've Been Reading

https://antonyfb.com/blog/reading-straw-world.html
1•jruohonen•6m ago•0 comments

JavaScript / ECMAScript Internationalization (I18n)

https://www.jsi18n.com/
1•eustoria•7m ago•0 comments

Making my blog feel like other people are here

https://keith.is/post/playhtml-shared-header/
1•eustoria•8m ago•0 comments

Claude Fable 5.1 results on ARC-AGI

https://arcprize.org/results/anthropic-claude-fable-5-1
3•matt1•9m ago•0 comments

Aurem – ships real commits to your website from plain English, no coder needed

https://auremcto.com/
2•tjsandhu•10m ago•0 comments

A docs page is a long and complex search query to find AI agents

https://blog.val.town/aeo
3•stevekrouse•10m ago•0 comments

Pgwatch v6: dashboards reimagined, and a reaper that doesn't choke

https://www.cybertec-postgresql.com/en/pgwatch-v6-dashboards-reimagined-and-a-reaper-that-doesnt-...
1•blueshoess•11m ago•0 comments

Appletini: The Card for Everything [video]

https://www.youtube.com/watch?v=vyAJKuzkzYg
1•frizlab•12m ago•0 comments

I don't use a Computer [pdf]

https://classes.matthewjbrown.net/teaching-files/philtech/berry-computer.pdf
3•sashank_1509•17m ago•2 comments

UnitedHealthcare to drop prior authorization for range of conditions

https://www.reuters.com/legal/litigation/unitedhealthcare-drop-prior-authorization-requirements-r...
2•elo2000•17m ago•0 comments

Dark matter hunt takes unexpected turn after signal spotted in LZ detector

https://www.imperial.ac.uk/news/articles/natural-sciences/physics/2026/dark-matter-hunt-takes-une...
1•cisc•19m ago•0 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
3•all2•21m ago•0 comments

Panzoe Technologies

https://panzoe.ai/
1•roper1225•25m ago•0 comments

India preparing rollout of agentic payments on UPI

https://www.reuters.com/world/india/india-preparing-rollout-agentic-payments-upi-sources-say-2026...
1•alephnerd•26m ago•0 comments

The Nerd Reich wants to destroy democracy, and its mask has slipped

https://www.abc.net.au/news/2026-09-02/the-nerd-reich-silicon-valley-fascism-war-on-democracy-abc...
16•phs318u•26m ago•3 comments

Meta's Addictive Design

https://www.bitsoffreedom.nl/en/2026/07/22/metas-addictive-design/
2•jruohonen•27m ago•0 comments

Russia helping Iran develop supersonic cruise missiles

https://www.ft.com/content/6cf367bc-95b0-4f1f-b149-a25684adefc3
2•doener•28m ago•1 comments

A PCB business card with a batteryless LED, powered by the phone that taps it

https://www.kevin.md/the-business-card-that-lights-up.md/
1•thekevintang•28m ago•0 comments

It's simple to buy Canadian with O SCANada

https://www.oscanadaapp.ca/
2•cf100clunk•30m ago•1 comments

10 AI Lessons from Driving 200M+ Fully Autonomous Miles

https://waymo.com/blog/2026/08/10ailessons/
2•bookofjoe•30m ago•0 comments

Cryptocurrency Sucks – In excruciating detail [pdf]

https://redacted.moe/f/5b697982.pdf
4•Cyclone_•31m ago•0 comments

California ban on 'addictive' social media for teens heads to Newsom

https://www.politico.com/news/2026/08/31/social-media-addictive-ban-newsom-01058241
2•1vuio0pswjnm7•31m ago•0 comments

Cutting an AI agent's network access mid-run, measured at 127 ms

https://medium.com/data-science-collective/your-coding-agent-has-your-aws-keys-and-an-open-intern...
2•sebuzdugan•33m ago•0 comments

Kleinanzeigen's category tree, reverse-engineered (no official API exists)

https://github.com/Rebaiahmed/anzeigenboost-open
2•rebai94•34m ago•0 comments

Dyson Launches Toothbrush

https://www.dyson.com/oral-care/electric-toothbrush/camerajet/ceramic-ultra-blue
40•noja•35m ago•14 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!