frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Satellite operators are in panic mode due to a worsening launch crisis

https://arstechnica.com/space/2026/08/theres-a-huge-launch-crunch-right-now-and-it-will-probably-...
1•jnord•6m ago•0 comments

S-1 – Independent Company Studies

https://s-1.vercel.app/
1•simonpure•14m ago•0 comments

Unslop my deck – upload slide decks, read less slop

https://unslopmydeck.xyz/
1•fkodom•17m ago•1 comments

What's Better Than Binary? – Advent of Computing Episode 187

https://adventofcomputing.libsyn.com/episode-187-whats-better-than-binary
1•matt_d•23m ago•0 comments

The Benchmarkpocalypse

https://danluu.com/benchpocalypse/
1•cyndunlop•26m ago•0 comments

Show HN: Turtle – Web Browser written from scratch for 2 years

2•coolwulf•27m ago•1 comments

.NET 11 Preview 7 is now available

https://devblogs.microsoft.com/dotnet/dotnet-11-preview-7/
1•Hixon10•28m ago•1 comments

Email Client for the Terminal?

2•ewjloop•28m ago•0 comments

Dial-up internet – made a thing that lets you do it again

https://56k.rip/
1•henrychannel•33m ago•0 comments

Show HN: SacredCal – A 13-month, 364-day calendar built around seven-day cycles

https://sacredcal.one
1•dealancer1•38m ago•1 comments

Three different papers pushed to ArXiv proving same 1986 conjecture; all use AI

https://twitter.com/Quasilocal/status/2089408301427568691
2•pfdietz•41m ago•0 comments

Decoding .heic: How the code works under the hood

https://heic-decoding.vercel.app/
1•suolex•41m ago•0 comments

Nested QR Codes

https://alloc.dev/2026/08/17/nested_qr_codes
1•Retro_Dev•41m ago•0 comments

Você realmente precisa de tudo isso para fazer um site?

https://opuscore.dev/
1•pragidi•44m ago•0 comments

Modular USB-C Hub for Framework Expansion Cards

https://dockframe.com/#
1•maxheyer•45m ago•0 comments

Going AI-native to enhance how humans/agents access ScalarDB and ScalarDL docs

https://medium.com/scalar-engineering/going-ai-native-to-enhance-how-humans-and-agents-access-sca...
2•josh-scalar•45m ago•0 comments

Low-tech animation Niu Lai trounces the Odyssey at Chinese box office

https://www.theguardian.com/world/2026/aug/17/niu-lai-derided-animated-film-challenges-blockbuste...
2•wslh•46m ago•0 comments

Every student is cheating with AI

https://ben.page/cheating
5•stopachka•52m ago•4 comments

Self-Healing Autopoietic Shell

https://huggingface.co/spaces/Daveswo/self-healing-autopoietic-shell
1•GlyphOS•55m ago•0 comments

The Coolest Cars We Saw at the 2026 Woodward Dream Cruise

https://www.caranddriver.com/news/a73453367/2026-woodward-dream-cruise-coolest-cars/
3•RickJWagner•56m ago•0 comments

Apple's Camera-Equipped AirPods See Them in Action

https://www.macrumors.com/2026/08/17/camera-equipped-airpods-macos-26-7/
2•thecybernerd•57m ago•0 comments

I've been doing endurance testing on microSD cards for the last 3 years

https://www.reddit.com/r/raspberry_pi/comments/1vqyx6o/ive_been_doing_endurance_testing_on_micros...
4•LeoPanthera•57m ago•0 comments

Apple's Camera-Equipped AirPods See Them in Action

https://twitter.com/aaronp613/status/2089522745184760112
3•thecybernerd•57m ago•0 comments

What Is DeepSeek-Harness? A Complete Introduction

https://findharness.com/blog/what-is-deepseek-harness
3•Justin3go•1h ago•1 comments

Caffeine and Cardiovascular Disease: A Scientific Statement from the AHA

https://www.ahajournals.org/doi/10.1161/CIR.0000000000001454
3•CalChris•1h ago•0 comments

Show HN: Tsampi BFT – Leaderless One-Round Voting with Parameterized Finality [pdf]

https://www.tsampi.com/tsampi-bft-1.0.pdf
1•coconutrandom•1h ago•0 comments

Qwen3.8-27B: slower tokens, faster and better results

https://overbring.com/blog/2026-08-17-qwen3-8-27b-wall-clock/
1•overbring_labs•1h ago•0 comments

Poor Man's Loop Engineering

https://awaitinginput.substack.com/p/poor-mans-loop-engineering
4•bsovran•1h ago•0 comments

Ask HN: Does anyone else feel like nothing matters anymore?

84•ramesh31•1h ago•48 comments

JD Vance vs. Trump: The Couch War Gets Out of Control [video]

https://www.youtube.com/watch?v=EbRMGAolHDk
1•pshales•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!