frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to export ChatGPT to Google Docs without losing formatting [video]

https://www.youtube.com/watch?v=zUzkUI7U-A4
1•quysala12•1m ago•0 comments

AI is reaching new highs with AROM Labs

1•project_silenc•5m ago•0 comments

On Contagion (2019) – Boris Cherny

https://borischerny.com/philosophy/of/programming/2019/09/08/On-Contagion.html
1•tomasyany•5m ago•1 comments

ZuckOff Know when a camera is in the room

https://zuckoff.app/
1•Bluestein•6m ago•0 comments

Forward Deployed Engineers from the Trenches

https://javisantana.com/fde/en/
1•adastral•6m ago•0 comments

Are We Free?

https://unixdad.com/are-we-really-free/
1•lignux•7m ago•0 comments

Show HN:Linux2Win Auto-detect Linux disks, project Ext2/3/4 as Windows folders

https://github.com/APS-PPR-2016/Linux2Win
1•aps2016•8m ago•0 comments

Is your translation production-ready: unit-testing your text

https://languageops.com/blog/unit-test-translation-quality/
1•luxpir•10m ago•0 comments

Show HN: Open Source AI Employees

https://github.com/markfulton/ai-employees
2•DotSauce•10m ago•0 comments

ZuckOff Is a Free App That Sees Meta Glasses Before They See You

https://www.wired.me/story/meta-smart-glasses-detector-app-zuckoff
3•choult•11m ago•0 comments

Pixel Area, a new directory of personal and independent websites

https://pxlarea.com/
1•jyhrow•13m ago•1 comments

How the EU's age-verification app for children would work

https://www.reuters.com/legal/litigation/how-eus-age-verification-app-children-would-work-2026-09...
2•cisc•16m ago•0 comments

Skia Compositor for WPE WebKit and WebKitGTK

https://blogs.igalia.com/carlosgc/2026/09/21/skia-compositor-for-wpe-webkit-and-webkitgtk/
1•pekim•17m ago•0 comments

A thing we may be able to learn from AI

https://wilsoniumite.com/2026/09/21/a-thing-we-may-be-able-to-learn-from-ai/
2•Wilsoniumite•18m ago•0 comments

Zep.js: tiny event pipeline with auto-cleanup, debounce and AbortSignal

https://github.com/marsbos/zep
1•markolb•22m ago•1 comments

Agent Needs an Unknown State

https://www.drjoshcsimmons.com/writing/your-agent-needs-an-unknown-state
1•joshcsimmons•22m ago•0 comments

Security: PolinRider malware detected in two open PRs (#7716, #10321)

https://github.com/shadcn-ui/ui/issues/11971
1•fr0th•24m ago•0 comments

Digital euro makes debut in wholesale financial markets

https://www.ft.com/content/9f57e612-1068-43ab-889a-febad1602c4a
4•thm•28m ago•0 comments

Weather2 – new SQL datasets and multilingual dashboard

1•yahikoyama•29m ago•0 comments

How to Smash the Memory Wall Plaguing High Performance Systems

https://www.nextplatform.com/store/2026/09/16/how-to-smash-the-memory-wall-plaguing-high-performa...
1•rbanffy•30m ago•0 comments

Thomson Reuters: Thomson-1.0-Small

https://huggingface.co/thomsonreuters/Thomson-1.0-Small
4•tosh•31m ago•0 comments

Show HN: Deskies – ambient presence for friends across companies

https://deskies.vercel.app/
1•bchhabra2490•31m ago•0 comments

AI Poster Prompts Improved

https://john.hartnup.uk/2026/09/20/poster-prompts-v2.html
1•ereiamjh•34m ago•3 comments

Frontier Overhangs

https://stratechery.com/2026/frontier-overhangs/
2•swolpers•35m ago•0 comments

New air traffic control failure delays flights at UK airports

https://www.reuters.com/world/uk/delays-uks-manchester-airport-over-air-traffic-control-failure-t...
4•rstreefland•39m ago•0 comments

You have more influence over the future than you think

https://sharif.io/better-future
2•Samin100•39m ago•0 comments

Quantum Gravity, UAPs, Wormholes

https://twitter.com/JackSarfatti/status/2101775865789223054
1•DanielBMarkham•41m ago•0 comments

Linker I/O tricks and their downsides

https://maskray.me/blog/linker-io-tricks-and-their-downsides
1•r4um•42m ago•0 comments

Engineering Memory: Thoughts on learning to memorize first 100 digits of pi

https://gregorygundersen.com/blog/2024/12/21/engineering-memory/
3•fuzzythinker•43m ago•0 comments

Finding Bugs

https://matklad.github.io/2026/09/19/finding-bugs.html
1•r4um•45m 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!