frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hostis Humani Generis

https://hostis.black/
1•g4k•57s ago•0 comments

Chinese Government Just Got Largest Digital Rights Conference Canceled

https://www.wired.com/story/the-chinese-government-pressured-zambia-to-cancel-the-worlds-largest-...
1•thesmtsolver2•1m ago•0 comments

Show HN: Headcam [video]

https://www.youtube.com/watch?v=s8khQ_-6aM8
1•itsloopyo•4m ago•0 comments

How the vinyl revival fills the gaps streaming left behind

https://restofworld.org/2026/vinyl-revival-streaming-gaps/
3•billybuckwheat•6m ago•0 comments

Show HN: Plannotator for Codex

https://twitter.com/plannotator/status/2050683552581468172
2•ramoz•6m ago•1 comments

Show HN: State of the Art of Coding Models, According to Hacker News Commenters

https://hnup.date/hn-sota
2•yunusabd•9m ago•0 comments

Mistral Medium 3.5 YaRN bug fix

https://huggingface.co/mistralai/Mistral-Medium-3.5-128B/discussions/18
1•danielhanchen•10m ago•0 comments

Frizbee is a tool you may throw a tag at and it comes back with a checksum

https://github.com/stacklok/frizbee
1•mooreds•11m ago•0 comments

Silicon Valley's Brightest Parents Broke Their Own School

https://www.wsj.com/us-news/education/how-silicon-valleys-brightest-parents-broke-their-own-schoo...
2•sanj•12m ago•0 comments

Problem with Counterfeit People

https://www.theatlantic.com/technology/archive/2023/05/problem-counterfeit-people/674075/
2•tu7001•12m ago•0 comments

The agent harness belongs outside the sandbox

https://www.mendral.com/blog/agent-harness-belongs-outside-sandbox
2•shad42•12m ago•0 comments

Six Years Perfecting Maps on WatchOS

https://www.david-smith.org/blog/2026/04/29/maps-on-watchos/
6•valzevul•19m ago•0 comments

Shigeru Miyamoto: Better Coder Than Most Without Ever Writing Code

https://indiepixel.de/blog/posts/shigeru-miyamoto-has-probably-never-compiled-a-line-of-code-in-h...
2•birdculture•20m ago•0 comments

CISA, NSA & Five Eyes publishes guide on how to safely deploy AI agents

https://cyberscoop.com/cisa-nsa-five-eyes-guidance-secure-deployment-ai-agents/
1•lschueller•23m ago•0 comments

/peek is a new slash command to use subagents to check out your other sessions

https://github.com/sachio222/cc-peek
1•sachio222•23m ago•0 comments

Show HN: Rotato – Node.js proxy that rotates LLM API keys on 429 errors

https://github.com/p32929/rotato
1•heliskyr2•25m ago•0 comments

Show HN: I Built a Museum Exhibit

https://knhash.in/built-an-exhibit/
1•kn81198•26m ago•0 comments

Testing Vue Components in the Browser

https://jvns.ca/blog/2026/05/02/testing-vue-components-in-the-browser/
1•chmaynard•26m ago•0 comments

Lessons from Debugging GLM-5 at Scale

https://z.ai/blog/scaling-pain
1•pbowyer•29m ago•0 comments

Farewell to a Giant of Botany

https://nautil.us/farewell-to-a-giant-of-botany-1280409
3•Brajeshwar•30m ago•0 comments

Apple raises Mac Mini starting price $599 to $799, 256GB storage discontinued

https://www.macrumors.com/2026/05/01/mac-mini-now-starts-at-799/
2•pak•33m ago•0 comments

A GitHub for Maintainers

https://nesbitt.io/2026/05/02/a-github-for-maintainers.html
1•jamietanna•33m ago•0 comments

Disagreeing with Google, Postgres, Future Problems – Mike Stonebraker [video]

https://www.youtube.com/watch?v=YPObBOwIrHk
1•da02•36m ago•0 comments

Debian adds an SPF record to debian.org

https://lists.debian.org/debian-devel-announce/2026/04/msg00010.html
2•susam•39m ago•0 comments

Show HN: A marketplace for LLM-powered webapps earning on token margins

https://codeplusequalsai.com/dashboard
1•cryptoz•40m ago•0 comments

Elephant/Goldfish for Claude Code

https://github.com/vshvedov/elephant-goldfish
1•vladcodes•41m ago•1 comments

History of QR Code

https://www.qrcode.com/en/history/
1•helloworld•43m ago•0 comments

Aurora Systems relaunches, building and investing in ideas for 10%

https://aurorasystems.co.zw/services.html#startup-advisory
1•zayne_komichi•43m ago•1 comments

Hyperscalers are 4500 years old

https://av.codes/blog/hyperscalers-are-4500-years-old/
1•everlier•45m ago•0 comments

States rethink data center incentives amid costs and environmental concerns

https://www.politico.com/news/2026/05/02/data-centers-states-tax-incentives-00891184
1•WaitWaitWha•46m 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!