frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Self-Updating Screenshots

https://interblah.net/self-updating-screenshots
1•bjhess•6m ago•0 comments

Open grid data has a public benefit

https://nworbmot.org/blog/open-grid-data.html
1•lyoncy•7m ago•0 comments

Airprompt – SSH into your Mac from your phone for AI agent prompts

https://www.npmjs.com/package/airprompt
2•hatefrad•9m ago•1 comments

Show HN: A community powered global network of probes

https://github.com/jsdelivr/globalping
1•jimaek•11m ago•0 comments

The Scrum-to-POM Transition Is a Role Repositioning Event

https://age-of-product.com/scrum-to-pom-transition/
1•swolpers•13m ago•0 comments

Pytest-cloudreport – local HTML reports and flaky-test detection for pytest

https://github.com/ahmad212o/pytest-cloudreport
1•ahmad212o•14m ago•0 comments

Blueprint: AI Hardware Design

https://www.blueprint.am/
1•handfuloflight•17m ago•0 comments

US is making Europe pay dearly for its half-hearted electrification

https://www.programmablemutter.com/cp/195461224
1•hackandthink•19m ago•0 comments

The reporters at this news site are AI bots. OpenAI's super PAC is funding it

https://twitter.com/TheMidasProj/status/2047692328396034490
1•pretext•24m ago•0 comments

San Francisco must preserve the birthplace of the Mission burrito

https://www.sfchronicle.com/food/restaurants/article/el-faro-mission-burrito-creator-22206173.php
3•divbzero•24m ago•0 comments

Enterprises Are Rethinking Kubernetes

https://www.infoworld.com/article/4161056/enterprises-are-rethinking-kubernetes.html
2•milkglass•27m ago•0 comments

Talk a stranger for fun or everything else

https://bakbak.fun/
3•chintan39•39m ago•1 comments

The West Forgot How to Make Things. Now It's Forgetting How to Code

https://techtrenches.dev/p/the-west-forgot-how-to-make-things
15•milkglass•42m ago•3 comments

The Coding Assistant Breakdown: More Tokens Please

https://newsletter.semianalysis.com/p/the-coding-assistant-breakdown-more
1•gmays•44m ago•0 comments

WTF Are Metaballs?

https://www.youtube.com/watch?v=LW03EEKjy9o
2•gdubs•45m ago•3 comments

Iran war hits Dubai chocolate pistachio supplies

https://www.ft.com/content/438ef32a-59e5-41b3-a0da-569716385347
1•KnuthIsGod•52m ago•0 comments

CO operating system age-verification open-source exemption doesn't include Linux

https://twitter.com/LundukeJournal/status/2048199650117554678
2•gasull•55m ago•0 comments

Why Rome Never Industrialized [video]

https://www.youtube.com/watch?v=uR8-AF6NJcc
2•Khaine•1h ago•1 comments

A Taiwanese Vestige in the Geedge Supply Chain

https://interseclab.org/research/madlink-a-taiwanese-vestige-in-the-geedge-supply-chain/
3•gslin•1h ago•0 comments

Show HN: Implit – Catch fake AI-generated dependencies

https://github.com/build-neurall/implit
1•neurall-build•1h ago•0 comments

Modern, Simple, Web Framework in C. REST, Templates, SSL, Metrics

https://github.com/briandowns/libpapago
1•ieska328•1h ago•0 comments

Rootless virtual machines with KVM and QEMU (2024)

https://developers.redhat.com/articles/2024/12/18/rootless-virtual-machines-kvm-and-qemu
1•adityaathalye•1h ago•0 comments

A suspect is in custody after Trump is rushed from correspondents' dinner

https://www.npr.org/2026/04/25/nx-s1-5799544/trump-white-house-correspondents-dinner
6•qmr•1h ago•0 comments

The American Wealth Curve: How the Gap Widens 8x Between Age 25 and 65

https://efficientdollar.com/blog/wealth-curve-by-age/
4•lundj•1h ago•0 comments

Aube – a fast Node.js package manager

https://aube.en.dev
1•microflash•1h ago•0 comments

How to train your brain to see possibility instead of doom

https://www.theguardian.com/books/2026/apr/19/how-to-train-your-brain-to-see-possibility-instead-...
3•1659447091•1h ago•0 comments

Revocation

https://www.potaroo.net/ispcol/2026-04/revocation.html
1•aragilar•1h ago•0 comments

First Paid Subscribers on Mymarks.net

https://mymarks.net/
2•shozzipen•1h ago•0 comments

Simple Sabotage of Agents

https://alexschroeder.ch/view/2026-03-12-agent-sabotage
1•Tallain•1h ago•0 comments

AGPLv3§74 Empowers Users to Thwart Badgeware Like OnlyOffice

https://sfconservancy.org/blog/2026/apr/16/badgeware-onlyoffice-nextcloud-affero-gpl/
47•pabs3•2h ago•4 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_•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!