frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Athenz vs. Spire Comparison

https://www.athenz.io/comparison.html#general
1•mooreds•47s ago•0 comments

Nobel-winning chemist leaves US to direct AI materials lab in China

https://www.nature.com/articles/d41586-026-02143-x
1•sbulaev•2m ago•0 comments

Couldn't find a complete Codenames Generator so I make one

https://codenames-generator-bay.vercel.app/
1•tnus•4m ago•1 comments

OpenAI Launches Patch the Planet to Pay Down Open Source's Security Debt

https://zenaicorp.com/en/news/openai-patch-the-planet-open-source-security-trail-of-bits
1•zenai666•6m ago•0 comments

.38

https://www.guidavid.com/writing/38
1•gdss•6m ago•0 comments

I Think I Have LLM Burnout

https://www.alecscollon.com/blog/llm-burnout/
9•sosodev•9m ago•1 comments

Artificial Confidence: They all picked September first

https://artificialconfidence.com/p/artificial-confidence-they-all-picked
1•Corrado•9m ago•1 comments

Network Connectivity Status Indicator Overview for Windows

https://learn.microsoft.com/en-us/windows-server/networking/ncsi/ncsi-overview
1•ankitg12•10m ago•0 comments

Show HN: RepoFleet – manage issues that span multiple Git repositories

https://github.com/mehranzand/repofleet
1•mehranzand•11m ago•0 comments

Show HN: Python SDK for Content Integrity

https://github.com/lyfeninja/lyfeninja_blkseal_python_sdk
1•lyfeninja•14m ago•0 comments

Growth Marketing Jobs – growth, CRO, SEO, and performance marketing roles

https://www.growthmarketingjobs.xyz
1•hafizdhanani•15m ago•1 comments

Show HN: Date Time calulator with unique functions

https://datetimemate.com/
1•jftuga•21m ago•0 comments

CI Forge – A zero-dependency CLI that replaces 20 CI services

https://github.com/Tahiram32/ciforge
1•tahiram•21m ago•0 comments

Dream IDE

https://github.com/dreamide/dream
1•handfuloflight•26m ago•0 comments

Question of the moment: "Should a chatbot manage your bank account?"

https://news.uga.edu/should-a-chatbot-manage-your-bank-account/
1•mikelgan•28m ago•1 comments

Google Site

1•TACO_CODER•30m ago•1 comments

How the Smithsonian Lost America's Plot

https://www.wsj.com/opinion/how-the-smithsonian-lost-americas-plot-622709db
1•petethomas•30m ago•0 comments

NPM v12 Ships with Install Scripts Off by Default, Deprecating 2FA-Bypass Tokens

https://socket.dev/blog/npm-12
1•nreece•30m ago•0 comments

Independent Labs Crack Google's Cryptography Work

https://spectrum.ieee.org/google-quantum-cryptography-zero-knowledge
2•pseudolus•37m ago•0 comments

Meta to build its first $13B data centre in Canada

https://www.ctvnews.ca/business/article/meta-to-build-its-first-13-billion-data-centre-in-canada/
2•dj_rock•42m ago•0 comments

Rewriting Bun in Rust

https://simonwillison.net/2026/Jul/8/rewriting-bun-in-rust/
21•doppp•43m ago•5 comments

Google Discontinues Google Earth Pro for Desktop

https://pxlnv.com/linklog/google-earth-pro-sunset/
3•HotGarbage•44m ago•1 comments

Public LLM benchmarks are mostly garbage

https://grandpacad.com/en/blog/public-benchmarks-misled-me-opus-4-7
1•nateb2022•46m ago•0 comments

Show HN: OpenScreenShot: open-source full-page screenshot and annotation tool

https://openscreenshot.app
1•pghqdev•46m ago•0 comments

GitLab on FreeBSD

https://vermaden.wordpress.com/2026/07/09/gitlab-on-freebsd/
2•vermaden•46m ago•0 comments

Decentralized, encrypted (E2EE), censorship-resistant messenger

https://github.com/harpiabrasil/hydra
1•harpia•50m ago•0 comments

Show HN: I built 38-0, a Premier League draft game with a Poisson match engine

https://www.38-0.pro
2•rankinzheng•50m ago•0 comments

Abnormal Response to Anthropic Lawsuit

https://abnormal.ai/blog/abnormal-response-to-anthropic-lawsuit
3•tjek•54m ago•2 comments

StoryScope: Investigating Idiosyncrasies in AI Fiction

https://arxiv.org/abs/2604.03136
1•cratermoon•55m ago•0 comments

The AI factory: the rewiring of India's tech industry [video]

https://www.ft.com/video/5a5733ea-f8fa-488f-906d-418584b8bc36
1•petethomas•55m 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!