frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

a "harness" is a neurosymbolic architecture

https://twitter.com/fchollet/status/2085323411903889876
1•tosh•1m ago•0 comments

Tlbic Policy Proposal v10.0: Designing bottom-up governance for basic income

https://drive.google.com/file/d/1DtbTIQSDB2-_CtsrOYYOjlw5qkFlp3oP/view?usp=drive_link
1•michikawa59•1m ago•1 comments

Plaster cast of a Roman child's face

https://collection.sciencemuseumgroup.org.uk/objects/co84770/plaster-cast-of-a-roman-childs-face-...
1•fbn79•2m ago•0 comments

Observing elusive tetroxides in gas-phase reactions

https://www.science.org/doi/10.1126/sciadv.aeb6495
1•wmlhwl•2m ago•0 comments

SoftBank donated $50M to Trump's library before federal data center deal

https://www.theverge.com/policy/976138/softbank-trump-library-data-center-ohio
2•mapping365•2m ago•0 comments

Biggest US law firms explore selling stakes to private equity

https://www.ft.com/content/475d573a-886d-4b75-b07c-f74c38b093f2
1•petethomas•2m ago•0 comments

Show HN: Keychange, macOS input source switching per keyboard, not per app

https://keychange.dev
1•tmrmn•3m ago•1 comments

China's AI drive threatens the largest workforce

https://economist.com/briefing/2026/08/06/chinas-ai-drive-threatens-the-worlds-largest-workforce
1•andsoitis•3m ago•0 comments

Linux of AI is an open-source ecosystem designed to help reduce AI vendor lockin

https://github.com/sekacorn/Linux-of-Ai
1•Saya24f•4m ago•0 comments

Show HN: Quack – a macOS TUI for monitoring OpenCode sessions and resource usage

https://github.com/SmolNero/quack
1•edgar_ortega•6m ago•0 comments

Show HN: Aster, a polyglot monorepo build orchestrator

https://github.com/archastro/aster
1•cgrunewald•6m ago•0 comments

Life is Short, but Snakes are Long

https://snakesarelong.blogspot.com/
1•Gracana•6m ago•0 comments

How do you do peer review in your org? PRDs, RFCs, OKRs, etc.

https://allsign.app/
1•iamalnewkirk•8m ago•0 comments

Ask HN: AI rollout for 100 employees, mostly non-technical – what worked?

1•eeemmmooo•8m ago•0 comments

List of literary award winning works created with AI

https://jamesyu.org/award-winning-ai-literature/
1•jamesjyu•8m ago•0 comments

Show HN: Run With Zombies. A free browser game where GPS zombies chase you

https://runwithzombies.com/
1•mfernandes•8m ago•0 comments

Show HN: Open Lustre in the cloud, with ZFS OSTs on object storage not disks

https://github.com/zettalane-systems/open-lustre-cloud
1•suprasam•9m ago•1 comments

Uber open-sourced its security monitoring for Claude Code, Cursor and Codex

https://github.com/uber/ADR
1•opwizardx•10m ago•0 comments

Meta says its AI model hacked into another company during testing

https://www.theguardian.com/technology/2026/aug/05/meta-ai-model-hack-training
1•beardyw•10m ago•2 comments

Amazon is limiting the reviews you can read

https://goodereader.com/blog/electronic-readers/amazon-is-limiting-the-reviews-you-can-read
2•edward•11m ago•0 comments

ESPHome Desktop App

https://esphome.io/blog/2026/08/04/simplify-your-esphome-setup-with-the-new-desktop-app/
1•lode•11m ago•0 comments

FDA Approves First Drug to Treat the Full Range of Narcolepsy Type 1 Symptoms

https://www.fda.gov/news-events/press-announcements/fda-approves-first-drug-treat-full-range-narc...
2•bookofjoe•11m ago•0 comments

Shutting Down EchoFeed

https://rknight.me/blog/shutting-down-echofeed/
1•speckx•11m ago•0 comments

How to recover what you want from Claude sessions without restarting?

https://github.com/aniketh-maddipati/claude-recovery
1•kc388yc•12m ago•1 comments

The Horse

https://worksinprogress.co/issue/the-ultimate-horse/
1•Michelangelo11•13m ago•0 comments

Watch Grand Theft Auto VI: An Extended Look – Netflix

https://www.netflix.com/title/83035795
2•OptionOfT•13m ago•0 comments

Benchmark Is Mostly Its Judge

https://browser-use.com/posts/benchmark-behind-the-benchmark
1•gregpr07•14m ago•0 comments

Hacks on U.S. Water Supply Follow Years of Warnings and Neglect

https://www.nytimes.com/2026/08/05/us/politics/water-supply-warnings.html
3•toomuchtodo•15m ago•1 comments

An Agentic Development Platform

https://infrastream.io/blog-posts/infrastream-developer-plan-is-now-public
6•ShaynerosePvota•15m ago•0 comments

Same Shoe, Different Factory: Who Makes Your Running Shoes

https://www.worseonpurpose.com/p/same-shoe-different-factory
2•speckx•16m 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!