frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UChicago freezes PhD admissions to most humanities programs

https://www.hpherald.com/evening_digest/u-of-c-freezes-ph-d-admissions-to-most-humanities-program...
1•throw0101c•1m ago•0 comments

Agentic coding deserves more than a chat box bolted onto VS Code

https://github.com/evanklem/polypore
1•evanklem2004•2m ago•0 comments

Amazon Bedrock Managed Knowledge Base

https://aws.amazon.com/blogs/aws/introducing-amazon-bedrock-managed-knowledge-base-for-faster-mor...
1•ilreb•3m ago•0 comments

The technology and labour behind electronic death registration

https://www.cambridge.org/core/journals/medical-history/article/reengineering-us-death-data-colle...
1•danso•3m ago•0 comments

Solve Everything: Achieving Abundance by 2035 (AI's Impact)

https://www.solveeverything.org/
1•rramadass•3m ago•0 comments

Judge Rules Blacked.com Can Sue Meta for Scraping Its Porn

https://www.404media.co/judge-rules-blacked-com-can-sue-meta-for-scraping-its-porn/
1•pavel_lishin•3m ago•0 comments

Show HN: Artifacta – Durable storage for agent outputs

https://artifacta.io
1•jnakano89•4m ago•0 comments

Revert camera sound implementation in 26Q2

https://android.googlesource.com/platform/frameworks/base/+/e78bddb354dc719b8efe437030e4e5869e5ca...
1•zb3•4m ago•1 comments

Why do these Castro gay bars have TSA-style face scanners?

https://sf.gazetteer.co/why-do-these-castro-gay-bars-have-tsa-style-face-scanners
1•pavel_lishin•4m ago•0 comments

French physicist and media star loses doctorate after plagiarism investigation

https://www.science.org/content/article/french-physicist-and-media-star-loses-doctorate-after-pla...
1•bookofjoe•4m ago•0 comments

Paul Krugman has the perfect metaphor for the career of Elon Musk

http://observationalepidemiology.blogspot.com/2026/06/paul-krugman-has-perfect-metaphor-for.html
1•speckx•5m ago•0 comments

Estonia to Grant AI Bots Digital IDs to Control Access

https://www.bloomberg.com/news/articles/2026-06-17/estonia-to-grant-ai-bots-legal-rights-with-per...
1•Tomte•5m ago•0 comments

Show HN: Stop your AI agents from approving their own work

https://github.com/sammysltd/makerchecker
1•smashini•6m ago•1 comments

Why There Won't Be a Singleton AI God (Physics and Evolution)

https://github.com/jacob-sha/Information-Existence-Hypothesis/blob/main/README_EN.md
1•jacob-sha•6m ago•0 comments

Kaspersky discovered malware targeting Steam users through Wallpaper Engine

https://www.kaspersky.co.uk/about/press-releases/kaspersky-discovered-a-malware-campaign-targetin...
1•lrae•8m ago•0 comments

Local Qwen isn't a worse Opus, it's a different tool

https://blog.alexellis.io/local-ai-is-not-opus/
1•alexellisuk•9m ago•2 comments

Real Artists Still Ship

https://jerodsanto.net/2026/06/real-artists-still-ship/
1•speckx•12m ago•0 comments

Anthropic Employees Accuse Trump Administration of Targeting Them

https://www.nytimes.com/2026/06/17/technology/anthropic-trump-administration-fable.html
2•thm•13m ago•0 comments

Send Bulk and Transactional Emails for Free

https://mailbro.tech/
1•Sechele•13m ago•0 comments

Orbital Data Centers Have a Silicon Problem Nobody Is Pricing

https://vincentpribble.substack.com/p/orbital-data-centers-have-a-silicon
3•vpribble•15m ago•0 comments

Climbing the Generative AI Mountain: A "hitchhiker's guide" for product managers

https://queue.acm.org/detail.cfm?id=3807965
1•yarapavan•16m ago•0 comments

SHA-1 Was Shattered

https://www.boot.dev/blog/news/sha-1-was-shattered
2•speckx•17m ago•0 comments

Cosmicgpt – A GPT-in-space simulator to research SpaceX AI satellite viability

https://github.com/davedx/cosmicgpt
1•davedx•18m ago•1 comments

Show HN: StumbleUpon Is Back (Kinda)

https://www.stumbleagain.com/
3•nocodeg•19m ago•0 comments

Towards Conversational AI for Disease Management

https://www.nature.com/articles/s41586-026-10764-5
1•ilreb•19m ago•0 comments

Governance Is the Missing Half of AI Efficiency

https://blog.r-lopes.com/posts/governance-missing-half-of-ai-efficiency
1•dovelome•20m ago•0 comments

Claude Code sessions erase after 30 days by default

https://code.claude.com/docs/en/settings
1•markrogersjr•22m ago•1 comments

Volkswagen started blocking GrapheneOS users

https://discuss.grapheneos.org/d/35949-volkswagen-app?page=3
2•microtonal•23m ago•0 comments

The Demise of Real Neighborhoods Is a Story of Finance

https://www.thenewatlantis.com/publications/the-demise-of-real-neighborhoods-is-a-story-of-finance
1•zeveb•25m ago•1 comments

The Evolution of Unix

https://www.nokia.com/bell-labs/about/dennis-m-ritchie/hist.html
2•highfrequency•26m 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!