frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A domain can now say it is for sale, in DNS

https://specification.website/spec/foundations/for-sale-dns/
1•shaunpud•54s ago•0 comments

Show HN: Patchward-check – list the test expectations a diff removes

https://pypi.org/project/patchward-check/
1•kolesnikov-arch•1m ago•0 comments

A Generation on Antidepressants Searches for the Exit

https://www.nytimes.com/2026/08/07/opinion/antidepressants-ssris-side-effects-drugs-maha.html
1•bookofjoe•10m ago•1 comments

Sleep Alters the Velocity of Physiological Brain Pulsations in Humans

https://advanced.onlinelibrary.wiley.com/doi/10.1002/advs.202503745
1•cs1996•11m ago•0 comments

Hacker News MCP

https://hackernews.marcokittel.de
1•evlute•11m ago•1 comments

Downfall

https://downfall.page/
2•conferza•13m ago•0 comments

ROMbug Onion: A Tor Browser with Onion Routing, Privacy and a Separate Identity

https://rombugonion.com/
1•chainbuilder•14m ago•0 comments

Superdna – analyze your DNA raw file locally

https://github.com/Wolg/superdna
1•wolg•14m ago•0 comments

How Cleaning up space debris could grow to become a big business

https://www.cnbc.com/2026/08/08/space-debris-junk-spacex-rocket-moon-crash.html
1•ck2•14m ago•1 comments

The Caretakers

https://leejo.github.io/2026/08/08/caretakers/
1•leejo•15m ago•0 comments

Marimomono: A Marimo Simulator

https://www.zeldas.page/marimo
1•zeldahessler•18m ago•0 comments

MCP Is Dead; Long Live MCP – Revisited

https://chrlschn.dev/blog/2026/08/mcp-is-dead-long-live-mcp/
1•CharlieDigital•22m ago•0 comments

They don't make 'em like Sublime Text anymore

https://dbushell.com/2026/08/07/sublime-text/
2•vinhnx•24m ago•1 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
1•fortran77•25m ago•1 comments

Ask HN: Is Ask HN Shrinking?

4•keiferski•28m ago•3 comments

Show HN: My AI agent built and shipped a browser game on its own

https://overlk.itch.io/afterimage
2•yoopla_dev•28m ago•0 comments

Building Groovie, an Advanced Web-Based Drum Machine / Beat Sequencer

https://pointersgonewild.com/2026-08-06-building-groovie-an-advanced-web-based-drum-beat-sequencer/
1•maxime_cb•31m ago•0 comments

Cave of the Crystals

https://en.wikipedia.org/wiki/Cave_of_the_Crystals
2•ColinWright•32m ago•0 comments

Git, CRDT, Markdown

https://replicated.live/blog/crdt.html
1•gritzko•33m ago•0 comments

A skills-based pathway to licensure is ordered in New Mexico [pdf]

https://web.archive.org/web/20260805102345/https://nmcourts.gov/wp-content/uploads/2026/07/Order-...
1•firefax•33m ago•0 comments

Ex-Amazon VP on What Gets You Promoted

https://www.youtube.com/watch?v=Gf0pR4_bv-o
1•tcp_handshaker•34m ago•0 comments

How software is changing – and how OpenAI is building the future

https://every.to/p/openai-infrastructure
1•samuel_kx0•37m ago•1 comments

Show HN: A free DOCX editor with MCP server for editing

https://revise.io/help/mcp-server
3•artursapek•41m ago•0 comments

Linux 7.3 to support Logitech HID++ 2.0 reprogrammable button support

https://www.phoronix.com/news/Linux-7.3-HIDPP-Reprogrammable
2•teleforce•42m ago•0 comments

Show HN: Ewwii, An extensible widget system for all of Linux

https://github.com/Ewwii-sh/ewwii
1•byson94•43m ago•0 comments

Laravel 13.24, Filament 90% faster, managed queues on Cloud – ADWL #063

https://a-day-with-laravel.happyto.dev/p/laravel-13-24-filament-90-faster-managed-queues-on-cloud...
1•happytodev•45m ago•0 comments

Gateway 2000's hilariously bad ads in the 90s (Part II)

https://buttondown.com/suchbadtechads/archive/gateway-2000-part-2/
3•rfarley04•56m ago•0 comments

Milankovitch Cycles

https://en.wikipedia.org/wiki/Milankovitch_cycles
2•cl3misch•58m ago•0 comments

Ask HN: Sane casual family co-op game on mobile?

4•minusf•59m ago•2 comments

Show HN: A Free Paper Trading Platform with AI Coaching for Global Markets

https://paper-trader.org
1•paperTraderOrg•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!