frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Keel – A conductor, not an agent loop

https://daneb.github.io/keel/
1•danebalia•54s ago•0 comments

Show HN: Doom Compiled into an LLM

https://github.com/physicsrob/torchwright_doom/
1•physicsrob•1m ago•0 comments

Dropbox Data Breach

1•hmate9•3m ago•0 comments

Pebble Index 01 sold as open-source, but proprietary

https://github.com/coredevices/mobileapp/issues/333
1•okso•3m ago•1 comments

Show HN: Terminal-browser – A real browser inside the terminal

https://github.com/zenbu-labs/terminal-browser
2•robpruzan•3m ago•0 comments

Show HN: Super CLI MARIO – a Mario clone for your terminal in zero-dependency Go

https://blog.daviey.com
1•Daviey•5m ago•0 comments

The Conglomerate Premium

https://hypersoren.xyz/posts/conglomerate-premium/
1•handfuloflight•8m ago•0 comments

South Korea opened bidding for a free, unlimited AI chatbot for all citizens

https://thenextweb.com/news/south-korea-free-ai-chatbot-all-citizens-domestic-models
3•quantisan•8m ago•0 comments

An offline code scanner with a Node.js network guard to block cloud leaks

https://simplebeacon.ai/
1•TJP88•8m ago•0 comments

Show HN: PopSQL and SeekWell were shutting down, so I built the replacement

https://saturnsql.com
2•infr88•8m ago•0 comments

RFM analysis: not all 64 R-F-M score combinations map to a segment

https://www.erathos.com/en/blog/rfm-analysis
1•gpaulbagetti•9m ago•0 comments

Pglogs

https://pglogs.dev/
1•handfuloflight•10m ago•0 comments

A Reactive JavaScript Framework

https://github.com/kwy404/Voodoo.js
1•kwy404•11m ago•2 comments

Hybrix Lab iOS App Is Officially Available on App Store

https://apps.apple.com/ca/app/hybrix-lab/id6770740997
1•nhannguyenkooln•11m ago•0 comments

Tim Cook's Last Day as CEO of Apple

https://twitter.com/tim_cook/status/2094448088199078236
1•skwasimin•12m ago•0 comments

AI hallucinations are infiltrating Australia's parliament

https://www.theguardian.com/australia-news/2026/sep/01/how-misinformation-ai-hallucinations-infil...
1•sbulaev•16m ago•0 comments

SpaceX designed an orbital Vera Rubin. Radiation comes next

https://thenewstack.io/spacex-nvidia-orbital-ai/
4•CrankyBear•17m ago•0 comments

Ask HN: Question regarding open source software

3•skwasimin•17m ago•0 comments

Bot Vs Bot (Philip K. Dicks Defenders and the search for work)

https://spiffworks.substack.com/p/bot-vs-bot
3•danfunk•17m ago•1 comments

Military leaders warn Hegseth against extending Iran war operations

https://www.washingtonpost.com/national-security/2026/08/30/military-leaders-warn-hegseth-against...
6•_djo_•21m ago•0 comments

Muse Code by Meta is out of Beta

https://dev.meta.ai/
4•obahareth•21m ago•1 comments

Monero Inflation Checker – FCMP++

https://www.reddit.com/r/Monero/comments/1w3hcos/monero_inflation_checker_fcmp/
3•Cider9986•23m ago•1 comments

Show HN: *Another* marketplace for returns, overstock, and second-life inventory

https://mintshelf.com/blog/mint-shelf-1-0-launch
3•potatopotaro•24m ago•0 comments

'Freakish Little Animals': Ferret Owners Gather to Celebrate Their Charms

https://www.nytimes.com/2026/08/31/us/ferret-buckeye-bash.html
2•fortran77•25m ago•1 comments

Nestflix

https://nestflix.fun/
3•l3x•26m ago•0 comments

How Does Quantum Mechanics Work?

https://explainers.blog/posts/how-does-quantum-mechanics-work/
1•worldvoyageur•30m ago•0 comments

How A Telescope Mirror Creates an Image [video]

https://www.youtube.com/watch?v=n5YpxFiJf7k
3•nativeit•33m ago•0 comments

TimesFM-3: zero-shot foundation model for multivariate forecasting

http://goog.gle/4x5WGpD
2•nateb2022•34m ago•1 comments

Sony, Warner sue Anthropic, alleging "blatant theft" of intellectual property

https://www.axios.com/2026/08/29/anthropic-sony-warner-music-copyright
5•cdrnsf•36m ago•0 comments

Mongodump Tasks Automate and Schedule MongoDB Backups

https://visualeaf.com/blog/mongodump-tasks-automate-and-schedule-mongodb-backups/
2•fan_drew•36m 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!