frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We Pushed CDC into Postgres

https://www.snowflake.com/en/blog/engineering/postgres-to-snowflake-replication-mirroring/
1•craigkerstiens•42s ago•0 comments

Script Slayer

https://studioaaa.com/script-slayer/
1•skibz•1m ago•0 comments

Vectorise.me – image-to-SVG API with an MCP server for AI agents

https://vectorise.me/developers
1•jonkary•3m ago•0 comments

So, you want to make a game engine (2023)

https://lisyarus.github.io/blog/posts/so-you-want-to-make-a-game-engine.html#part-3
2•kugurerdem•3m ago•0 comments

Show HN: Flashpaper – Self-destructing secret sharing with no database

https://flashpaper.app/
2•minpym•3m ago•1 comments

Everyone Romaine Calm [video]

https://www.youtube.com/watch?v=_9blI4QBSjs
1•mooreds•5m ago•0 comments

Investigate every security event with an AI agent, without the frontier bill

https://www.datadoghq.com/blog/ai/ai-security-detection-pipeline/
1•ngrislain•6m ago•0 comments

Show HN: News headline inside coding agent

https://github.com/dannylee1020/headline
1•dannylee1020•7m ago•0 comments

Why Aren't There C Conferences? (2018)

https://nullprogram.com/blog/2018/11/21/
1•downbad_•7m ago•1 comments

Setup Script Should Support Git Worktrees

https://piechowski.io/post/setup-script-git-worktrees/
2•speckx•7m ago•0 comments

The 2026-07-28 MCP Specification Release Candidate

https://blog.modelcontextprotocol.io/posts/2026-07-28-release-candidate/
1•oss-dev•7m ago•0 comments

Secure email provider mailbox.org does not honor DMARC (German)

https://userforum.mailbox.org/topic/10676-mailbox-org-akzeptiert-gefalschte-mails-trotz-spf-fail-...
2•asimops•8m ago•0 comments

Is Manticore harder to self-host than Meilisearch? We tested both

https://old.reddit.com/r/selfhosted/comments/1v6dfb0/is_manticore_really_harder_to_selfhost_than/
1•snikolaev•9m ago•0 comments

Peter Thiel: The Education of a Libertarian

https://www.cato-unbound.org/2009/04/13/peter-thiel/education-libertarian/
1•ascent817•10m ago•0 comments

Where Does the Foundation Come From?

https://queue.acm.org/detail.cfm?id=3831359
2•rbanffy•11m ago•0 comments

AI in Linux

https://drewdevault.com/blog/AI-in-Linux/
2•signa11•12m ago•0 comments

SOTA on the hardest AI memory benchmark (BEAM, 10M tokens), with a smaller model

1•johnnymakes•13m ago•1 comments

Rear center fuel tank adds roughly 20k liters and extends range by 1k NM

https://www.airbus.com/en/newsroom/press-releases/2026-06-worlds-longest-range-aircraft-the-airbu...
2•r2sk5t•13m ago•0 comments

SpaceX at $100 could mean investors see zero value in its AI

https://www.latimes.com/business/story/2026-07-27/spacex-at-100-could-mean-investors-see-zero-val...
3•1vuio0pswjnm7•14m ago•0 comments

Kedge Quickstart

https://kedge.dev/docs/quickstart
1•bcjordan•14m ago•0 comments

Me in the Notes App

https://time.com/article/2026/07/24/meet-me-in-the-notes-app/
2•speckx•14m ago•0 comments

Show HN: A terminal editor that can discuss with OpenCode and Pi

https://sollawen.github.io/microNeo/
1•sollawen•15m ago•0 comments

Is an AI company buying up all the used books? (I don't think so, not this time)

https://charliebecker.substack.com/p/is-an-ai-company-buying-up-all-the
1•rahimnathwani•16m ago•0 comments

How Terence Tao's insight translates to how we need to think about the economy

https://wilsoniumite.com/2026/07/28/how-terence-taos-metamathematical-insight-translates-to-how-w...
2•Wilsoniumite•17m ago•1 comments

VistaRama65

https://www.in70mm.com/presents/library/orphan/2026_forever/about/index.htm
1•Teever•17m ago•0 comments

Qantas plane flies for more than 24 hours in record-breaking flight

https://www.theguardian.com/business/2026/jul/28/qantas-plane-flies-for-more-than-24-hours-in-rec...
2•tosh•17m ago•0 comments

Faulty Reward Functions in the Wild (2016)

https://openai.com/blog/faulty-reward-functions
1•_vk_•19m ago•0 comments

Harmony Explained: Progress Towards a Scientific Theory of Music (2012)

https://arxiv.org/abs/1202.4212
9•surprisetalk•19m ago•0 comments

Show HN: PidgeIoT – open-source IoT/Embedded device management for all (free*)

https://pidgeiot.com/
2•Voxorin•20m ago•1 comments

Redev – AI chat assistant for React DevTools

https://chromewebstore.google.com/detail/redev-–-ai-chat-assistant/ojiiafcaodjlfegglkfgokgebgcf...
1•denniscual•20m 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!