frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

In the Atacama Desert, astronomers live and work in a James Bond villain lair

https://www.bbc.com/future/article/20260609-inside-the-bond-set-where-astronomers-live
1•hurrell•1m ago•0 comments

Claude Code: sessions can now message each other

https://twitter.com/ClaudeDevs/status/2085817074816070014
1•tosh•2m ago•0 comments

Linux Foundation Launches the Tokenomics Foundation

https://www.linuxfoundation.org/press/linux-foundation-launches-the-tokenomics-foundation-to-defi...
1•Alien1Being•3m ago•0 comments

C-ECS: c99 header-only ECS for games

https://briansunter.com/projects/c-ecs
1•_simian•6m ago•0 comments

The SaaS Extinction Test

https://frontierai.substack.com/p/the-saas-extinction-test-f6e
1•inferhaven•9m ago•0 comments

Amazon behind private gas plant for new data centers

https://finance.yahoo.com/energy/articles/amazon-behind-massive-private-gas-210211828.html
1•e12e•10m ago•0 comments

Show HN: RAMGuard Pro – Real Windows Memory Optimizer in Rust and Tauri

https://github.com/jojin1709/ramguard-pro
1•jojin1709•12m ago•0 comments

Meta CTO says employees should use AI productivity gains to do more work

https://www.businessinsider.com/meta-cto-andrew-bosworth-ai-gains-work-2026-8
1•petetnt•12m ago•1 comments

Italian Bank Stores 400K Wheels of Cheese as Collateral for Farmer Loans

https://travelandtannins.com/an-italian-bank-keeps-400000-wheels-of-cheese-in-a-guarded-vault-and...
1•ms7892•16m ago•0 comments

Stack Overflow new questions are down 98.5% since ChatGPT (+ 5 other platforms)

https://www.harperflow.io/dead-internet
2•Heshamus•17m ago•0 comments

A Markdown curriculum for engineers moving into AI engineering

https://github.com/bimal1023/AI-native-engineer
2•bkumal•20m ago•1 comments

NFT collection where 100% of proceeds fund youth programs (501c3 nonprofit)

https://opensea.io/collection/voices-of-tomorrow
1•dykb•21m ago•0 comments

The Funny Oracle Org Chart That Isn't So Funny

https://palisadecompliance.com/resource/oracle-org-chart/
1•Alien1Being•25m ago•0 comments

A Lebanese Technology Transfer

https://nntaleb.substack.com/p/a-lebanese-technology-transfer
1•simonebrunozzi•26m ago•0 comments

Show HN: Scrut – A Python static code reviewer that focuses on changed Git files

https://github.com/mukundzha/scrut
2•mukundzzha•28m ago•0 comments

AI bots started a religion – humans followed

https://www.theverge.com/ai-artificial-intelligence/975017/ai-spiralism-chatbot-movement
2•bryanrasmussen•30m ago•0 comments

Google is in clear violation of the GPLv2

https://twitter.com/GrapheneOS/status/2085888745421558195
2•Cider9986•30m ago•2 comments

Blockstor: A LINSTOR-compatible storage system for Kubernetes

https://cozystack.io/blog/2026/08/blockstor-linstor-compatible-storage-for-kubernetes/
1•valyala•34m ago•0 comments

Celld: Self-hosted, distributed durable objects

https://flaviocopes.com/celld/
1•markgavalda•34m ago•0 comments

Bus driver kicked explosive drone out of the air at German airport

https://www.ctvnews.ca/world/article/bus-driver-kicked-explosive-drone-out-of-air-at-german-airpo...
1•vrganj•35m ago•0 comments

DEF Con 34

https://defcon.org/html/defcon-34/dc-34-index.html
1•Alien1Being•43m ago•0 comments

Grok Imagine Image 2.0

https://x.ai/news/grok-imagine-image-2
1•deadalus•44m ago•0 comments

Recent science fiction, fantasy and horror – review roundup

https://www.theguardian.com/books/2026/aug/07/the-best-recent-science-fiction-fantasy-and-horror-...
1•sorokod•50m ago•0 comments

DIY SLorq Speaker

https://ccrma.stanford.edu/~njb/research/slorkSpeaker/speakerSupplyList.htm
2•sans_souse•53m ago•0 comments

The Life of Public Safety Communications Signals: A Comparative Security

https://arxiv.org/abs/2608.05247
1•sbulaev•54m ago•0 comments

Using a deterministic classifier for disaster relief

https://verantyx.ai/
1•pakupaku•56m ago•1 comments

Pg_stat_ch: PostgreSQL Query Telemetry Exporter to ClickHouse

https://github.com/ClickHouse/pg_stat_ch
1•saisrirampur•58m ago•0 comments

Intel just matched Apple Silicon [video]

https://www.youtube.com/watch?v=A2B7oI0FYqo
3•thelastgallon•58m ago•1 comments

Show HN: I audited 743 URLs across 8 free browser tools

https://github.com/Gavin1901/free-browser-tools-index/blob/master/daily/2026-08-08-8site-pore-lev...
1•gavinbuilds•59m ago•0 comments

Lemire: RAM on a per unit basis is about as expensive as it was in 2007

https://xcancel.com/antibot/captcha
2•arto•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!