frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Anthropic CEOs wife once asked Epstein to fund porn venture – now steers Claude

https://nypost.com/2026/08/14/business/anthropic-ceos-wife-once-asked-jeffrey-epstein-to-fund-por...
2•jitbit•1m ago•0 comments

Ask HN: If you are an agent builder, what memory platform are you using?

1•prats226•2m ago•0 comments

OpenAI puts Pro subscriptions on hold due to Astra demand

https://techcrunch.com/2026/09/10/openai-puts-pro-subscriptions-on-hold-due-to-astra-demand/
2•5555watch•2m ago•0 comments

San Francisco real estate market update [pdf]

https://vanguardpropertiesagenda.com/newsletter/SF_Market_Update_Sep_2026.pdf
1•kaycebasques•2m ago•0 comments

All grown-ups were once children

https://mathstodon.xyz/@tao/117244104044239500
1•joebig•3m ago•0 comments

Copying login keychains between Macs fails on Secure Enclave Macs with Tahoe

https://derflounder.wordpress.com/2026/09/08/manually-copying-login-keychain-files-from-one-mac-t...
1•zdw•5m ago•0 comments

Wisdom (Albatross)

https://en.wikipedia.org/wiki/Wisdom_(albatross)
1•cjcuddy•6m ago•0 comments

The Inference Engineering Skills Map

https://www.skeptrune.com/posts/inference-engineering-skills-map/
1•skeptrune•6m ago•0 comments

More Impossible-to-Ignore Vaccine Effects – Positive Effects

https://www.science.org/content/blog-post/more-impossible-ignore-vaccine-effects
1•mtm_king•7m ago•1 comments

Show HN: Vector transfer project, replicate vectors/metadata across databases

https://github.com/Polign/vector-transfer
1•anuptalwalkar•7m ago•1 comments

Bill Biggart, 9/11 photographer

https://www.billbiggart.com/september-11th
1•stmw•7m ago•1 comments

Beagle – a framework to evaluate and evolve agent harnesses at scale

https://github.com/SalesforceAIResearch/Beagle
1•qainsights•11m ago•1 comments

Top 20 AI Agent Pen-Testing Tools for 2026: The Ultimate Guide

https://medium.com/@Koukyosyumei/top-20-ai-agent-pen-testing-tools-for-2026-the-ultimate-guide-40...
1•syumei•11m ago•0 comments

Macron urges Europe to develop crewed spaceflight program

https://www.lemonde.fr/en/france/article/2026/09/10/macron-urges-europe-to-develop-crewed-spacefl...
1•geox•13m ago•0 comments

Data bottlenecks won't prevent an intelligence explosion

https://newsletter.forethought.org/p/data-bottlenecks-wont-prevent-an
1•gmays•15m ago•0 comments

Anthropic researchers say AI could cause human extinction by 2030

https://www.theguardian.com/technology/2026/sep/09/anthropic-researchers-ai-human-extinction
1•pr0zac•16m ago•0 comments

Puns and allusions to The Beatles in titles of scientific papers

https://www.science.org/content/article/need-help-writing-paper-title-all-you-need-beatles
2•ilya_m•18m ago•0 comments

Death of Paddy Keenan, the 'Jimi Hendrix of the Uilleann Pipes'

https://www.irishexaminer.com/lifestyle/artsandculture/arid-41909041.html
1•linkdd•19m ago•0 comments

Computing a lower bound on matrix rank

https://www.johndcook.com/blog/2026/09/04/stable-rank/
1•ibobev•20m ago•0 comments

Proof of the Rank-Trace Theorem

https://www.johndcook.com/blog/2026/09/05/proof-of-the-rank-trace-theorem/
1•ibobev•20m ago•0 comments

Ngram Error Rate

https://www.johndcook.com/blog/2026/09/07/ngram-error-rate/
2•ibobev•20m ago•0 comments

Microsoft Excel KB5002914 update breaks copy and paste for some users

https://www.bleepingcomputer.com/news/microsoft/microsoft-excel-kb5002914-update-breaks-copy-and-...
2•TMWNN•21m ago•0 comments

How a System Call Works in Linux

https://www.freecodecamp.org/news/how-a-system-call-actually-works-in-linux/
1•theChris-in•22m ago•0 comments

Revisiting Spectral Representations in Generative Diffusion Models

https://arxiv.org/abs/2609.08253
2•E-Reverance•23m ago•0 comments

Potential Nintendo Switch Information Leak Due to Proximity-Based Remote Attack [pdf]

https://www.nintendo.com/security-advisories/assets/pdf/20260910e.pdf
2•tech234a•26m ago•0 comments

The terrible menu bar in the Windows 11 Notepad

https://blog.yuo.be/2026/09/10/the-terrible-menu-bar-in-the-windows-11-notepad/
4•birdculture•28m ago•2 comments

Language Model Tokenizers Introduce Unfairness Between Languages (2023)

https://arxiv.org/abs/2305.15425
2•lluisantoni•29m ago•0 comments

Ask HN: ANSI-Looking Websites

1•ynac•29m ago•0 comments

I used 367B tokens in 30 days

https://cmux.com/blog/367-billion-tokens
1•Areibman•29m ago•0 comments

Panic builds over bankrupt Spirit's looming data sale to Google

https://arstechnica.com/tech-policy/2026/09/panic-builds-over-bankrupt-spirits-looming-data-sale-...
1•sbulaev•32m 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!