frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ClawMoat – Open-source runtime security for AI agents (zero deps, <1ms)

https://github.com/darfaz/clawmoat
1•ildar•2m ago•0 comments

North American Computational Linguistics Open Competition

https://naclo.org/practice.php
2•Antibabelic•6m ago•0 comments

DSGym: A holistic framework for evaluating and training data science agents

https://www.together.ai/blog/dsgym
1•roody_wurlitzer•6m ago•0 comments

Show HN: crai – Get notified when your AI CLI finishes thinking

https://github.com/turtlekazu/crai
1•turtlekazu•7m ago•0 comments

Show HN: What data brokers sell your profile for vs. what ads earn from you

https://data.attentionworth.com/
1•withshakespeare•10m ago•1 comments

Claude Code Remote Control

https://code.claude.com/docs/en/remote-control
1•empressplay•10m ago•0 comments

First British baby born using transplanted womb from dead donor

https://www.bbc.com/news/articles/cvg53xp5857o
1•breve•15m ago•0 comments

Show HN: I tested 50 AI video APIs and built a comparison platform

https://findaivideo.com
2•ludydev•19m ago•0 comments

Socialist Excellence in New York City

https://pluralistic.net/2026/02/24/mamdani-thought/#public-excellence
2•mrkpdl•19m ago•0 comments

Show HN: Workz – Zoxide for Git worktrees (auto node_modules and .env, AI-ready)

https://github.com/rohansx/workz
1•rohansx•20m ago•0 comments

Hatsune Miku Meets Clojure

https://old.reddit.com/r/Clojure/comments/1rck4tr/hatsune_miku_meets_clojure/
1•adityaathalye•21m ago•0 comments

MoltMemory – AI agent memory for Moltbook

https://github.com/ubgb/moltmemory
2•ubgbclaw1•22m ago•2 comments

Letters to a Young Creator

https://letters.stevejobsarchive.com/
2•dvrp•23m ago•0 comments

Strategic choices: When both options are good

https://longform.asmartbear.com/strategic-choices/
1•doppp•25m ago•0 comments

Ask HN: Seeking 5 alpha testers for Sovereign Stack, an AGPLv3 bare-metal NAS OS

1•csomaratne•25m ago•1 comments

Show HN: AgentVoice – Get feedback from AI to improve your MCP

https://voiceofagents.com
1•KenRuf•28m ago•0 comments

How Will OpenAI Compete?

https://www.ben-evans.com/benedictevans/2026/2/19/how-will-openai-compete-nkg2x
1•brettcvz•30m ago•0 comments

Hello – ProofOfConcept

https://poc.bcachefs.org/blog/hello.html
1•Antibabelic•30m ago•0 comments

"Willy's Chocolate Experience" (2024)

https://web.archive.org/web/20240301031453/https://willyschocolateexperience.com/index.html
1•nxobject•30m ago•0 comments

Ask HN: Is it worth doing a startup?

1•zkmon•31m ago•0 comments

Cache-aware prefill–decode disaggregation for 40% faster LLM serving

https://www.together.ai/blog/cache-aware-disaggregated-inference
1•roody_wurlitzer•37m ago•0 comments

Show HN: claude-env – Manage multiple accounts for Claude-code

https://github.com/solomon-b/claude-env
2•solomonb•39m ago•1 comments

Show HN: Sopho - Open Source Business Intelligence Platform

https://github.com/sopho-tech/sopho
2•athultr1997•42m ago•0 comments

Google RankBrain: How Google's AI Changed the Rules of Search

https://repuai.live/en/blog/google-rank-brain
1•bioneisme•45m ago•0 comments

Japan aims for world first in space-based solar power

https://www.asahi.com/ajw/articles/16293144
1•BaudouinVH•46m ago•1 comments

Find where your face appears online

https://eyematch.ai/
2•anetagro•46m ago•1 comments

Show HN: Turn Instagram and TikTok workouts into executable gym routines

1•chetansorted•48m ago•0 comments

The command line didn't die. It was waiting

https://getcoai.com/article/the-command-line-didnt-die-it-was-waiting/
1•djabatt•48m ago•0 comments

Ed Zitron loses his mind annotating an AI doomer macro memo

https://www.dropbox.com/scl/fi/1p1n0y1ip48ianok9dvbp/Annotation-The-Global-Intelligence-Crisis.pd...
2•ossa-ma•48m ago•0 comments

Show HN: PickOrCraft – AI photo studio, train your model, any aesthetic

https://www.pickorcraft.com/
1•yaswanthadi•50m 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•10mo ago

Comments

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