frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI to pause some work on AI model Astra due to security concerns

https://www.theguardian.com/technology/2026/aug/08/openai-astra-security-concerns
1•tzmlab•1m ago•0 comments

QVAC – Decentralized, Local AI in a Single API

https://qvac.tether.io/
1•conferza•2m ago•0 comments

Apple's war on OpenAI is about who owns the Attachment Economy

https://www.machinesociety.ai/p/apples-war-on-openai-is-really-about
1•mikelgan•2m ago•1 comments

Show HN: Dive into Amiga.games

https://classicreload.com/platform/amiga%20os
1•kilian-ai•3m ago•0 comments

Show HN: HolyCode Cloud – persistent Linux workstations for AI

https://holycode.cloud
1•CoderLuii•7m ago•0 comments

KubeTective: Deterministic Incident Investigation for Kubernetes

https://github.com/GlediLami/kubetective
1•Gledis•8m ago•0 comments

ACM Europe Summer School on MLIR 2026: Streamed Live, August 10-14

https://mlir-school.github.io/summer-2026/program/
1•matt_d•10m ago•0 comments

We have a chance to fix the Jones Act

https://www.abundanceandgrowth.org/p/we-have-a-chance-to-fix-the-jones
1•JumpCrisscross•10m ago•0 comments

The Costs of Environmental Land Use Regulation

https://mtabarrok.com/publications/environmental-land-use
1•JumpCrisscross•11m ago•0 comments

Show HN: Zero-bloat, client-side utility suite with zero telemetry

https://summit-side-utilities.pages.dev/
1•james_utils•11m ago•1 comments

Whisked: The Food Corridor's Shared Kitchen Summit [video]

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

The Architecture of Open Source Applications

https://aosabook.org/en/
2•amperleft•12m ago•0 comments

Picking berries is my meditation

https://www.tsoon.com/posts/picking-berries-meditation/
1•mooreds•13m ago•0 comments

The German Mittelstand

https://kieranvelasquez.substack.com/p/on-the-german-mittelstand
1•mooreds•14m ago•0 comments

OWASP-amass – In-depth attack surface mapping and asset discovery

https://github.com/owasp-amass/amass
1•gurjeet•16m ago•0 comments

Benchmarking LLMs on File System Design and Implementation

https://arxiv.org/abs/2608.00280
2•matt_d•18m ago•0 comments

Subdomain Center – Largest Subdomain Database

https://www.subdomain.center/
1•gurjeet•18m ago•0 comments

Thomas Wolf thread on the AISI incident

https://twitter.com/Thom_Wolf/status/2085084718320464230
1•cyanbane•23m ago•0 comments

Show HN: agent-hop – reverse-engineered session formats to resume in any agent

https://github.com/hetpatel-11/agent-hop
1•HetPatel106•27m ago•0 comments

Differential heuristics: learning about a way to optimize the A* heuristic

https://www.redblobgames.com/blog/2026-08-08-differential-heuristics/
1•matt_d•28m ago•0 comments

MCP Server Budgeting Tool

https://www.designshippers.com/work/context-budget.html
1•krm01•28m ago•0 comments

AI and War Is Being Oversold

https://phillipspobrien.substack.com/p/ai-and-war-is-being-oversold-right
3•JumpCrisscross•29m ago•0 comments

New: Create AI marketing games in your brand style

https://refybe.com/en
1•refybe•31m ago•0 comments

Console.log recursively processes format specifiers introduced by %s

https://issues.chromium.org/issues/543972096?pli=1
1•dfranke•32m ago•1 comments

A beginner's guide to improving your digital security

https://hashman.ca/security-101/
2•luu•35m ago•0 comments

Probabilistic Estimation for Localizing a Radioactive Source in an Urban Setting

https://repository.lib.ncsu.edu/items/451b001d-e63a-4968-866d-3fb3a599b1e7
1•toomuchtodo•36m ago•1 comments

LLM-oriented programming – statistically revealed components

1•hyperpallium2•36m ago•0 comments

Sketching with Math and Quasi Physics (2022)

https://kyndinfo.notion.site/Sketching-with-Math-and-Quasi-Physics-837e231967134bb5a8307bb9f41c8ea1
1•sargstuff•37m ago•0 comments

macOS vulnerability: authenticate Screen Sharing without valid credentials

https://twitter.com/calif_io/status/2086022794840793454
2•haxiomic•38m ago•0 comments

Show HN: parakeet-tdt-0.6b-v2 in the browser via WebGPU

https://parakeet.narcotic.sh/
1•hamza_q_•39m 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!