frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An Ascendant Constitutional Theory Is a Threat to American Science

https://www.theatlantic.com/ideas/2026/06/unitary-executive-scientific-research/687565/
1•thunderbong•2m ago•0 comments

Hugging Face, ModelScope, or CSGHub: How Should a Team Choose?

https://github.com/OpenCSGs/csghub
1•YangXYfc•2m ago•0 comments

LM Link – This is the future I want

1•smalltorch•16m ago•0 comments

Consciousness and Orch OR

https://hameroff.arizona.edu/research-overview/orch-or
2•andsoitis•18m ago•0 comments

Badc – optimizing cross-platform C compiler built with Claude

https://github.com/kromych/badc
1•kromych•19m ago•2 comments

Show HN: Browse the web your way

https://browse-your-way.vercel.app
2•MaxLeiter•21m ago•0 comments

Puppeteer Stealth: Complete Guide to Avoiding Detection

https://scrapfly.io/blog/posts/puppeteer-stealth-complete-guide
1•ankitg12•23m ago•0 comments

Show HN: Eye-brain-hand – a quick neuro coordination and memory test

https://ubershmekel.github.io/eye-brain-hand/
1•ubershmekel•26m ago•0 comments

Absolute State of Unreal 2026

https://www.joewintergreen.com/absolute-state-of-unreal-2026/
1•anonymousab•28m ago•0 comments

ShipFast: Production-ready deploy templates for devs who hate DevOps

https://dpaste.com/94VY3XYU9
1•shipfastdev•28m ago•1 comments

Danish privacy activist Lars Andersen raided by police

https://twitter.com/LarsAnders1620/status/2068208864747540516#m
31•I_am_tiberius•34m ago•8 comments

Ask HN: Favorite Sorting Algorithm?

1•akashwadhwani35•39m ago•1 comments

Ask HN: Do you have an unusual income source

4•xupybd•41m ago•0 comments

Japan to raise visa fees for foreign nationals

https://www.japantimes.co.jp/news/2026/06/20/japan/japan-raise-visa-fees/
4•geox•44m ago•0 comments

Cini, an app to rank movies and shows

1•jtsilver123•49m ago•1 comments

Sharing a Good One

1•SharingAGoodOne•51m ago•0 comments

Show HN: 2Flights – Track your flights; delays and stats (iOS/Android)

https://2flights.io
1•umuslitdinov•54m ago•0 comments

Stop Fearing Incidental Findings

https://ostro.ws/post-healthcare
1•robbieo•55m ago•1 comments

About the writing process (or lack thereof)

https://www.thefoxfirepub.com/blog/blog-post-title-four-lr658-tcthp-wf5mw-mx4m8-tgp6b
1•FantasticPulp•1h ago•0 comments

Chinas War on Female Delusion

https://mamathemagazine.com/chinas-war-on-female-delusion/
18•trojanalert•1h ago•0 comments

Samsung Electronics brings ChatGPT and Codex to employees

https://openai.com/index/samsung-electronics-chatgpt-codex-deployment/
1•doppp•1h ago•0 comments

How do you process asynchronous tasks today?

https://meerkatagents.com/
2•kannanreghu•1h ago•1 comments

SC law legalizes pinball for youth, ending decades-old prohibition

https://scdailygazette.com/2026/06/17/sc-law-legalizes-pinball-for-youth-ending-decades-old-prohi...
3•eric_h•1h ago•0 comments

Magpie-search – a federated search engine for LLM's/agents

https://github.com/xfloukiex-lab/magpie-search
1•Floukie•1h ago•0 comments

Niaid funded Wuhan Institute of Virology coronavirus gain-of-function research

https://www.dni.gov/index.php/newsroom/press-releases/press-releases-2026/4166-pr-11-26
8•stinkbeetle•1h ago•3 comments

China targets U.S. firms in retaliation for Pentagon blacklist

https://www.cnbc.com/2026/06/22/china-trade-curbs-us-companies-export-controls-procurement-exclus...
2•ilreb•1h ago•0 comments

Timesharing on the MIT Weather Radar PDP-8/IX

https://retrocomputingforum.com/t/timesharing-on-the-mit-weather-radar-pdp-8-ix/5569
1•signa11•1h ago•0 comments

ILX Launcher – a developer cockpit for Python apps (hot reload, crash capture)

https://github.com/ilxstudio/ILX-Launcher
1•ilxstudio•1h ago•1 comments

Hundred Hour Workweek

https://jeremynixon.net/100-hr-workweek
1•jeremynixon•1h ago•1 comments

Lloyd's Lab: Accelerating innovation in the insurance industry (2023) [pdf]

https://assets.lloyds.com/media/dc22cd29-1c4e-441c-a872-e1bf5ce9142a/Lloyds%20Lab_impact%20report...
1•mooreds•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!