frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Former OpenAI board member says Elon Musk offered her sperm donations

https://www.bbc.co.uk/news/articles/c33243j44p8o
1•xvxvx•4m ago•1 comments

Anthropic shuts down Fable, Mythos models following Trump admin directive

https://arstechnica.com/ai/2026/06/anthropic-shuts-down-fable-mythos-models-following-trump-admin...
1•jay_kyburz•7m ago•0 comments

Git 2.55-Rc0 Prepares for Rust to Be Enabled by Default

https://lore.kernel.org/git/xmqqik7pqeiq.fsf@gitster.g/
1•tjek•7m ago•0 comments

Pokémon Go players unwittingly contributed to tech with military drone uses

https://arstechnica.com/ai/2026/06/pokemon-go-players-unwittingly-contributed-to-tech-with-milita...
1•justaj•8m ago•0 comments

Meta's New AI Unit Is a Total Mess

https://www.wired.com/story/mark-zuckerberg-meta-employee-meeting-interrupt-ai/
1•reasonableklout•9m ago•0 comments

Solar-thermal desalination process operates at near 100% efficiency

https://physicsworld.com/a/solar-thermal-desalination-process-operates-at-near-100-efficiency/
1•zeristor•11m ago•0 comments

The Hacker Webring

https://ring.acab.dev/
1•thes1lv3r•16m ago•0 comments

Beeper – All your chats in one app

https://www.beeper.com/
1•thunderbong•19m ago•0 comments

Contrail Compute AIX the First RISC-V AI Execution Platform

https://www.epicsemi.com/products/contrail/contrail-compute/
1•EvgeniyZh•20m ago•0 comments

Factoring "short-sleeve" zero-heavy RSA keys with polynomials

https://blog.trailofbits.com/2026/06/12/factoring-short-sleeve-rsa-keys-with-polynomials/
2•fanf2•24m ago•0 comments

What if we legally required politicians to work regular jobs 2 months a year?

1•ekoeko•34m ago•1 comments

Validates AI

https://validates.ai/
2•bellannns•34m ago•0 comments

I got shadow banned on X, 3 mistakes that led me to it

https://www.indiehackers.com/post/i-got-shadow-banned-on-x-3-mistakes-that-led-me-to-it-MIYYUCRyR...
1•kartik0001•36m ago•0 comments

A major KPMG report on AI was found to be chock-full of AI hallucinations

https://www.techradar.com/pro/a-major-kpmg-report-on-ai-was-found-to-be-chock-full-of-ai-hallucin...
3•thm•37m ago•0 comments

US Government directive to suspend access to Claude Fable 5 and Mythos 5

https://twitter.com/AnthropicAI/status/2065597531644743999
1•corentin88•38m ago•0 comments

WhatCable 1.0 – USB-C cable inspector for macOS, now with a TUI

https://www.whatcable.uk/
2•sleepingNomad•38m ago•0 comments

I used sound waves to make espresso. It could cut coffee‑brewing energy use by ¾

https://theconversation.com/i-used-sound-waves-to-make-espresso-it-could-cut-coffee-brewing-energ...
1•zeristor•45m ago•0 comments

Patterns of Software [pdf]

https://www.dreamsongs.com/Files/PatternsOfSoftware.pdf
2•tosh•47m ago•0 comments

The Simple Plan and Phase 3 of the real human network

https://world.org/blog/foundational-topics/thesimpleplan
1•helloplanets•49m ago•0 comments

Whissle Gateway – Run Multi-Modal Voice AI Locally in a 500MB Docker

https://whissle.ai/gateway
2•ksingla025•50m ago•0 comments

Ukraine MoD and Palantir build drone detection using war data

https://defensemirror.com/news/41613/Ukrainian_MoD__Palantir_Tech_Developing_Drone_Detection_Mode...
1•01-_-•51m ago•0 comments

Ask HN: What's the biggest problem you ever prevented?

2•bschne•52m ago•0 comments

Controversial FISA spying law expires tonight. The spying will continue

https://arstechnica.com/tech-policy/2026/06/controversial-fisa-spying-law-expires-tonight-the-spy...
1•01-_-•55m ago•0 comments

Lojban

https://en.wikipedia.org/wiki/Lojban
2•tosh•57m ago•0 comments

The quantum computing revolution is closer than you think

https://www.ft.com/content/7e461be0-5c13-4a93-a0f8-0659ae5505a2
1•thm•1h ago•0 comments

focus - A simple and fast text editor

https://github.com/focus-editor/focus
1•modinfo•1h ago•0 comments

WASM_of_OCaml on WASI: A Working Prototype Looking for a Production User

https://ocaml.org/backstage/2026-06-09-wasm-of-ocaml-on-wasi-a-working-prototype-looking-for-a-pr...
1•TheWiggles•1h ago•0 comments

Ask HN: Automoderated by AI Alternative to Reddit

1•julienreszka•1h ago•0 comments

Teach Your Kids to Pirate. Now [video]

https://www.youtube.com/watch?v=CBFlWUnjkRc
1•Cider9986•1h ago•0 comments

Show HN: theta_py, bindings to the Theta CLI

https://github.com/tamarillo-ai/theta_py
1•ivanbelenky•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!