frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ledgerly a live budget chart that runs in the browser (free, no signup)

https://6b929b8f01f0260a705fb34bdac44ec3.ctonew.app
1•nharvey•2m ago•0 comments

Manticore Search 29.9.0: Chunked auto-embeddings and MMAP columnar access

https://medium.com/@s_nikolaev/manticore-search-29-9-0-chunked-auto-embeddings-and-mmap-columnar-...
1•snikolaev•4m ago•0 comments

Neurogrid the Community Cloud for LLMs

https://neurogrid.cc
1•cheyodev•5m ago•1 comments

Mourning the Loss of AI Companions

https://www.nature.com/articles/s41562-026-02569-3
1•geox•6m ago•0 comments

Sidero Labs Joins Yardi

https://www.siderolabs.com/blog/sidero-labs-joins-yardi
1•robinhoodexe•6m ago•0 comments

A Blender BPY skill that helps smaller LLMs build better 3D models

https://github.com/capybala18/capybala-bpy-skill
1•capy00129•6m ago•1 comments

He Accused His Brother of Sexual Abuse. Then He Took on His Family

https://www.nytimes.com/2026/09/15/world/asia/thai-singha-beer-family-abuse-accusations.html
1•JumpCrisscross•13m ago•0 comments

Show HN: The web is dead. Keep this app alive

https://longlivethis.site
4•armstrongb•14m ago•3 comments

Agents Have Favorite Tools

https://ianbarber.blog/2026/09/14/agents-have-favorite-tools/
1•matt_d•17m ago•0 comments

Pisa 2025 Results

https://www.oecd.org/en/publications/2026/09/pisa-2025-results-volume-i_5265bfb1/full-report.html
1•mudil•17m ago•1 comments

AI vs. Human Value Drift

https://www.overcomingbias.com/p/ai-vs-human-value-drift
1•paulpauper•18m ago•1 comments

New AI Solves a Millennium Prize

https://thezvi.substack.com/p/brand-new-ai-solves-a-millennium
1•paulpauper•19m ago•0 comments

Supreme Court blocks Trump's plan to restrict mail-in ballots

https://www.bbc.com/news/articles/c5yjpdy4gjlo
4•colinprince•22m ago•1 comments

The Revolut breach just escalated

https://twitter.com/T3chFalcon/status/2099584270058537044
1•soltanov•22m ago•1 comments

Show HN: Analyzed 400 routes and driving a Tesla beats flying 65% of the time

https://flyortesla.com/insights
2•drewlem•29m ago•3 comments

Adapt or Perish: What Mathematicians Must Learn from Software Engineers

https://medium.com/@b1nj0y/the-misalignment-is-within-why-mathematics-must-embrace-the-ai-paradig...
1•b1nj0y•35m ago•0 comments

Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo

https://guides.visual-paradigm.com/mastering-graphviz-layout-engines-dot-neato-twopi-circo/
2•vismit2000•39m ago•0 comments

Linux from Scratch

https://www.linuxfromscratch.org/
2•sippingabonedry•42m ago•0 comments

A Faster Approach to Ethereum Wallet Activity Patterns and Transaction Summaries

https://chainledgerai.io/blog/beyond-bigquery-a-faster-approach-to-ethereum-wallet-activity-patte...
1•oculix-official•44m ago•0 comments

Streamlining Your Strategy: The Power of Automated Real Estate Descriptions

https://propdescai.io/blog/streamlining-your-strategy-the-power-of-automated-real-estate-descript...
1•oculix-official•46m ago•0 comments

Archkeel – coding agents declare architecture changes before they submit

https://github.com/rapiddweller/archkeel
1•ake2l•46m ago•0 comments

The Three Lives of Clausewitz: How Anglo-American Strategists Remade "On War"

https://smallwarsjournal.com/2026/07/21/three-lives-of-clausewitz-on-war/
1•bryanrasmussen•48m ago•1 comments

The Butlerian Secession

https://the-human-alliance.org/
2•tcorcos•48m ago•0 comments

Shuffling Is Not Enough: Breaking Permutation-Based Model Confidentiality

https://arxiv.org/abs/2609.12911
1•sbulaev•50m ago•0 comments

We Automate KiCad PCB Routing

https://autocuro.com/blog/how-we-automate-kicad-pcb-routing
3•teleforce•51m ago•0 comments

KiCad Routing Tools

https://github.com/drandyhaas/KiCadRoutingTools
3•teleforce•51m ago•0 comments

See how well you know the sizes of things

https://playdaily.org/size-it-up
4•Hemmaamlin•53m ago•0 comments

How to Build a Practical Household Bike Generator

https://solar.lowtechmagazine.com/2022/03/how-to-build-a-practical-household-bike-generator/
1•fosco•53m ago•1 comments

Superhuman acquires YC-backed notetaker Fathom

https://techcrunch.com/2026/09/14/superhuman-acquires-yc-backed-notetaker-fathom-as-productivity-...
1•doppp•1h ago•1 comments

Ask HN: How to Protect Your Brand Before AI Copies It?

1•soltanov•1h 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!