frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Japan Team Test Engine for Mach 5 Aircraft, Eyeing 2HR Trip to US

https://mainichi.jp/english/articles/20260511/p2a/00m/0sc/015000c
1•karakoram•40s ago•0 comments

Show HN: Automated QA, Performance Tracking

https://malleon.io
1•godelshalt•2m ago•0 comments

LightInk: Solar E-ink smartwatch with LoRa and GPS lasts 10 months on one charge

https://www.notebookcheck.net/LightInk-E-ink-smartwatch-with-solar-LoRa-and-GPS-lasts-10-months-o...
1•HardwareLust•2m ago•0 comments

Linux 7.1-rc4 Released With Many Fixes

https://www.phoronix.com/news/Linux-7.1-rc4-Released
1•doener•3m ago•0 comments

In Defense of Operation Market Garden

https://secretaryrofdefenserock.substack.com/p/in-defense-of-operation-market-garden
1•baud147258•3m ago•0 comments

An AI Hate Wave Is Here

https://www.axios.com/2026/05/17/ai-backlash-polling-sentiment
2•karakoram•5m ago•1 comments

Microsoft is retiring Teams' Together Mode

https://www.theverge.com/tech/932215/microsoft-teams-together-mode
1•adunk•7m ago•0 comments

AI Is Starving for PDFs

https://mkotlikov.substack.com/p/your-ai-is-starving-for-pdfs
2•mkotlikov•8m ago•0 comments

Prolog Coding Horror

https://www.metalevel.at/prolog/horror
2•RohanAdwankar•13m ago•0 comments

We Lost Our Imagination

https://onatm.dev/2026/05/17/we-lost-our-imagination/
2•onatm•15m ago•1 comments

Looks like someone forgot to register this domain edwardgallrein.com – oopsie

https://replit.com/
1•ryanmerket•16m ago•0 comments

Dwarkesh in the Datacenter

https://marginalrevolution.com/marginalrevolution/2026/05/dwarkesh-in-the-datacenter.html
1•paulpauper•21m ago•0 comments

A New Kind of Family-Separation Crisis

https://www.theatlantic.com/politics/2026/05/honduras-deportations-without-children/687153/
1•paulpauper•21m ago•0 comments

My Son's Math Homework Is Essentially Just Pokémon

https://www.theatlantic.com/technology/2026/05/homework-video-games-ed-tech/687198/
1•paulpauper•22m ago•0 comments

Ask HN: Why aren't more people worried about AI impersonation in code reviews?

1•eranation•24m ago•0 comments

Release PiClaw v2.4.0 – The Infosphere · rcarmo/piclaw

https://github.com/rcarmo/piclaw/releases/tag/v2.4.0
1•rcarmo•25m ago•0 comments

Artificial Intelligence and Grade Inflation

https://cshe.berkeley.edu/publications/artificial-intelligence-and-grade-inflation-cshe-higher-ed...
1•ChrisArchitect•25m ago•0 comments

Rcarmo/iOS-terax-AI: Personal fork of Terax for integration with iOS-Linux-kit

https://github.com/rcarmo/ios-terax-ai
1•rcarmo•26m ago•0 comments

Outbound

https://store.steampowered.com/app/2681030/Outbound/
1•doener•27m ago•0 comments

FTC tells platforms to comply with Take It Down Act by May 19

https://www.ftc.gov/news-events/news/press-releases/2026/05/ftc-chairman-ferguson-advises-compani...
2•p_stuart82•30m ago•0 comments

The Arch Lie [video]

https://www.youtube.com/watch?v=nemkacOX8-w
1•grigio•32m ago•0 comments

Show HN: Multi-agent orchestration layer for experimentation

https://github.com/theo-kirby/chassis
1•theo-kirby•33m ago•0 comments

What Matters in Production RAG

https://arpitbhayani.me/blogs/rag-production/
1•ashwani-yadav•34m ago•0 comments

Show HN: Switch your Mac's desktop identity with hotkeys – InfiniDesk 3

https://infinidesk.app
1•ben_s_e•36m ago•0 comments

Paul Le Roux

https://en.wikipedia.org/wiki/Paul_Le_Roux
1•niklasbuschmann•37m ago•0 comments

Microsoft AI CEO forecasts human-level AI in 18 months

https://twitter.com/kimmonismus/status/2055952702908355012
8•momentmaker•38m ago•7 comments

What 4 months and 6,435 sessions taught us about AI vocal coaching

https://singingcarrots.com/blog/ai-singing-coach-results-4-months-data/
2•kyunez•38m ago•1 comments

Don't Answer the First Question

https://lalitm.com/post/dont-answer-the-first-question/
1•logickkk1•38m ago•0 comments

Ken Griffin says Citadel AI agents finish PhD tasks in days

https://twitter.com/TFTC21/status/2055978848764784662
3•momentmaker•38m ago•1 comments

The Cost of Concurrency Coordination with Jon Gjengset [video]

https://www.youtube.com/watch?v=tND-wBBZ8RY
1•redixhumayun•40m 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!