frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

UK Permanently Bans Tobacco for Anyone Born in 2009 or After

https://www.nytimes.com/2026/04/21/world/europe/uk-smoking-ban-2009.html
1•m-hodges•1m ago•0 comments

Migrate a Legacy Codebase with Sandbox Agents

https://developers.openai.com/cookbook/examples/agents_sdk/sandboxed-code-migration/sandboxed_cod...
1•gmays•4m ago•0 comments

Ask HN: Is there a Chrome extension that alerts when comment on HN is replied?

1•dataviz1000•5m ago•0 comments

Birthright Citizenship and Youth Crime

https://marginalrevolution.com/marginalrevolution/2026/04/birthright-citizenship-and-youth-crime....
3•pulisse•14m ago•1 comments

NeurIPS Supports Authors with Google's Paper Assistant Tool (Pat)

https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/
1•adt2bt•16m ago•0 comments

National Library Workers Day

https://ala-apa.org/nlwd/
1•ynac•17m ago•0 comments

Slash is a tiny helper that keeps you organized and focused

https://getslash.co/
2•igtztorrero•17m ago•0 comments

How to Implement an FPS Counter

https://vplesko.com/posts/how_to_implement_an_fps_counter.html
1•vplesko•17m ago•0 comments

Do This Instead of Rock Paper Scissors If You Are More Than 2 People

https://vplesko.com/posts/zimi_zami_zum.html
1•vplesko•18m ago•0 comments

2× – nine months later: We did it (Intercom)

https://ideas.fin.ai/p/2x-nine-months-later
1•mmarian•19m ago•0 comments

This Slug Can Survive on Photosynthesis [video]

https://www.youtube.com/watch?v=IH_uv4h2xYM
1•CharlesW•20m ago•0 comments

KDE at 30

https://kde.org/anniversaries/30/
2•kristianp•21m ago•0 comments

Apple's Cal AI crackdown signals it's still policing the App Store

https://techcrunch.com/2026/04/21/apples-cal-ai-crackdown-signals-its-still-policing-the-app-store/
2•CharlesW•22m ago•0 comments

The Infamous Coin Toss

https://ergodicityeconomics.com/2023/07/28/the-infamous-coin-toss/
1•efavdb•23m ago•0 comments

Global growth in solar "the largest ever observed for any source"

https://arstechnica.com/science/2026/04/global-growth-in-solar-the-largest-ever-observed-for-any-...
3•tambourine_man•24m ago•1 comments

Google Gemini Deep Research Agents Now Search Both Web and Private Data via MCP

https://the-decoder.com/google-launches-deep-research-and-deep-research-max-agents-to-automate-co...
2•demiurges•25m ago•0 comments

Meta will record employees' keystrokes and use it to train its AI models

https://techcrunch.com/2026/04/21/meta-will-record-employees-keystrokes-and-use-it-to-train-its-a...
1•cebert•27m ago•2 comments

San Diego rents declined more than 19 of 20 top US markets after surge in supply

https://www.kpbs.org/news/economy/2026/03/27/san-diego-rents-declined-more-than-19-of-nations-top...
17•littlexsparkee•28m ago•6 comments

I'm Sick of AI Everything

5•jonthepirate•29m ago•1 comments

Show HN: Twitter Bookmarks Downloader – Export and Bulk Delete X Bookmarks

https://chromewebstore.google.com/detail/twitter-bookmarks-downloa/kgmbiokleeacfnkfihheldbdapoifclb
1•qwikhost•31m ago•0 comments

The Wild Story of the Teton Dam Failure

https://www.youtube.com/watch?v=J7ieKmP96Hc
1•mhb•32m ago•0 comments

NASA Moonbound Episode 1 [video]

https://www.youtube.com/watch?v=bfw4G59j9uw
1•BiraIgnacio•34m ago•0 comments

Kubuntu 26.04 Beta – Resolute Raccoon

https://kubuntu.org/news/kubuntu-26-04-beta/
1•kristianp•36m ago•0 comments

Google WeatherNext 2 – Our most accurate AI weather forecasting technology

https://deepmind.google/science/weathernext/
2•Anon84•38m ago•0 comments

Topologies on Finite Groups that Contain Proper Subgroups

https://m-slee.netlify.app/posts/finite-topo-subgroups
1•richard_chase•38m ago•0 comments

Show HN: PayClaw – Give your AI agent a wallet it can spend

https://www.payclaw.me/
1•onsari•39m ago•0 comments

The Problem with Solutions (2024)

https://webdev.rip/notes/the-problem-with-solutions
2•mooreds•41m ago•1 comments

Florida AG launches criminal investigation into ChatGPT over FSU shooting

https://www.npr.org/2026/04/21/nx-s1-5793967/florida-openai-investigation-mass-shooting-fsu
1•pseudolus•42m ago•0 comments

Building a Platform Is a Balancing Act

https://matthewboston.com/blog/building-a-platform-is-a-balancing-act.html
2•bostonaholic•49m ago•0 comments

Rich Sutton's University of Alberta Convocation Address

http://www.incompleteideas.net/IncIdeas/ConvocationAddress.html
3•mercurybee•51m 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•12mo ago

Comments

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