frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Shearwaters washing up dead on Australian beaches not due to 'natural' causes

https://theconversation.com/more-shearwaters-are-washing-up-dead-on-australian-beaches-its-not-du...
1•defrost•1m ago•0 comments

Tenfold: Ten Years of Ink & Switch

https://www.inkandswitch.com/
1•spiralganglion•1m ago•0 comments

Ask HN: How do solo devs protect their work in the age of vibe coding?

1•langs•2m ago•0 comments

Combatting the person who trademarked the name of silent actress Louise Brooks

https://louisebrookssociety.blogspot.com/2026/04/trademark-on-film-icon-louise-brooks.html
1•aworks•3m ago•0 comments

Show HN: MirrorNeuron – an open-source runtime for reliable on-device AI agents

https://www.mirrorneuron.io/
1•homerquan•5m ago•0 comments

Tesla Never Stopped Developing the Model S [video]

https://www.youtube.com/watch?v=IwnJzP0TlCk
1•CHB0403085482•8m ago•0 comments

The Kissinger Tapes

https://blog.oup.com/2026/04/the-kissinger-tapes/
1•jruohonen•11m ago•0 comments

Selvedge: Capture the why behind AI code changes

https://github.com/masondelan/selvedge
1•masondelan•12m ago•1 comments

Tagging Music with MusicBrainz Picard

https://lwn.net/Articles/1066384/
1•signa11•15m ago•0 comments

Deterministic arcade shooter – same game for everyone, AI coaches your replay

https://gamefilm.org
1•shettysuraj•16m ago•0 comments

The Declining Driver's License: Good, Bad, or Both?

https://maxmautner.com/2026/04/21/teen-drivers-license-decline.html
2•jez•18m ago•0 comments

Show HN: SparseLab–real sparse training(CSR+custom kernel) in PyTorch, CPU-first

https://news.ycombinator.com/from?site=github.com/darshanfofadiya
1•DARSHANFOFADIYA•20m ago•1 comments

Skopx – AI analytics platform with built-in project management

https://skopx.com
1•skopx•21m ago•1 comments

AI GTM plugin for SEO and GEO in Claude Code

https://github.com/zhizdev/overgrow
4•zhizdev•22m ago•0 comments

Writing Matters

https://blog.apaonline.org/2026/04/22/writing-matters/
3•jruohonen•25m ago•0 comments

Private health records of half a million Britons for sale on Chinese Alibaba

https://www.theguardian.com/technology/2026/apr/23/private-health-records-uk-biobank-chinese-webs...
1•0in•25m ago•0 comments

Ask HN: Why are companies so distrustful of remote employees?

2•lyfeninja•30m ago•5 comments

Meta Layoffs – 10% in May

https://www.npr.org/2026/04/23/nx-s1-5797855/meta-layoffs-10-percent-staff
1•dzonga•31m ago•1 comments

How to Win

https://nekolucifer.substack.com/p/how-to-win
2•andai•32m ago•0 comments

Scraped from ancient Roman toilets, remains expose a pathogen found earlier

https://phys.org/news/2026-04-ancient-roman-toilets-crusted-expose.html
1•wglb•35m ago•2 comments

Deploy an Autonomous X Team

https://agentbot.sh
1•Agentbot-esky•36m ago•0 comments

MiMo-v2.5-TTS Series

https://mimo.xiaomi.com/mimo-v2-5-tts/
1•gainsurier•37m ago•0 comments

Physicists revive 1990s laser concept to propose a next-generation atomic clock

https://phys.org/news/2026-04-physicists-revive-1990s-laser-concept.html
1•wglb•38m ago•1 comments

Sakana Fugu: A Multi-Agent Orchestration System as a Foundation Model

https://sakana.ai/fugu-beta/
1•hardmaru•39m ago•0 comments

Show HN: A Clean Room RFC for NTFS Structural Repair

https://github.com/seb3773/ntfs-repair-rfc/
1•seb3773•43m ago•1 comments

Are unbeaten superteams like the UConn Huskies bad for basketball?

https://www.theguardian.com/sport/2026/mar/18/basketball-superteams-uconn-huskies-march-madness
1•PaulHoule•43m ago•0 comments

US Special Forces Soldier Arrested for Polymarket Bets on Maduro Raid

https://www.wired.com/story/us-special-forces-soldier-allegedly-profited-off-of-maduro-capture-on...
3•sssilver•46m ago•2 comments

Show HN: FilePop – a file browser in your menu bar

https://bendansby.com/filepop/
1•webwielder2•49m ago•0 comments

TikTok Makes Americans Want Chinese EVs They Can't Have

https://www.bloomberg.com/news/articles/2026-04-21/byd-xiaomi-and-zeekr-car-reviews-flood-tiktok-...
5•KnuthIsGod•49m ago•0 comments

Why Async Rust? (2023)

https://without.boats/blog/why-async-rust/
1•cosmic_quanta•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!