frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Effective Software Engineering with Claude/Codex

https://medium.com/@sharvanath/effective-software-engineering-with-claude-codex-fa8c1aeaf329
1•sharva•6m ago•0 comments

Polymarket customers lose $3M in supply-chain attack

https://www.bleepingcomputer.com/news/security/polymarket-customers-lose-3-million-in-supply-chai...
1•01-_-•7m ago•0 comments

Show HN: FOMO – See what your community pays attention to

https://usefomo.co
1•JadAmmar•7m ago•0 comments

Intel's next-gen 52-core Nova Lake CPU could pull up to 474W

https://www.tomshardware.com/pc-components/cpus/intels-next-gen-52-core-nova-lake-cpu-could-pull-...
1•01-_-•8m ago•0 comments

Memory-Hierarchy Understanding Tools

https://github.com/ob/cache
1•signa11•10m ago•0 comments

Collecting and Analysing Yandex Maps blurs

https://www.nrk.no/order-138_-russia_s-growing-defense-industry-hides-behind-yandex_s-blurs-1.179...
1•hgulldahl•13m ago•1 comments

Hermes MoA virtual models:8% higher than Opus 4.8, 11% higher than GPT 5.5

https://twitter.com/NousResearch/status/2070610321278988385
3•aurenvale•17m ago•0 comments

Get Numb Before You Get Good

https://commoncog.com/get-numb-get-good/
1•jimsojim•19m ago•0 comments

You can now run Max AI models on Apple Silicon

https://forum.modular.com/t/max-models-can-now-run-on-apple-silicon-gpus/3283
1•melodyogonna•21m ago•0 comments

Pie – PHP Installer for Extensions

https://github.com/php/pie
1•hronak•22m ago•1 comments

Wikipedia Cofounder Larry Sanger Banned from Site for 'Canvassing'

https://www.404media.co/wikipedia-cofounder-larry-sanger-banned-from-site-for-canvassaing/
1•latexr•24m ago•0 comments

2026.06.19: EuroQCI Feedback

https://blog.cr.yp.to/20260619-euroqci.html
1•commandersaki•24m ago•0 comments

Prism: An Impure Functional Language with Typed Effects

https://www.stephendiehl.com/posts/prism/
3•leontrolski•28m ago•0 comments

Show HN: Beaches of Greece, natural-language search for Greek beaches

https://beachesofgreece.com
1•tomerlir•29m ago•0 comments

RAM crisis provokes enthusiast to try Windows 11 on DDR1-era hardware

https://www.tomshardware.com/software/windows/ram-crisis-provokes-enthusiast-to-try-windows-11-on...
1•bushwart•34m ago•0 comments

What data access pattern is as slow as possible?

https://blog.weineng.me/posts/slowest_add
2•fanf2•35m ago•0 comments

Vertical Slices in Practice

https://event-driven.io/en/vertical_slices_in_practice/
1•theanonymousone•38m ago•0 comments

Unfathomable bugs #10: The Broken Windows Build

https://algassert.com/post/2603
1•giovannibajo1•39m ago•0 comments

Text Files as a User Interface

https://ratfactor.com/cards/text-files-as-ui
1•mpweiher•40m ago•0 comments

When will the decimals in A/B repeat?

https://www.johndcook.com/blog/2026/06/27/decimal-period/
1•ibobev•42m ago•0 comments

Omarchy is the best thing I've stopped thinking about. 1 year review blog

https://codebynight.dev/posts/one-year-omarchy-learning-os-not-just-linux-setup/
2•shivc•42m ago•1 comments

Height of Harmonic Numbers

https://www.johndcook.com/blog/2026/06/27/height-of-harmonic-numbers/
1•ibobev•42m ago•0 comments

The Internet Doesn't Need More Content, It Needs More You

https://arunrocks.com/the-internet-needs-more-you/
1•arocks•42m ago•0 comments

Spritework on the ZX Spectrum: Preparing Our Graphics

https://bumbershootsoft.wordpress.com/2026/06/27/spritework-on-the-zx-spectrum-preparing-our-grap...
2•ibobev•43m ago•0 comments

Life lessons and hot takes from my 30s

https://shreyasprakash.com/life-lessons-30s/
2•mondo_daemon•46m ago•0 comments

Ask HN: Hiii

1•hari_vardhan•48m ago•0 comments

Google rejects claims of AI in Search hurting web traffic

https://indianexpress.com/article/technology/artificial-intelligence/google-denies-ai-search-hurt...
1•vednig•49m ago•0 comments

Ask HN: Sdfs

1•hari_vardhan•52m ago•0 comments

Ask HN: Are there any developers prefer writing code manually?

2•trowa159•56m ago•1 comments

Roundup of July 2026 Bootstrapper Events

https://bootstrappersbreakfast.com/2026/06/23/roundup-of-july-2026-bootstrapper-events/
1•skmurphy•57m ago•1 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!