frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Brightdeck – an OOXML-compatible AI presentation maker

https://brightdeck.ai/
1•mfn-throw•1m ago•1 comments

Cross-System Constraint Collisions: The Governance Gap in Enterprise Agentic AI [pdf]

https://himalaian.com/publications/CrAIg_WhitePaper_Public_v1.0.pdf
1•michaelmallon•1m ago•0 comments

Hacker Scripts

https://github.com/NARKOZ/hacker-scripts
1•skogstokig•1m ago•0 comments

The Wayland Protocol

https://wayland-book.com/protocol-design/design-patterns.html
1•tosh•2m ago•0 comments

Arch Linux AUR affected-package list after malicious commits were deleted

https://md.archlinux.org/s/SxbqukK6IA
1•tjek•4m ago•0 comments

SpaceX IPO made Musk a trillionaire. The old rules of capitalism no longer apply

https://www.theguardian.com/commentisfree/2026/jun/12/spacex-ipo-elon-musk-trillionaire
1•jmngomes•6m ago•0 comments

GameBoy Emulation in JavaScript (2010)

https://imrannazar.com/series/gameboy-emulation-in-javascript
1•tosh•11m ago•0 comments

As a woman thinks by Corra Harris (1926)

https://gutenberg.org/cache/epub/78847/pg78847-images.html
1•petethomas•11m ago•0 comments

Warning from our state to yours about process used to fast track the data center [video]

https://www.youtube.com/shorts/ntQOb2H__M8
3•Bender•17m ago•1 comments

The Bombardment of Ellwood During World War II

https://en.wikipedia.org/wiki/Bombardment_of_Ellwood
1•MilnerRoute•17m ago•0 comments

Show HN: Kaupang – deploy one config to Docker Compose, Swarm, or Kubernetes

1•witnz•17m ago•0 comments

Stanford Scientists Regrow Lost Cartilage and Reverse Arthritis

https://www.sciencedaily.com/releases/2026/06/260612021604.htm
3•karakoram•20m ago•0 comments

Gas Prices Wipe Out More Than a Year of Wage Gains

https://www.wsj.com/economy/inflation-wages-american-workers-cbe3f187
4•karakoram•26m ago•1 comments

Ask HN: What is the AI adoption approach at your org?

1•iExploder•27m ago•1 comments

The Strategic Oil Reserves Are Running Out Fast

https://www.economist.com/finance-and-economics/2026/06/11/the-worlds-strategic-oil-reserves-are-...
3•karakoram•28m ago•1 comments

The FBI built its own replica small town to simulate real-world cyberattacks

https://techcrunch.com/2026/06/13/the-fbi-built-its-own-replica-small-town-to-simulate-real-world...
2•Brajeshwar•28m ago•0 comments

Python 3.14 garbage collection rigamarole

https://theconsensus.dev/p/2026/06/06/python-3-14-garbage-collection-rigamarole.html
2•azhenley•33m ago•0 comments

List of Planetary Nebulae

https://en.wikipedia.org/wiki/List_of_planetary_nebulae
1•chasil•33m ago•0 comments

A Visualization of Unfathomable Wealth

https://fzakaria.github.io/trillion-wut/
2•setheron•33m ago•1 comments

Any Thoughts?

https://anankesmirror.blogspot.com/2026/06/highly-enriched-polonium-white-paper.html
1•boredthoughts•34m ago•0 comments

Rental Rush – an open-source board game about running rentals

https://playrentalrush.com
1•cankoseoglu•37m ago•0 comments

Show HN: Velo, a fast, non-linear video editor

https://github.com/notune/velo
2•leumon•40m ago•0 comments

Show HN: Reality Kernel – A causal containment sandbox for autonomous AI agents

https://www.realitykernel.dev/
1•Tabrez416•41m ago•0 comments

Did anyone went to YC directly from Sri Lanka?

2•geethikaisuru•43m ago•0 comments

PhantomBench: Benchmarking the Non-Existential Threat of Language Models

https://arxiv.org/abs/2606.11105
1•root-parent•44m ago•1 comments

The VPN Arms Race, We Figure Out a Counter [video][23 Mins]

https://www.youtube.com/watch?v=YcpPBfbR1uU
1•Bender•44m ago•0 comments

AI Benchmarks Are Starting to Look Like Emissions Tests

https://signal-memo.com/memo-defeat-devices-for-benchmarks/
2•alex-ivan•44m ago•0 comments

Double Ratchet Algorithm

https://en.wikipedia.org/wiki/Double_Ratchet_Algorithm
1•gjvc•45m ago•0 comments

Show HN: WatchUm – Crime data for any Austin apartment or street address

https://watchum.io/
1•BreRoz•45m ago•0 comments

Show HN: OmnySSH – TUI SSH manager with dashboard, SFTP and snippets (Rust)

https://github.com/timhartmann7/omnyssh
2•hartmann7•46m 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!