frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Trovio for Brands

https://brands.gotrovio.com/auth/signup
1•derrickshowers•42s ago•1 comments

Navigating abstraction in the age of machine-generated code

https://www.khola.blog/p/the-top-down-bet-needs-a-bottom-up
1•nkhola•1m ago•0 comments

Granola Discloses a 1 Click Session Takeover of Its Notes App

https://docs.granola.ai/help-center/policies/security-contributions/desktop-app-navigation-vulner...
1•bearsyankees•1m ago•1 comments

Sleight – Playwright for native Mac apps

https://sleight.sh/
1•imazio•1m ago•0 comments

Ghost Cut – or why Cut and Paste is broken everywhere

https://ishmael.textualize.io/blog/ghost-cut/
1•willm•1m ago•0 comments

Hologram works. Elixir runs in the browser

https://hologram.page/blog/backing-hologram
3•lawik•2m ago•0 comments

Libx11-Compat Is Working to Implement Xlib Atop SDL for Wayland, macOS, Android

https://www.phoronix.com/news/libx11-compat
1•arto•3m ago•0 comments

If any of you are on Product Hunt, I would love an upvote on my product today

1•is_dev_active•3m ago•0 comments

"We have information that Moonshot distilled Fable for the development of K3"

https://twitter.com/mkratsios47/status/2079933645888880708
1•softwaredoug•3m ago•0 comments

Rewriting the Futhark Type Checker

https://futhark-lang.org/blog/2026-07-21-rewriting-the-type-checker.html
2•fanf2•3m ago•0 comments

Physical Media vs. Digital Media

https://itsjustchronicallyoffline.bearblog.dev/physical-media-vs-digital-media/
1•speckx•3m ago•0 comments

Ernst's Paradox

https://www.futilitycloset.com/2026/07/20/ernsts-paradox/
1•surprisetalk•5m ago•0 comments

Ethics Is the Skill That Matters Most Now

https://agonora.com/blog/ethics-most-important-skill
1•mw67•5m ago•0 comments

Show HN: Trifle – Open-source analytics that stores answers, not events

https://trifle.io/
1•iluzone•6m ago•0 comments

Towards a Theory of Bugs: The Ruliology of the Unexpected

https://writings.stephenwolfram.com/2026/07/towards-a-theory-of-bugs-the-ruliology-of-the-unexpec...
1•Brajeshwar•6m ago•0 comments

I Built a Private Genomics Study with Stoffel MPC

https://vishakh.blog/2026/07/21/i-built-a-private-genomics-study-with-stoffel-mpc/
6•vishakh82•9m ago•0 comments

OpenAI Models Escaped and Hacked a Company in Cybersecurity Test Gone Wrong

https://www.wsj.com/tech/ai/openai-models-escaped-and-hacked-a-company-in-cybersecurity-test-gone...
2•flippyhead•10m ago•0 comments

Show HN: DataParade – generate dataflow diagrams from code for risk assessments

https://github.com/DataParade-io/dataparade-cli
3•dpdave•10m ago•0 comments

Most Americans Say "Not in My Backyard" to AI Data Centers

https://www.redfin.com/news/ai-data-centers-opposition-education-benefit/
5•toomuchtodo•10m ago•0 comments

OpenNode – Bitcoin Payment Processor

https://opennode.com/
8•gurjeet•11m ago•0 comments

A conversation becomes an AI agent's memory

https://squidler.io/blog/agent-memory-2-capture
2•tidbeck•12m ago•0 comments

How many Tokens are you worth?

https://howmanytokensareyouworth.com/
2•theshaun•12m ago•0 comments

Rescuing satellites is harder than it looks

https://theconversation.com/rescuing-satellites-is-harder-than-it-looks-a-growing-space-junk-prob...
2•speckx•13m ago•0 comments

How to Read a Painting

https://sheets.works/data-viz/how-to-read-a-painting/
8•darshi7331•13m ago•0 comments

Show HN: Cosyra – run cloud coding agents from your phone

https://cosyra.com/
2•adamisnotroman•14m ago•0 comments

DesignStudio: The AI-native code editor and computational design IDE

https://www.spatialbound.com/ide
4•mibrahimSB•14m ago•0 comments

Tahr Security Skills

https://www.skills.sh/tahr-security/tahr-security-skills
2•zilbon•16m ago•0 comments

Show HN: Foomchat – an AI chat where the interface is whatever you want

https://foomchat.com
2•scrygl•16m ago•0 comments

A $6.49 Cloud VM Became One of Our Highest-Ranked Clusters

https://webbynode.com/articles/bang-for-buck-1-how-a-6-49-cloud-vm-became-one-of-our-highest-rank...
4•gsgreen•17m ago•0 comments

Raspberry Pi, Picos, Hats Humble Book Bundle

https://www.humblebundle.com/books/picos-hats-and-more-raspberry-pi-press-books
4•teleforce•18m 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!