frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MacPad: Touch Mac in iPad

https://github.com/dcmmc/macpad
1•dadoum•9m ago•1 comments

Ant Group releases finance-focused Ling-3.0-flash-Fin

https://artificialanalysis.ai/articles/ant-group-releases-finance-focused-ling-3-0-flash-fin
1•gmays•11m ago•0 comments

New method to minimize immunosuppression after organ transplantation

https://www.nature.com/articles/s43856-026-01906-x
1•pvaldes•13m ago•1 comments

The 'AI Safety' Movement Is Making AI Less Safe

https://reason.com/2026/09/22/the-ai-safety-movement-is-making-ai-less-safe/
8•Bostonian•14m ago•0 comments

Show HN: Livenerf – a benchmark for whether Opus 5.5 gets nerfed

https://github.com/ninjahawk/livenerf
2•ninjahawk1•16m ago•0 comments

Adding side drawer with workspace concepts to rio (rust terminal) like cmux has

https://github.com/raphamorim/rio/pull/1954
1•cs1996•16m ago•0 comments

The Jagged Frontier of Jev 1.13

https://docs.typesafe.ai/model-jaggedness/jev-1.13
2•dhorthy•21m ago•0 comments

Mercury Is Shrinking, and Faster Than We Thought

https://www.nytimes.com/2026/09/11/science/space/mercury-shrinking-wrinkles.html
2•reaperducer•23m ago•1 comments

Swarm Scaling

https://www.tobyord.com/writing/swarm-scaling
1•gmays•27m ago•0 comments

A WIP Lego Sorter: Maybe a million pounds is possible [video]

https://www.youtube.com/watch?v=9G2R9ZcgAhA
3•Teever•27m ago•0 comments

Artificial Intelligence in Research

https://tmodrzyk.github.io/blog/2026/artificial-intelligence-in-research/
1•jeremyscanvic•28m ago•0 comments

CNN Mood 'Like a Funeral' as Paramount Acquires Warner Bros

https://variety.com/2026/tv/news/cnn-funeral-path-hazy-paramount-wins-warner-1236872113/
5•westurner•29m ago•4 comments

Show HN: Palette, a Figma plugin that turns one color into a whole UI system

https://www.figma.com/community/plugin/1682163756621093164
1•jeffmahacek•32m ago•0 comments

AUGUSTOSFACES

https://augusto.at/augustosfaces/
1•luu•33m ago•0 comments

What is the World's Loveliest Language

https://www.economist.com/graphic-detail/2024/01/11/what-is-the-worlds-loveliest-language
1•andsoitis•35m ago•0 comments

Xounds Redux and FruitMenu Redux

https://totallynotmalicious.com/software
1•rgovostes•38m ago•1 comments

Design your programming languages right (2024)

https://blog.veritates.love/design-it-right
1•birdculture•39m ago•0 comments

U.S. Government seizes 54-pound Martian meteorite sold at auction last year

https://www.nytimes.com/2026/09/20/arts/who-owns-this-chunk-of-mars-jeanine-pirro-says-america-do...
5•bookofjoe•39m ago•3 comments

A Taxonomy for Navigating the Global Landscape of AI Regulation (2025)

https://dl.acm.org/doi/10.1145/3715275.3732059
1•mooreds•41m ago•0 comments

The 38 most influential Bluesky posters

https://bsky38.com/
2•mooreds•41m ago•0 comments

UN General Assembly: Trump renames AI to Super Intelligence

https://www.washingtonpost.com/technology/2026/09/22/trump-says-hes-renaming-ai-super-intelligence/
4•f1ay•42m ago•4 comments

The Mac Mini M6 is the fastest way to.. emulate a Windows 98 Pentium II machine

https://nyaa.sh/reviews/mac-mini-m6-emulation
1•petaleverbloom•43m ago•0 comments

Show HN: A fast, offline Markdown viewer for macOS built in Swift

https://github.com/temir-dev/tims-markdown-reader
2•tim_tairov•46m ago•0 comments

About Impersonation Risk Detection

https://support.apple.com/en-us/127906
1•impish9208•46m ago•0 comments

Trump orders AI rebrand as "super intelligence"

https://www.axios.com/2026/09/22/trump-ai-super-intelligence-rebrand
6•kirab•49m ago•2 comments

Neo-Median Voter Model

https://www.betonit.ai/p/the-neo-median-voter-model
2•efavdb•50m ago•0 comments

Simple-jev by featherless AI – Turn context into clear decisions

https://simple-jev.featherless.ai/
1•Risyandi94•51m ago•1 comments

How to Escape the Algorithm

https://raahelbaig.com/entry/intentional-internet/
1•raahelb•52m ago•0 comments

What Does Childhood Trauma Have to Do with White Supremacy?

https://www.psychologytoday.com/us/blog/the-shaping-power-of-experience/202609/what-does-childhoo...
4•rendx•58m ago•2 comments

Inspiring Applications of Spin Model Checker

https://spinroot.com/spin/success.html
1•vitalnodo•59m 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!