frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why make digitized forms of human skill at all?

1•samdhar•55s ago•0 comments

GPT‑Live‑1 in the API

https://openai.com/index/introducing-gpt-live-1-in-the-api/
1•arittr•5m ago•0 comments

AVH Was Sued

https://avherald.com/h?article=53c8958a
1•_caw•7m ago•1 comments

Haiku Now Supports Changing Audio Outputs Live, Other Improvements

https://www.phoronix.com/news/Haiku-OS-August-2026
2•fork-bomber•11m ago•0 comments

Senator Hawley opens investigation into OpenAI HuggingFace hack

https://www.hawley.senate.gov/chairman-hawley-launches-investigation-into-openai-for-hacking-exis...
1•reasonableklout•11m ago•0 comments

Show HN: VeriCordon – CI evidence for agent/tool authorization decisions

https://github.com/dgenio/agentfence
1•dgenio•13m ago•0 comments

Californians owes $500B they never agreed to pay

https://sfstandard.com/opinion/2026/09/10/owe-500-billion-never-agreed-pay/
1•littlexsparkee•13m ago•0 comments

A kernel run on the Navier-Stokes blowup Lean project

https://github.com/ravanova/blowup-search/blob/main/writeup/7_confirmation/BLOG_CONFIRMATION.md
3•ravanova•19m ago•0 comments

We Replaced MMAP with Io_uring in Our Rust Query Engine. It Got Slower

https://www.conviva.ai/resource/we-replaced-mmap-with-io_uring-in-our-rust-query-engine-it-got-sl...
4•rzk•23m ago•0 comments

Racing to solve maths problems now 'pointless'

https://www.abc.net.au/news/2026-09-11/racing-to-solve-maths-problems-pointless-tristan-buckmaste...
4•elahieh•26m ago•0 comments

Astra marks the Claude 3.7 moment for knowledge work

https://fundaai.substack.com/p/deepllm-gpt-6-astra-opens-new-markets
4•deepmem•30m ago•0 comments

Show HN: Interactive history of Earth and human civilization

https://earth.ethanplus.ai/
2•freakynit•34m ago•0 comments

Apple Watch can grab snippets of conversation without both speakers' consent

https://www.theregister.com/security/2026/09/10/watch-out-apple-timepiece-can-grab-snippets-of-co...
2•signa11•36m ago•0 comments

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
5•signa11•39m ago•0 comments

Ask HN: What Can We Do?

4•silexia•39m ago•1 comments

Fugu Max and Fugu Ultra v2: Orchestrating the Pareto Frontier

https://sakana.ai/fugu-max-release/
5•hardmaru•39m ago•0 comments

Show HN: Swiftime - time tracking you can talk to, with an API for AI agents

https://swiftime.ai/
1•tomazaria•45m ago•0 comments

The Branch and the Wish – On mathematics, machines and what the proof never held

https://nisheethvishnoi.substack.com/p/the-branch-and-the-wish
1•vismit2000•50m ago•0 comments

A jank percentage doesn't say where the frame went

https://github.com/timkrest/FrameHUD/blob/main/docs/article-frame-phases.md
1•timkrest•50m ago•0 comments

The Telescope NASA Launched Sunday Was Built to Look at You

https://galratner.substack.com/p/the-telescope-nasa-launched-sunday
2•blartpaul•53m ago•0 comments

The Gemini app is now available for Windows

https://blog.google/innovation-and-ai/products/gemini-app/gemini-app-now-on-windows/
7•quysala12•58m ago•3 comments

Thinking with Looped Flows

https://arxiv.org/abs/2609.11801
1•E-Reverance•59m ago•0 comments

Metamorphosis: Transformations in the Early Modern Flap Book (19th Century)

https://publicdomainreview.org/collection/metamorphosis-early-modern-flap-book/
1•benbreen•1h ago•0 comments

One company that steals accuses another company that steals [pdf]

https://www-cdn.anthropic.com/e50be2e51e7695dc4b1366a37a245a597377d3b5/Anthropic-Detecting-and-co...
2•iamsyr•1h ago•2 comments

Show HN: Hekla, an event sourcing runtime with its own language

https://hekla.tqwewe.com/
1•tqwewe•1h ago•0 comments

DeepSeek Harness

https://www.deepseek.com/harness/en/
4•dotmanish•1h ago•0 comments

It Breaks a Village: Bevy's 6th Birthday

https://blog.fallible.net/it-breaks-a-village/
2•RohanAdwankar•1h ago•1 comments

GPT Image 2.5 for Consulting Presentations: Faster Slides and Smarter Control

https://medium.com/@2315610426/gpt-image-2-5-f36976cf7632
2•chenxi030826•1h ago•0 comments

The Bayeux Tapestry: Woven by the Victors

https://www.historytoday.com/archive/out-margins/bayeux-tapestry-woven-victors
2•prismatic•1h ago•0 comments

How to Make a PwC-Style PowerPoint with AI (2): 5 More Consulting Frameworks

https://medium.com/@2315610426/how-to-make-a-pwc-style-powerpoint-with-ai-2-5-more-consulting-fra...
1•chenxi030826•1h 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!