frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Producing The Perfect Token

https://blog.luminal.com/p/producing-the-perfect-token
1•jafioti•29s ago•0 comments

A general technique for automating NES games

https://tom7.org/mario/
1•azhenley•1m ago•0 comments

Show HN: PlaneFeed – scroll live flights like TikTok

https://planefeed.app/
1•mind1m•1m ago•0 comments

Canada's Liberal party adopts motion to restrict kids from social media

https://toronto.citynews.ca/2026/04/11/liberal-party-adopts-motion-to-restrict-kids-from-social-m...
1•EmbarrassedHelp•2m ago•0 comments

TB/cm² at zero retention energy – atomic-scale memory on fluorographane

https://zenodo.org/records/19513269
1•iliatoli•5m ago•0 comments

Apple Stops Accepting Orders for Some Mac Mini and Mac Studio Models

https://www.macrumors.com/2026/04/11/some-mac-mini-mac-studio-currently-unavailable/
4•dabinat•11m ago•0 comments

Dark Castle

https://darkcastle.co.uk/
2•evo_9•12m ago•0 comments

Show HN: Kern – Agents that do the work and show it

https://github.com/oguzbilgic/kern-ai
2•obilgic•12m ago•0 comments

Punching through internet censorship in 2026

https://neversleeps.moscow/publications/vpn_complexity.html
1•keddad•12m ago•0 comments

Show HN: Share how you hear yourself (on-device)

https://bone-conduction-imitator.vercel.app/
2•SpyCoder77•13m ago•0 comments

Honcho: Memory library for building stateful agents

https://github.com/plastic-labs/honcho
2•modinfo•13m ago•0 comments

Show HN: Sätteri, high-performance Markdown pipeline for JavaScript

https://github.com/bruits/satteri
1•Princesseuh•13m ago•0 comments

Show HN: Feedstock – Web Crawler for TypeScript Built on Bun and Playwright

https://github.com/tylergibbs1/feedstock
1•tylergibbs1•14m ago•0 comments

Show HN: A Better Internet

https://tomclancy.info/pages/abi-a-better-internet.html
1•tclancy•17m ago•0 comments

US Mobile now bundles Starlink home internet starting at $47/month

https://www.usmobile.com/home-internet/starlink
2•fastest963•23m ago•0 comments

For Chinese visa-seekers in the US, the path to good fortune lies in Chick-fil-A

https://apnews.com/article/china-student-visa-h1b-green-card-immigrant-talent-stem-0c86e70ae2074e...
1•rawgabbit•25m ago•0 comments

The Guinndex

https://guinndex.ai
2•wallflower•25m ago•0 comments

Why Obama did not stop NSA domestic surveillance (2015)

https://www.politico.com/magazine/story/2015/11/barack-obama-lawyer-in-chief-213342/
2•downbad_•26m ago•1 comments

ChatGPT Helped Plan Massacre

https://www.youtube.com/watch?v=IbG-JGdGniY
1•solid_fuel•28m ago•1 comments

Ask HN: Will AI Redefine Programming?

2•ploution•30m ago•2 comments

Getting chat-tuned models to act kinda like base models

https://iter.ca/post/model-baseify/
1•smitop•31m ago•0 comments

Show HN: Editing 2000 photos made me build a macOS bulk photo editor

https://apps.apple.com/us/app/rapidphoto-batch-crop-edit/id6758485661?mt=12
4•om202•32m ago•0 comments

Why you not contributing yet? Contribute to Obsidian Kernel

https://github.com/roading-os/Obsidian-Kernel/blob/main/HOW-TO-CONTRIBUTE.md
1•oretuff•33m ago•0 comments

The Little Book of Deep Learning

https://fleuret.org/francois/lbdl.html
2•malshe•34m ago•2 comments

Zotero 9

https://www.zotero.org/blog/zotero-9/
5•tech234a•34m ago•0 comments

Chilcy – AI-Powered Business Intelligence for Modern Companies

https://www.chilcy.com/
2•sajithfx•35m ago•0 comments

Open Letter to Some Collabora Developers

https://blog.documentfoundation.org/blog/2026/04/11/open-letter-to-developers/
1•tech234a•35m ago•0 comments

Is Schoolwork Optional Now?

https://www.theatlantic.com/technology/2026/04/ai-agents-school-education/686754/
1•Anon84•36m ago•0 comments

Air Powered Segment Display [video]

https://www.youtube.com/watch?v=E1BLGpE5zH0
3•guiambros•37m ago•0 comments

Show HN: Self-improving sandboxed agent with memory and scheduling

https://github.com/Grimm67123/GrimmBot
2•grimm8000•40m ago•1 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•11mo ago

Comments

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