frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

If society had a scorecard, what would be on it?

1•baptou12•1m ago•0 comments

Edible Plants Wiki

https://edibleplants.wikioasis.org/wiki/Main_Page
1•altilunium•9m ago•0 comments

Mnemory – Persistent memory for AI agents

https://github.com/fpytloun/mnemory
1•genunix64•12m ago•1 comments

Show HN: WebAssembly Interpreter in a Header

https://github.com/lifthrasiir/wah
1•lifthrasiir•13m ago•0 comments

Codeonix: Python task automation for your desktop – with AI, 14 triggers

https://codeonix.app
2•hassananayi•13m ago•1 comments

A month after being laid off, I wrote the story I needed to make sense of it

https://anushkakarmakar.substack.com/p/1-why-did-i-choose-to-run-that-marathon
1•thinkingkite•14m ago•0 comments

Why CFOs Need a Consensus Hardening Protocol for AI Decisions

https://cubiczan.substack.com/p/why-cfos-need-a-consensus-hardening
1•cubiczan•17m ago•0 comments

As a Ukrainian journalist, I've covered the US for 20 years. I find it shocking

https://www.theguardian.com/world/2026/apr/30/as-a-ukrainian-journalist-ive-covered-the-us-for-20...
1•YeGoblynQueenne•18m ago•0 comments

Graphene is on track to deliver on its promises (2019)

https://www.nature.com/articles/s41565-019-0557-0
1•simonebrunozzi•19m ago•0 comments

Livecodes – A Code Playground That Just Works

https://github.com/live-codes/livecodes
1•modinfo•29m ago•0 comments

Fujian Tulou

https://en.wikipedia.org/wiki/Fujian_tulou
1•simonebrunozzi•31m ago•0 comments

KMRI: A chunk-based compression format for MRI-style 3D volumes

https://github.com/Kiamehr5/KMRI
1•kiamehr•32m ago•0 comments

Ripple – the elegant TypeScript UI framework

https://www.ripple-ts.com/
2•modinfo•35m ago•0 comments

SMS blaster rising in Switzerland (French)

https://www.rts.ch/info/suisse/2026/article/sms-blaster-l-arnaque-aux-fausses-amendes-se-repand-d...
2•kuon•36m ago•0 comments

Man tar why we use -f

1•modinfo•39m ago•0 comments

Getting Gooier

https://contraptions.venkateshrao.com/p/getting-gooier
1•jger15•39m ago•0 comments

The Lore of Sam Altman Is Being Tested Like Never Before

https://www.wsj.com/tech/ai/the-lore-of-sam-altman-is-being-tested-like-never-before-968227ea
1•JumpCrisscross•41m ago•0 comments

Wikipedia in the Terminal

https://github.com/ImpulseDoes/wiki
2•thximpulse•45m ago•1 comments

The Bureaucratic Escalator and how it operates

https://profserious.substack.com/p/the-bureaucratic-escalator
2•idw•50m ago•1 comments

Does APL Need a Type System? (2018) [video]

https://www.youtube.com/watch?v=z8MVKianh54
1•tosh•54m ago•0 comments

Text Files as a User Interface

https://ratfactor.com/cards/text-files-as-ui
1•dev_hugepages•55m ago•0 comments

Matt Mullenweg thinks WordPress is in decline. He may be right

https://werd.io/matt-mullenweg-thinks-wordpress-is-in-decline-he-may-be-right/
2•vinhnx•56m ago•1 comments

Valuation Spaces and Relativisation: The Lambda Calculus Example

https://practal.com/blog/valuation-spaces-and-relativisation/
1•auggierose•56m ago•0 comments

ChatGPT Wrestles with Its Most Chilling Conversation: How Do I Plan an Attack?

https://www.wsj.com/us-news/chatgpt-mass-shooting-openai-78a436d1
3•vednig•57m ago•0 comments

Show HN: Speq – A collaborative web-based repository for your product's spec

https://getspeq.com
1•iowes•1h ago•0 comments

Made in China means made in Yiwu

https://mondediplo.com/2026/05/08yiwu
1•JumpCrisscross•1h ago•0 comments

Do LLMs Reason, or Do They Just Predict Math Text?

https://daridor.blog/2026/05/01/do-llms-reason-or-do-they-just-predict-math-text/
3•beagle3•1h ago•1 comments

Investors pile into clean energy as Iran war drives push for energy security

https://www.ft.com/content/9921f2b5-c910-4cec-a50f-cad453935a1a
4•JumpCrisscross•1h ago•0 comments

MCPages

https://github.com/NoahCzelusta/mcpages
1•swimninja247•1h ago•4 comments

Thoth – open-source Local-first AI Assistant

https://github.com/siddsachar/Thoth
2•sydsachar•1h 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!