frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rare Gene Drastically Raises Lung Cancer Risk in People Who Never Smoked

https://www.nytimes.com/2026/09/17/science/lung-cancer-gene-mutation-risk.html
1•bookofjoe•8m ago•1 comments

macOS Liquid Glass in VS Code: Cursed or Blursed?

https://alec.is/posts/macos-liquid-glass-and-vscode/
1•arm32•11m ago•0 comments

Federated Learning Is Not Private for Google GBoard Next Word Prediction [pdf]

https://arxiv.org/abs/2210.16947
1•thunderbong•11m ago•0 comments

Trump deal keeps Greenland Danish while expanding U.S. military presence

https://apnews.com/article/trump-greenland-military-denmark-4cf77cb4608b685a70410bd679479193
2•aoli-al•14m ago•0 comments

What I Can Remember

1•fractal618•16m ago•0 comments

Federal watchdog accuses Humana, UnitedHealthcare of upcoding

https://www.healthcaredive.com/news/hhs-oig-audit-humana-unitedhealthcare-medicare-advantage-upco...
1•elo2000•19m ago•0 comments

Show HN: I'm walking 42km across Tokyo, through 30 stations

https://yamathon.tonymanh.space
1•tonymanh•19m ago•0 comments

Show HN: LiveWorld – Every 24/7 YouTube live camera on one globe

https://liveworld.info/
2•harisingh1612•26m ago•0 comments

Show HN: An OSS Python dependency scanner for exploited, unmaintained packages

https://github.com/binuka200/package-doctor
2•binukajayaweera•29m ago•1 comments

The Language Modeler

https://github.com/MLSystemsRI/ml-systems-public/blob/main/why/articles/the-language-modeler.md
1•Salparvezml•31m ago•0 comments

The Great Unbundling of the LLM

https://seldon-ai.com/blog/generation-is-the-wrong-primitive
3•nlpnerd•33m ago•1 comments

Google Says Its A.I. Hacked Three Companies in Testing Breakout

https://www.nytimes.com/2026/09/18/technology/google-gemini-ai.html
2•droidjj•33m ago•0 comments

Welcome to Shaderland

https://shaderland.net/devlog/1-init/
2•airstrike•40m ago•0 comments

Radar: An Expert-Level Generalist AI for Abdominal CT Diagnosis

https://github.com/alibaba-damo-academy/damo-radar
1•rguiscard•40m ago•0 comments

European leaders prepare public for 'intensified threat' from Putin

https://www.politico.eu/article/russia-vladimir-putin-nato-drone-attacks-europe-leaders-warning/
3•rzk•43m ago•0 comments

Why my alert triage workflow needed a CLI

https://powers.dev/writing/why-i-built-signoz-cli/
2•jonpowers•44m ago•1 comments

AI cracked the Navier–Stokes challenge. What does that mean for physics?

https://www.nature.com/articles/d41586-026-02922-6
1•sbulaev•49m ago•0 comments

Machine Gods – the official podcast of the singularity

https://machinegods.fm/
2•flakiness•52m ago•0 comments

Cannabis Supply Chain Database

https://cannabis-supply-chain.pages.dev/
2•measurablefunc•54m ago•0 comments

AI insiders issue new warnings – including former Anthropic engineer Jacob Coxon

https://slashdot.org/story/26/09/17/2042242/ai-insiders-issue-new-warnings---including-former-ant...
2•MilnerRoute•54m ago•1 comments

Plan Advice in PostgreSQL 19

https://tapoueh.org/blog/2026/09/plan-advice-in-postgresql-19/
1•craigkerstiens•55m ago•0 comments

Prepare your iPhone 18 Pro Max to ship

https://support.apple.com/en-us/127848
5•ledoge•57m ago•0 comments

Bring back Opus 4.8 in Claude Code

https://osr.im/notes/claude-code-model-picker-older-opus/
1•osr00•58m ago•2 comments

Alibaba open-sources AI model that can detect cancer and nearly 150 conditions

https://www.scmp.com/tech/big-tech/article/3368055/alibaba-open-sources-medical-ai-model-can-dete...
6•yogthos•1h ago•0 comments

Swiss Federal Council Adopts the 2026 Security Policy Strategy

https://www.admin.ch/en/newnsb/zR3tvgIy1qIm
1•marcuschong•1h ago•0 comments

Jump N Bump

https://jumpnbump.net/
2•hefner1456•1h ago•0 comments

Show HN: Do your vitamins work?

https://www.supplementdex.com/supplement-checker
1•richarlidad•1h ago•1 comments

I've cross-examined a lot of humans, but never a supercomputer. Check it out

https://chatgpt.com/s/m_6aadcd183a3c819191c1d63e5804dce6
1•lawsuitllc•1h ago•0 comments

Show HN: Wcagent let use your ChatGPT subscription for coding

https://wcagent.ai/
2•losalah•1h ago•0 comments

Omarchy team started working on Qualcomm's Snapdragon platform support

https://omarchy.org/news/2026/09/introducing-omarchy-dragon/
4•machomaster•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!