frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rust 1.98.0

https://blog.rust-lang.org/2026/08/20/Rust-1.98.0/
1•HieronymusBosch•2m ago•0 comments

Safety Issues and an Accident Delayed Linde's Green Hydrogen Plant for Years

https://industrydecarbonization.com/news/safety-issues-and-an-accident-delayed-lindes-green-hydro...
1•hannob•3m ago•0 comments

The smell of rain: how Aussie scientists invented a new word in 1964

https://www.csiro.au/en/news/All/Articles/2015/March/the-smell-of-rain-how-our-scientists-invente...
1•fanf2•4m ago•0 comments

Pasiv – a signed, honest crypto miner for the machine you own

https://pasiv.network/
1•screan•8m ago•0 comments

Bounded Agents: Delegation Security for Multi-Agent AI Systems

https://arxiv.org/abs/2608.15888
2•xmuruaga•14m ago•0 comments

Google gives publishers a new way to fight AI-driven traffic losses

https://techcrunch.com/2026/08/20/google-gives-publishers-a-new-way-to-fight-ai-driven-traffic-lo...
2•jnord•19m ago•0 comments

We Changed Travel Forever

https://hotels.cooveb.com
1•sshinde•20m ago•1 comments

Scientists tracked kids for 8 years – the screen time result was unexpected

https://www.sciencedaily.com/releases/2026/08/260815064803.htm
1•jnord•20m ago•0 comments

Emacs 31.1 will release on 8/24

https://github.com/emacs-mirror/emacs/blob/062dcd2aead00c3b47c14ff5b6c40313f7a775f5/etc/HISTORY
6•birdculture•26m ago•0 comments

Bulwark Gateway – fail-closed security proxy for LLM agents (self-hosted)

https://github.com/red-orbita/bulwark-gateway
1•rokitoh•28m ago•0 comments

Engaging with AI for serious maths research – Norman Wildberger

https://www.youtube.com/watch?v=Q7d2KMdVp9E
1•nyc111•28m ago•0 comments

The Defense-Tech Bubble Is Headed for Consolidation

https://fox-and-lion.vercel.app/analysis/the-defense-tech-bubble-is-headed-for-consolidation
4•bdjsmsm•32m ago•0 comments

SQLite plans can drastically differ with CTE and temp table

https://askrecall.dev/blog/44-minute-ci-job/
1•vira28•33m ago•0 comments

SQLite for Everything

https://joecode.com/2026-08-19-sqlite3/
1•mpweiher•34m ago•0 comments

Survival Guide for a Censored Internet

https://akitaonrails.com/en/2026/08/19/survival-guide-for-a-censored-internet/
1•g0xA52A2A•37m ago•0 comments

Compilation of Elon Musk promising self driving Tesla 'next year' for 10 years

https://www.reddit.com/r/EnoughMuskSpam/s/ROk3lHIdqQ
3•fsuts•38m ago•1 comments

Inadvertent Context Leakage in Language Models

https://arxiv.org/abs/2608.19857
1•sbulaev•39m ago•0 comments

Voluntary attention regulates acute immune responses in humans

https://www.nature.com/articles/s41562-026-02541-1
1•morsch•42m ago•0 comments

America Inc has a tight grip on allied governments

https://www.economist.com/business/2026/08/16/america-inc-has-a-tight-grip-on-allied-governments
1•edward•43m ago•0 comments

Bitcoin's short squeeze traced to a Treasury bond buyback decision

https://davidebtc186.substack.com/p/bitcoin-just-had-its-biggest-squeeze
1•shadowbip•48m ago•0 comments

Only one type of lawyer will survive the AI wipeout

https://www.afr.com/work-and-careers/workplace/judges-may-be-the-only-survivors-of-law-s-ai-carna...
2•asdefghyk•50m ago•1 comments

Writing with AI Is Stupid

https://lambdaland.org/posts/2026-08-07-ai-writing-stupid/
4•frizlab•54m ago•3 comments

Better Batteries

https://matklad.github.io/2026/08/20/better-batteries.html
1•olexsmir•57m ago•0 comments

MOQ Video Streaming for Robots, Drones, and Embedded Devices

https://www.red5.net/blog/moq-video-streaming-for-robots-drones-and-embedded-devices/
1•mondainx•1h ago•0 comments

Claude Opus 4.6 returned nothing 900/900 times. Should agents retry?

https://zenodo.org/records/21696066
5•aiagenttester•1h ago•1 comments

Why to Start a Startup in a Bad Economy (2008)

https://paulgraham.com/badeconomy.html
1•tosh•1h ago•0 comments

Stop Clutching Your FPV Drones

https://foxandlion.pub/analysis/stop-clutching-your-fpv-drones
4•ewfeber•1h ago•0 comments

El Niño set to be 'strongest in living memory', says Met Office

https://www.bbc.co.uk/weather/articles/c3ekg93vjz9o
2•iamben•1h ago•0 comments

ISO 24495-1:2023 Plain language

https://www.iso.org/standard/78907.html
2•Bluestein•1h ago•0 comments

Show HN: Meg – I processed 259M nodes on my laptop using 6.91MB RAM

https://github.com/blueray313164-a11y/Quantum-Drive-Solver
1•blueray313164•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!