frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Welcome to the busiest month in the domain business

https://domainnamewire.com/2026/08/04/welcome-to-the-busiest-month-in-the-domain-business/
1•taubek•4m ago•0 comments

Proven: Six Checks Against AI Slop

https://blog.bensoussan.de
1•davidbensoussan•6m ago•1 comments

What I love about Django

https://buttondown.com/blog/what-i-love-about-django
2•j4mie•15m ago•0 comments

The German Mittelstand

https://kieranvelasquez.substack.com/p/on-the-german-mittelstand
2•Michelangelo11•16m ago•0 comments

Show HN: HackerBa – Hacker News with a Baidu Tieba UI

https://github.com/sha2kyou/HackerBa
2•sha2kyou•22m ago•0 comments

Ask HN: How do you handle iOS app submissions?

1•tedmundy•23m ago•1 comments

Suggestions on how to develop a tech recruitment platform using Claude?

1•zerodollar•23m ago•2 comments

Context Engineering in an LLM Harness

https://udnes.dev/posts/context-engineering-harness-part-1-ontology/
2•udnes•23m ago•0 comments

Mark Zuckerberg Blasts Centralization of A.I. Power

https://www.nytimes.com/2026/07/28/technology/mark-zuckerberg-meta-ai.html
1•danielcallahan•26m ago•0 comments

Show HN: Clark code – open-source IDE for OSS coding and free tier

https://github.com/clark-labs-inc/clark-code
1•stan_kirdey•26m ago•1 comments

The Code Review Paradox

https://dromeas.ai/blog/pr-vs-trunk-what-code-review-actually-looks-like
1•manos-saratsis•26m ago•1 comments

AMD Instinct Coder

https://www.amd.com/en/ecosystem/oem/supermicro/amd-instinct-coder.html
2•narism•27m ago•0 comments

Test

https://www.google.com/
1•snikolaev•27m ago•1 comments

The Three-Stroke Problem

https://penpot.app/blog/the-three-stroke-problem/
2•elenathor•32m ago•0 comments

How can a junior dev get better when they have to use AI in their job?

1•yogesharc•34m ago•5 comments

Finding the right price for a weather API

https://www.meteosource.com/blog/weather-api-pricing
1•Thunder_rumbles•36m ago•0 comments

Kikuha – A privacy-first, zero-tracking social network built with Flask and Htmx

https://kikuha.com/
2•koniakAra•44m ago•0 comments

Grokipedia stopped updating three months ago

https://www.lawfaremedia.org/article/grokipedia-stopped-reviewing-edits-in-april.-it-didn-t-tell-...
2•BlueBerry2001•46m ago•0 comments

Servers can be backdoored by exploiting buggy motherboard controll

https://arstechnica.com/security/2026/08/thousands-of-servers-can-be-backdoored-by-exploiting-bug...
2•joozio•47m ago•0 comments

Fedora Approves a Smaller Grub

https://lwn.net/Articles/1085609/
2•pykello•51m ago•0 comments

A Vision for Cargo

https://epage.github.io/blog/2026/08/cargo-vision/
1•ingve•52m ago•0 comments

Mathematicians make a breakthrough on Gauss's riddle, unsolved for 200 years

https://www.scientificamerican.com/article/mathematicians-make-a-breakthrough-on-gausss-riddle-un...
1•pykello•52m ago•0 comments

For Chinese LLMs, do you care about mainland-hosted vs. overseas endpoints?

https://api.realitypatch.net/
1•yangzhou-tech•55m ago•0 comments

Meta's Mac Coding Agent Costs Up to 20x Less If You Let It Train on Your Data

https://www.macrumors.com/2026/08/05/meta-muse-code-for-mac/
1•thm•57m ago•0 comments

Journey to Robbers Cave – Behavioral Scientist

https://behavioralscientist.org/journey-to-robbers-cave/
2•pulkonet•58m ago•0 comments

I built a postpartum recovery app after reading many stories from new mothers

https://play.google.com/store/apps/details?id=com.matrabloom.app&hl=en_IN
1•rahulsinghhh•1h ago•0 comments

Obsidian debuts Airtable to local Markdown file importer rescue tool

https://obsidian.md/help/import/airtable
1•thoughtpeddler•1h ago•0 comments

Dissection of Flock Safety Camera

https://www.cehrp.org/dissection-of-flock-safety-camera/
1•sandebert•1h ago•0 comments

Let's all meet up in the Y2K

https://blog.gingerbeardman.com/2026/08/06/lets-all-meet-up-in-the-y2k/
5•msephton•1h ago•0 comments

Design Test

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