frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google Offers Free PC Upgrade for 500M Windows Users

https://www.forbes.com/sites/zakdoffman/2026/04/07/google-offers-free-pc-upgrade-for-500-million-...
1•blitzar•4m ago•0 comments

I still build apps for myself

https://blog.kulman.sk/why-i-still-build-ios-apps/
1•ig0r0•4m ago•0 comments

Pg_sage – Agentic Postgres Dba

https://github.com/jasonmassie01/pg_sage
1•pg_sage•6m ago•0 comments

Ask HN: Should AI credits be refunded on mistakes?

1•ed_elliott_asc•11m ago•1 comments

Surprising links between autism, Alzheimer's could change how we treat both

https://www.washingtonpost.com/health/2026/04/02/autism-alzheimers-link-research-treatment/
1•pseudolus•12m ago•1 comments

Why Claude Mythos is not AGI

https://lucrbvi.bearblog.dev/claude-mythos-is-not-agi/
2•lucrbvi•14m ago•1 comments

A little bit, everywhere, all at once

https://ghostsofthemachine.substack.com/p/a-little-bit-everywhere-all-at-once
1•gemniii•14m ago•0 comments

OpenSSH to warn for non post-quantum key agreement scheme

https://www.openssh.org/pq.html
1•j03b•15m ago•0 comments

They're Made Out of Meat (1991)

http://www.terrybisson.com/theyre-made-out-of-meat-2/
2•surprisetalk•15m ago•0 comments

Why LLMs Are Bad Writers but Good Editors

https://jasmi.news/p/ai-writing
2•surprisetalk•15m ago•0 comments

Why I'm a Quaker

https://thingofthings.substack.com/p/why-im-a-quaker
1•surprisetalk•15m ago•0 comments

Read Hobbes, Locke, Hume, and Mill via Earlymoderntexts.com

https://arjunpanickssery.substack.com/p/you-should-read-hobbes-locke-hume
1•surprisetalk•16m ago•0 comments

US disrupts Russian military-run DNS hijacking network

https://www.reuters.com/business/media-telecom/us-disrupts-russian-military-run-dns-hijacking-net...
2•2OEH8eoCRo0•18m ago•0 comments

Operation "Epic Fury" Deepens Transatlantic Rift: U.S., EU at Odds over Security

https://militarnyi.com/en/articles/operation-epic-fury-deepens-transatlantic-rift-u-s-and-europe-...
2•vrganj•19m ago•0 comments

Wrote an extension for the Thunderbird Client to help protect from Phishing

https://addons.thunderbird.net/en-US/thunderbird/addon/stop-phishing-me/
2•StopPhisingMe•20m ago•1 comments

The hundred most influential books since the war (2008)

https://web.archive.org/web/20100619010636/http://entertainment.timesonline.co.uk/tol/arts_and_en...
2•MyOtherAct•21m ago•0 comments

Who Would Be Scared If AI Replaced Their Jobs?

https://maxglobalnews.com/if-ai-takes-over-we-lose-our-jobs-but-if-ai-fails-we-also-lose-our-jobs/
1•videobroker•24m ago•0 comments

Show HN: Voxcode: local speech to text and ripgrep = transcript and code context

https://github.com/jensneuse/voxcode
1•jensneuse•25m ago•1 comments

Americans Are Drowning in Debt? 60% or More

https://www.patreon.com/posts/debt-slavery-is-155080852
3•videobroker•26m ago•0 comments

Apple in Talks to Boost Mac Neo Production as Sales Exceed Expectations

https://www.culpium.com/p/apple-in-talks-to-boost-mac-neo-production
2•kristianp•27m ago•0 comments

Understanding the Go Runtime: The System Monitor

https://internals-for-interns.com/posts/go-sysmon/
2•valyala•31m ago•0 comments

Greece to ban under-15s from social media from next year

https://news.sky.com/story/greece-to-ban-under-15s-from-social-media-from-next-year-13529181
6•austinallegro•34m ago•0 comments

Men Are Buying Hacking Tools to Use Against Their Wives and Friends

https://www.wired.com/story/men-are-buying-hacking-tools-to-use-against-their-wives-and-friends/
2•joozio•34m ago•0 comments

Breakthrough in AI Solving Math Conjectures: Peking Univ. Team's Exploration

https://chinaresearchcollective.substack.com/p/a-new-breakthrough-in-ai-solving
2•seekdeep•35m ago•2 comments

Did it get dumber? Tracking Claude Code and Codex according to HN comments

https://diditgetdumber.com/
2•lebek•35m ago•2 comments

RFC 0015: Pi Licensing

https://rfc.earendil.com/0015/
2•tosh•39m ago•0 comments

Reading /etc./passwd through a translation file upload (CVE-2026-32251)

https://simonkoeck.com/writeups/tolgee-xxe-translation-import
1•soeckly•39m ago•0 comments

Hugging Face Contributes Safetensors to PyTorch Foundation

https://www.linuxfoundation.org/press/pytorch-foundation-announces-safetensors-as-newest-contribu...
1•rbanffy•39m ago•0 comments

DuckLake's 900x Speed Claim:A Database in Your Catalog Is Worth Two in the Cloud

https://www.banandre.com/blog/ducklake-900x-speed-claim-data-inlining-analysis
1•pholanda•41m ago•0 comments

Why Your Engineering Team Is Slow (It's the Codebase, Not the People)

https://piechowski.io/post/codebase-drag-audit/
2•grepsedawk•42m 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•11mo ago

Comments

semihs•11mo 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_•11mo 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•11mo 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_•11mo ago
That sounds great!