frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NOVC: Venture Capital Free

https://novc.fyi/
1•xyzzy_plugh•4m ago•0 comments

.NET on AWS Open Source Software Fund

https://github.com/aws/dotnet-foss
1•kristianp•4m ago•0 comments

2036

https://www.codevoid.net/ruminations/2026/08/09/2036.html
1•grork•5m ago•0 comments

The Ambition Project

https://www.betonit.ai/p/the-ambition-project
2•herbertl•8m ago•0 comments

Modern JavaScript Tricks for Cleaner Everyday Code

https://jsdevspace.substack.com/p/20-modern-javascript-tricks-for-cleaner
1•javatuts•10m ago•0 comments

A browser that generates every website from scratch

https://www.xda-developers.com/tried-browser-generates-every-website-from-scratch/
1•TMWNN•11m ago•1 comments

NASA chooses a once-abandoned Spanish village to broadcast the 2026 eclipse

https://www.euronews.com/next/2026/08/07/why-nasa-chooses-this-small-burgos-village-to-broadcast-...
1•jmox•12m ago•0 comments

QuiltOps – Continuous packaging for your patches

https://quiltops.dev/
1•calvinmorrison•13m ago•0 comments

I made FilmShelves, a movie collection management tool

https://filmshelves.com
1•smatthewaf•15m ago•0 comments

vLLM Serving Experiments on H100s – config beats the baseline on p95 TTFT,ITL

https://efficientagent.substack.com/p/a-better-knob-beats-more-silicon
1•bnayak25•16m ago•0 comments

Show HN: A Planet and Geology Simulation Sandbox Game in Godot

https://stevecastle.github.io/gaia-site/
1•tracerbulletx•17m ago•0 comments

Meme factories: Indonesians trade political outrage clicks for Facebook cash

https://www.theguardian.com/media/2026/aug/10/indonesia-clicks-for-cash-facebook-one-nation-us-po...
1•Barbing•21m ago•1 comments

Anything Could Become a Battleground

https://lareviewofbooks.org/article/perfect-moment-god-sex-art-culture-wars-butler/
1•lermontov•22m ago•0 comments

How Beauty Is Making Scientists Rethink Evolution

https://www.nytimes.com/2019/01/09/magazine/beauty-evolution-animal.html
1•geneticdrifts•22m ago•0 comments

Yahtzee – Ballpark Figures

https://ballparkfigures.substack.com/p/yahtzee
1•cptroot•23m ago•1 comments

Claude.md, except it's meaningful and it works

https://blog.greg.technology/2026/07/29/claude-md-except-its-meaningful-and-it-actually-works.html
1•gregsadetsky•23m ago•1 comments

Over 20k precolonial earthworks in the Southwest Amazonia

https://www.nature.com/articles/s41586-026-10835-7
1•walterbell•27m ago•0 comments

A Brief History of the U.S. Trying to Add Backdoors into Encrypted Data (2016)

https://www.atlasobscura.com/articles/a-brief-history-of-the-nsa-attempting-to-insert-backdoors-i...
2•downbad_•28m ago•0 comments

What if we let AI govern us?

https://inevolin.substack.com/p/what-if-we-let-ai-govern-us
2•iljanevo•29m ago•2 comments

Would anyone use a GummySearch alternative that searched ALL forums?

1•TylerKane•29m ago•0 comments

Streambed ships compaction using SQLite for CAS

http://streambed.dev/blog/introducing-compaction/
1•vira28•32m ago•0 comments

Show HN: Open-source local memory vault

https://github.com/Rafaelpta/litepipe
1•rafaepta•33m ago•0 comments

Life on the Uncanny Precipice

https://nsaphra.net/post/uncanny/
1•thoughtpeddler•34m ago•0 comments

The mathematical beauty of hyperbezier curves

https://linebender.org/blog/hyperbezier/
1•raphlinus•35m ago•0 comments

Nixpkgs-multiverse: every version that ever existed

https://fzakaria.com/2026/08/09/nixpkgs-multiverse-every-version-that-ever-existed
1•domenkozar•37m ago•1 comments

Show HN: Albedo – single-file listenable document database in Zig

https://github.com/klirix/albedo
2•askhatsaiapov•40m ago•0 comments

Popular WPForms Lite put a backdoor in their plugin

https://twitter.com/SybreWaaijer/status/2086528919394480389
2•hackerbeat•41m ago•0 comments

The Airtable acquisition and what hypergrowth teaches you

https://stories.thef1rstpancake.com/airtable-acquisition-and-what-hypergrowth-teaches-you/
1•rsanek•41m ago•0 comments

Cord – Interactive live sales quotations to replace static PDFs

https://cordhq.app/
1•andrevalleee•44m ago•0 comments

Mastgate – a Fediverse relay filter with neat dashboard

https://github.com/ahmed-debbech/mastgate
2•helloahmed1•49m 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!