frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Code creator Boris Cherny is sick of the phrase 'vibe coding'

https://www.businessinsider.com/claude-code-creator-boris-cherny-vibe-coding-anthropic-ai-2026-5
1•Yizahi•48s ago•1 comments

Did School Cellphone Bans Work? New Study Finds Mixed Results

https://www.nytimes.com/2026/05/04/us/did-school-cellphone-bans-study.html
1•JimsonYang•54s ago•0 comments

Marc Lore says that AI will soon enable anyone to open a restaurant

https://techcrunch.com/2026/05/05/marc-lore-says-that-ai-will-soon-enable-anyone-open-a-restaurant/
1•JimsonYang•3m ago•0 comments

The human genome encodes for a new category of molecule

https://www.economist.com/science-and-technology/2026/05/06/the-human-genome-encodes-for-a-new-ca...
1•Brajeshwar•4m ago•0 comments

What the hell is happening in China?

https://ladanuzhna.xyz/writing/what-is-happening-in-china/
2•sethbannon•4m ago•0 comments

Authorities say Flock cameras' data allegedly used for immigration enforcement

https://www.ohio.news/stories/dayton-authorities-say-that-flock-cameras-data-allegedly-used-for-i...
2•pseudolus•4m ago•0 comments

Hardening Firefox with Claude Mythos Preview

https://hacks.mozilla.org/2026/05/behind-the-scenes-hardening-firefox/
1•HieronymusBosch•5m ago•0 comments

AI helps translate one OpenAPI spec into seven idiomatic SDKs

https://workos.com/blog/autogenerating-sdks-with-ai
1•gjtorikian•5m ago•0 comments

OpenAI violated Canadians' privacy, watchdogs say in call for legal reform

https://globalnews.ca/news/11836689/report-on-openai-expected-from-federal-provincial-privacy-wat...
2•rolph•6m ago•0 comments

Why Are Software Developers Still in Demand?

https://galratner.substack.com/p/why-are-software-developers-still
2•neogodless•7m ago•0 comments

I switched from Mac to a Lenovo Chromebook, and you can too

https://blog.johnozbay.com/i-left-apples-ecosystem-for-a-lenovo-chromebook-and-you-can-too.html
3•speckx•9m ago•0 comments

How to limit unauthorized AI us in the classroom

https://hollisrobbinsanecdotal.substack.com/p/how-to-limit-unauthorized-ai-use
2•HR01•11m ago•0 comments

The dark fascist secret hidden beneath one of Europe's largest railway stations

https://www.cnn.com/travel/milan-stazione-centrale-binario-21-shoah-memorial
3•bwb•11m ago•1 comments

Fortum has started heat production at two large data centre sites in Finland

https://www.fortum.com/en/media/2026/05/fortum-has-started-heat-production-two-large-data-centre-...
3•ep_jhu•12m ago•0 comments

Chrome removes claim of On-device Al not sending data to Google Servers

https://old.reddit.com/r/chrome/comments/1t5qayz/chrome_removes_claim_of_ondevice_al_not_sending/
4•newsoftheday•14m ago•0 comments

Energy-Based Transformers

https://blog.serendeep.tech
1•serendope•14m ago•0 comments

Need expert help without the endless back-and-forth? – GigsPool

1•nucleas•15m ago•0 comments

The surprisingly complex journey to text-selectable client-side generated PDFs

https://sdocs.dev/blogs/journey-to-pdf-generation
1•FailMore•15m ago•0 comments

Show HN: Drumforge – Free open-source interactive drum exercises

https://drumforge.app/
1•narghev•15m ago•0 comments

How to Choose Better Chocolate

https://chof.nl/how-to-choose-chocolate
2•felipevb•16m ago•0 comments

The Frame-Dependent Mind

https://softmax.com/blog/the-frame-dependent-mind
1•tosh•16m ago•0 comments

Honey, I Shrunk the Circuits

https://tokenbender.com/posts/honey-i-shrunk-the-circuits/
2•dejavucoder•16m ago•0 comments

Thefacebook.com's Darker Side (2004)

http://web.archive.org/web/20041101143311/http://www.stanforddaily.com/tempo?page=content&id=1349...
1•downbad_•16m ago•1 comments

The AI-free site builder for genius founders

https://fraude.design
1•cdrnsf•17m ago•0 comments

The Intolerable Hypocrisy of Cyberlibertarianism

https://matduggan.com/the-intolerable-hypocrisy-of-cyberlibertarianism/
2•brycewray•17m ago•0 comments

Building my own embedded WebKit macOS browser with dark reader

https://wkdomains.com/2026/may/on-the-dark-side/
1•andrewfromx•18m ago•0 comments

Mining WhatsApp, WeChat, Alibaba, Gmail to Create a Unified Supplier Dashboard

https://theautomatedoperator.substack.com/p/mining-whatsapp-wechat-alibaba-and
1•idopmstuff•19m ago•0 comments

Show HW: Vectors.Space – An free service for embeddings

https://vectors.space
1•marcobambini•19m ago•0 comments

What's Next for IVF

https://www.technologyreview.com/2026/05/07/1136946/whats-next-for-ivf-ai-robot-pgt-gene-editing/
1•Brajeshwar•20m ago•0 comments

Informity AI – Chat with your documents locally on your Mac (MIT, free)

https://www.informity.ai/
1•informity•21m 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!