frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PDFBoss – parse 10k pdf pages/s with Python

https://pdfboss.dev
1•ransomware•42s ago•0 comments

The take-off in African solar that official statistics can't yet see – Ember

https://ember-energy.org/latest-insights/the-take-off-in-african-solar-that-official-statistics-c...
1•xbmcuser•2m ago•0 comments

Scientists build tiny robots without motors that can fly using sound waves alone

https://www.livescience.com/technology/robotics/scientists-build-tiny-robots-without-motors-that-...
1•n1b0m•2m ago•0 comments

Ask HN: A translation pipeline that doesn't chew up long HTML pages

1•lym11248•4m ago•0 comments

P(Kill-Switch|Detection)

https://www.lesswrong.com/posts/tvaQniyER4BmsQpbq/p-kill-switch-or-detection
1•kp1197•4m ago•0 comments

Cancelation Terminology

https://matklad.github.io/2026/08/31/cancelation-terminology.html
1•surprisetalk•4m ago•0 comments

All Grand Canyon hotels to close after flash floods, with no reopening date

https://www.sfchronicle.com/outdoors/article/grand-canyon-hotels-water-22410294.php
1•bookofjoe•5m ago•1 comments

numba-enzyme: Automatic differentiation of Numba functions

https://github.com/EnzymeAD/numba-enzyme
1•cl3misch•6m ago•0 comments

Ask HN: How did you improve agent's output readability?

1•futurecat•6m ago•0 comments

A Sword, a Surrender, and a Text to End a Twelve-Year Rabbit Hole

https://brianketcham786410.substack.com/p/a-sword-a-surrender-and-a-text-to
1•goles•8m ago•0 comments

Why Chinese Daily Life Vloggers Are Exploding on YouTube [video]

https://www.youtube.com/watch?v=-znk0dg59cA
1•acqbu•10m ago•0 comments

The Invisible Layers Holding Games Back [video]

https://www.youtube.com/watch?v=s5qKN2Yxaok
1•softwaredoug•10m ago•0 comments

Why good local decisions add up to a bad global one

https://www.thesignalist.io/s/the-silo-paradox/
1•cirio•13m ago•0 comments

A plugin that converts any DAW to 3D

https://main.audiocube.app/space
1•noahfk•14m ago•1 comments

I wish we had more time

https://kg.dev/thoughts/more-time
1•kashnote•14m ago•0 comments

Instinct.co

https://instinct.co/
1•abricq•14m ago•0 comments

A milestone in expanding access to AI

https://openai.com/index/expanding-access-to-ai-with-chatgpt-ads/
1•tosh•15m ago•0 comments

OpenAI,Anthropic etc. 100 companies call for action to defend against rogue AI

https://techcrunch.com/2026/08/27/openai-anthropic-google-and-100-other-companies-call-for-action...
3•deepmem•17m ago•0 comments

The Lost Art of Carrying Loads

https://www.carryology.com/insights/the-lost-art-of-carrying-loads/
2•surprisetalk•18m ago•0 comments

The Coming Case for Firing Your CIAM Provider

https://ciamweekly.substack.com/p/the-coming-case-for-firing-your-ciam
1•mooreds•19m ago•0 comments

The Art of Leaping Out of Planes to Fight Wildfires

https://www.newyorker.com/magazine/2026/09/07/the-art-of-leaping-out-of-planes-to-fight-wildfires
1•adrianhon•19m ago•0 comments

Grokking Apache Iceberg

https://thingsworthsharing.dev/iceberg/
1•stivikivi•21m ago•0 comments

Tim Cook's last day as Apple CEO

https://finance.yahoo.com/markets/stocks/article/its-tim-cooks-last-day-as-apple-ceo-investors-ar...
3•ludovicianul•22m ago•2 comments

Race to bottom in Indias voice AI market (0.15 cents/min)

https://twitter.com/rajananandan/status/2092952143078490550
2•kinj28•23m ago•0 comments

PyDPainter: A usable pixel art program written in Python

https://pydpainter.org/
1•doener•23m ago•0 comments

Show HN: Hybrids – a daily flower logic puzzle

https://hybrids.rudyp.dev
2•rudyp_dev•25m ago•1 comments

What's the best way to label speakers in a transcript? I measured every option

https://lyonesse.app/blog/speaker-diarization-benchmark.html
1•get-inscribe•27m ago•0 comments

Show HN: Nos4.fun – A functional iOS 4 recreation in the browser

https://github.com/1etu/nos4
2•1etu•27m ago•0 comments

Show HN: A dedicated hub to find, test, and serve LLM adapters

https://aptai.dev
1•ab613•27m ago•0 comments

Show HN: Decispher – persistent engineering context and memory for coding agents

5•iamalizaidi•29m 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!