frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Proposed Architecture for Next Generation Payment Infrastructure

https://zenodo.org/records/21991408
1•sangamdas•8m ago•0 comments

OpenAI and Anthropic in price war as Chinese AI rivals gain ground

https://www.ft.com/content/32a70a3c-7d28-40b4-808e-36edb58c7d01
1•mgh2•12m ago•1 comments

Arctype – An AI workspace that builds documents, apps, and handles email

https://arctype.org/
1•AdamNeto•14m ago•1 comments

Show HN: Roadmark – roadmaps that branch instead of overwriting the plan

https://yourroadmark.com
1•alekstret•14m ago•0 comments

When I worked at Apple, I remember seeing code that was 15 years old

https://twitter.com/sean_geiger/status/2089487682305216534
3•tosh•16m ago•0 comments

GenOffice fork that works with any local LLM instead of a cloud account

https://github.com/douglas168/open-genoffice
2•douglas168•18m ago•0 comments

I'm done coding with AI [video]

https://www.youtube.com/watch?v=2ZU3j4GQ4K8
1•mike-the-brain•18m ago•0 comments

What's behind the rise of teens spying for Russia?

https://mssv.net/2026/08/13/whats-behind-the-rise-of-teens-spying-for-russia/
1•adrianhon•21m ago•0 comments

Show HN: Dozenal – Daily Spatial Math Puzzle

https://dozenal.game
3•sarreph•22m ago•0 comments

Breakthrough as scientists use AI to predict how breast cancer could progress

https://www.independent.co.uk/news/health/breast-cancer-diagnosis-cure-ai-symptoms-b3034278.html
1•01-_-•23m ago•0 comments

GitHub runner related pages down

2•jahnu•24m ago•0 comments

Show HN: Phi – A browser-native and desktop game engine

https://github.com/float64co/Phi
1•LukeB42•25m ago•0 comments

Just Show Me the Prompt

https://www.leadinginproduct.com/p/just-show-me-the-prompt
1•benkan•30m ago•1 comments

The controversial story of the North American raccoons wreaking havoc in Germany

https://www.bbc.com/future/article/20260814-the-true-story-of-how-germany-became-overrun-with-nor...
2•t-3•30m ago•0 comments

Who Is Lucky?

https://www.politie.nl/nieuws/2026/augustus/17/een-heel-leven-maar-geen-naam-wie-herkent-deze-man...
1•bartkappenburg•33m ago•0 comments

Slag: Scriptable, hot-reloadable GPUI framework

https://tangled.org/liminal.rip/slag
1•nerdypepper•34m ago•0 comments

Screentime for kids not necessarily bad

https://www.sciencedaily.com/releases/2026/08/260815064803.htm
2•djdule•37m ago•2 comments

Show HN: Vianta Connect – file transfer and clipboard sync for Android and Mac

https://play.google.com/store/apps/details?id=com.vianta.android&hl=en_US
1•SUSHANTH_21•40m ago•0 comments

The defense revolving-door, Silicon Valley edition

https://thebulletin.org/2026/08/the-defense-revolving-door-silicon-valley-edition/
1•jonbaer•40m ago•0 comments

RL-based robot arm manipulation with Isaac Lab

https://www.hackster.io/agilexrobotics/sim2real-deployment-rl-based-grasping-using-piper-arm-8ae8bb
1•AGX_NERO•42m ago•0 comments

Elm for PostgreSQL

https://twitter.com/evancz/status/2089617868694421564
2•garyclarke27•44m ago•0 comments

Show HN: There are many factories, but this one's *yours

https://github.com/mikaelweiss/penguin
1•mikaelweiss•48m ago•0 comments

Decentralized Universal Computer

https://github.com/Skills03/c9
1•RIshabh235•48m ago•1 comments

What if the AI capex bubble may not be a bubble after all?

https://www.afr.com/technology/sam-altman-is-being-proved-right-about-the-economics-of-ai-2026081...
1•mnoorani•48m ago•1 comments

NASA's Starling Mission Opens New Frontiers in Space Navigation

https://www.nasa.gov/blogs/smallsatellites/2026/08/17/nasas-starling-mission-opens-new-frontiers-...
1•rbanffy•50m ago•0 comments

Paperwing

https://paperwing.dev/
1•tosh•51m ago•0 comments

Zotero 10

https://www.zotero.org/blog/zotero-10/
2•pretext•54m ago•0 comments

CartLens

https://www.cartlens.co/
1•watat83•1h ago•0 comments

Nvidia CMP170HX driver 64GB RAM unlocking patch

https://github.com/amoghmunikote/cmpunlocker
3•ValdikSS•1h ago•1 comments

Forced System

1•shencry•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!