frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Print Graph Paper

https://printgraphpaper.app/
1•artiomartiom•13s ago•0 comments

Internal memos: Microsoft shakes up communications as Nadella makes a push to

https://www.geekwire.com/2026/internal-memos-microsoft-shakes-up-communications-as-nadella-makes-...
1•GloVin•2m ago•0 comments

Voyager is slowly going dark

https://twitter.com/rainmaker1973/status/2103688510758965417
1•taubek•3m ago•0 comments

Microservices are organizational debt disguised as architecture

https://martinfowler.com/bliki/MonolithFirst.html
2•birdculture•12m ago•0 comments

Is your Postgres migration safe or not safe?

https://safenotsafe.dev/
1•vira28•13m ago•0 comments

Biggest design mistake I made when we moved OpenClaw to SQLite: using sync db

https://twitter.com/steipete/status/2103648679169257737
1•tosh•13m ago•0 comments

Reverse Engineering Fortinet with Ablation

https://github.com/Ablation-Tool/ablation
1•zellkernel•16m ago•1 comments

Jev4j

https://github.com/maxsumrall/jev4j
1•jsumrall•17m ago•1 comments

Wiki Deep dive into Standard diving dress

https://en.wikipedia.org/wiki/Standard_diving_dress
1•sans_souse•17m ago•0 comments

We asked Seedance, Veo and Kling to spill a glass of water. None of them could

https://humansignal.com/blog/how-to-teach-a-robot-to-water-the-table/
1•ReDeiPirati•33m ago•0 comments

The Library After Dark – a walkable 3D library of 600 public-domain books

https://libraryafterdark.space
2•theaijournalope•35m ago•0 comments

Show HN: Fast image/video viewer for Linux in Rust and gtk4. Carosello

https://github.com/grigio/carosello
1•grigio•35m ago•0 comments

Why I'm Building Muse

https://twitter.com/alexandr_wang/status/2103551714536439951
1•tosh•41m ago•1 comments

Young organs may not be a fountain of youth for recipients

https://www.technologyreview.com/2026/09/25/1145083/young-organs-may-not-be-a-fountain-of-youth-f...
1•joozio•43m ago•0 comments

If we do not stop to help each other, what do we become?

https://blog.codinghorror.com/if-we-do-not-stop-to-help-each-other-what-do-we-become/
3•AndrewDucker•47m ago•1 comments

Anybody has experience with maintaining self hosted Git?

1•tusharmaroo•48m ago•0 comments

Alberta's image as world's only rat-free region shattered by discovery of rat

https://www.theguardian.com/world/2026/sep/25/alberta-canada-rat-patrol
5•pseudolus•55m ago•0 comments

What Is Math's Mysterious Langlands Program About?

https://www.quantamagazine.org/what-is-maths-mysterious-langlands-program-really-about-20260909/
3•signa11•57m ago•0 comments

Thought on how to deal with AI crawlers

https://copepod.dev/human-required
2•meredithbloom•57m ago•0 comments

Isn't it enough just to disconnect bloatware from internet instead of disabling?

https://f-droid.org/packages/io.github.dorumrr.de1984/
2•tukunjil•1h ago•0 comments

It's a Jev's World

https://www.bolna.ai/blog/testing-jev-on-real-phone-calls
3•xan_ps007•1h ago•0 comments

The Sleazy World of Reddit Marketing, Everything Is Fake

https://larslofgren.com/reddit-marketing/
4•landdate•1h ago•0 comments

AI was supposed to hit new grads hard. So far, unemployment data says otherwise

https://arstechnica.com/ai/2026/09/ai-was-supposed-to-hit-new-grads-hard-so-far-unemployment-data...
5•MrDresden•1h ago•2 comments

About Jammertest

https://www.jammertest.no/about/
3•Tomte•1h ago•0 comments

Novelist accused of using AI to write book removed from French prize list

https://www.theguardian.com/books/2026/sep/25/thelyson-orelien-goncourt-prize-france
3•pieterr•1h ago•0 comments

Luhnify – Zero-PII API for ID, Vat and Passport Validation (<100ms)

https://luhnify.com
2•josebermejo•1h ago•0 comments

Show HN: Translate a SVG back to a diagram – drawio

https://zoosky.github.io/accent-draw/
2•akapaka•1h ago•1 comments

LeftOpen – Native macOS menu bar app to see what's on localhost and close it

https://github.com/SonghaiFan/leftopen
2•songhai•1h ago•0 comments

Advice to a Beginning Software Engineer

https://www.seangoedecke.com/advice-to-a-beginning-software-engineer/
2•gfysfm•1h ago•0 comments

Finding the Purpose of Life

https://medium.com/@ravitandon2/the-purpose-of-life-debb9fb2e699
2•ravitandon1990•1h 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!