frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Memories of 9/11

https://4s.bearblog.dev/memories-of-911/
1•saikatsg•3m ago•0 comments

Tech Billionaires and Science Fiction

https://www.theatlantic.com/books/2026/08/silicon-valley-science-fiction-jill-lepore-book-review/...
1•keiferski•5m ago•0 comments

Show HN: Jira Project Health Auditor (MCP Server)

https://github.com/Avtandil-abu/jira-ai-auditor
1•Avtandil45•5m ago•0 comments

Open source needs to be preserved, not protected

https://usebottles.com/blog/2026-09-11-release-2021.7.28.md
1•ckardaris•6m ago•0 comments

What 350 different theories of consciousness reveal about reality (2025)

https://www.newscientist.com/article/2498968-what-350-different-theories-of-consciousness-reveal-...
3•rendx•7m ago•0 comments

Creatine improves muscle mass and cognitive function even without exercise

https://www.psypost.org/creatine-improves-muscle-mass-and-cognitive-function-in-older-adults-even...
5•geox•10m ago•0 comments

Autoresearch for Optimizing Elliptic-Curve Point Addition in Shor's Algorithm

https://arxiv.org/abs/2609.09582
1•simonpure•15m ago•0 comments

From Lisp at JPL to Building AdWords at Google

https://corecursive.com/inside-early-google/
1•oumua_don17•17m ago•0 comments

Show HN: Caffenol, a darkroom simulation photo editing toy

https://caffenol.app/
1•vintagevibe•18m ago•0 comments

The Intelligence Asymptote

https://joshhawthorne.substack.com/p/the-intelligence-asymptote
1•JoHawth31•20m ago•1 comments

Show HN: Hacker News, but only AI news

https://allslop.news/
3•gavino•22m ago•1 comments

Hot coffee could cause oesophageal cancer

https://www.economist.com/science-and-technology/2026/09/11/hot-coffee-could-cause-oesophageal-ca...
15•vinni2•28m ago•9 comments

Light from your phone or the crack under your door could be damaging your health

https://www.fastcompany.com/91605352/this-common-sleep-sleeping-habit-changes-shape-of-your-heart...
3•prmph•30m ago•0 comments

Solve@Home: An open version of OpenAI's 10k-agent approach to hard math

https://solveathome.org/projects/twin-primes/board
2•Bry789123•31m ago•0 comments

9/11 in Berkeley

https://scottaaronson.blog/?p=10071
3•chmaynard•31m ago•0 comments

Project Callisto: Null results from a nine-year cold fusion research program

https://callisto.report/
3•clivefx•31m ago•1 comments

The unexpected effectiveness of the Picard maneuver

https://arxiv.org/abs/2608.23624
2•Tomte•33m ago•0 comments

Space Warfighting Environment 2040 [pdf]

https://www.spacecom.mil/Portals/57/%5bFINAL%5d%20USSC%20Space%20Warfighting%20Environment%202040...
2•tolerance•33m ago•0 comments

Orca – The Agent Development Environment

https://www.onorca.dev
1•tyleo•35m ago•0 comments

OxDock – Dockerfile-inspired build DSL for Rust

https://docs.rs/oxdock/latest/oxdock/
1•zombiej5•37m ago•1 comments

Tell HN: Strava Is Down

2•charliebwrites•39m ago•0 comments

Culture Becomes a Dark Forest

https://www.theintrinsicperspective.com/p/culture-becomes-a-dark-forest
2•reasonableklout•39m ago•0 comments

Unpacking the Navier–Stokes blowup: the math, the machines, & the mathematicians

https://blog.kolen.dev/math/Navier-Stokes
1•KolenCh•39m ago•0 comments

Show HN: I built a hand-modeled 3D Windows 98 portfolio with Three.js

https://wesselsdesktop.com/
2•Abstract2D•41m ago•1 comments

Show HN: SystemFaarDenge – a puzzle game and simulation for system designing

https://systemfaardenge.com/
1•aayushamann•42m ago•0 comments

Seven years of bitwise: Hacker News front page, and the long road into Debian

https://nativeguru.wordpress.com/2026/09/11/seven-years-of-bitwise-a-weekend-project-a-hackernews...
1•stdcall83•43m ago•0 comments

Rethinking Space Opera

https://www.antipope.org/charlie/blog-static/2026/09/rethinking-space-opera.html
2•pavel_lishin•44m ago•0 comments

GrapheneOS' rewritten Messages app is released

https://github.com/GrapheneOS/Messaging/releases/tag/13
3•microtonal•44m ago•0 comments

They Stole Our Code, Now They Want Our Brains (March 2026)

https://www.jernesto.com/articles/on_ai_tools
7•doomishbro•44m ago•3 comments

Git-native task management for local coding agents without MCP

https://gitoza.com/
1•gitoza•44m 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!