frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Texas commissioner: GOP will lose elections from data center backlash

https://www.texastribune.org/2026/08/06/sid-miller-republicans-elections-data-centers-abbott/
1•mapping365•1m ago•0 comments

vLLM: Anatomy of a High-Throughput LLM Inference System

https://www.aleksagordic.com/blog/vllm
1•sebg•1m ago•0 comments

How the World Views China vs. the U.S. in 2026

https://www.visualcapitalist.com/how-the-world-sees-china-and-the-us-in-2026/
2•simonpure•1m ago•0 comments

Show HN: Gaze – Facial Authentication for Linux

https://github.com/GunduLabs/gaze
2•gundulabs•2m ago•0 comments

"not a single vulnerability was found by a US frontier model."

https://twitter.com/callebtc/status/2085329159094489183
2•int32_64•3m ago•0 comments

A Visual Guide to Quantization – Demystifying the Compression of LLMs

https://newsletter.maartengrootendorst.com/p/a-visual-guide-to-quantization
2•sebg•4m ago•0 comments

Gesamtkunstwerk

https://en.wikipedia.org/wiki/Gesamtkunstwerk
1•toomuchtodo•4m ago•0 comments

Google's $15B India data centre project battles water, wildlife concerns

https://www.reuters.com/world/asia-pacific/googles-15-billion-india-data-centre-project-battles-w...
1•1vuio0pswjnm7•9m ago•0 comments

Show HN: PushYourThing – the dumbest button-mashing competition on the internet

https://pushyourthing.com
1•canerbo•11m ago•0 comments

Laguna S 2.1:118B-a9B better than Qwen3.5:122B-a10B? So far, yes

1•spottedmarley•12m ago•0 comments

Cancer-fighting chewing gum cuts HPV levels by up to 93%

https://www.sciencedaily.com/releases/2026/08/260803080917.htm
3•Audiophilip•13m ago•0 comments

Setup a simple web server with bozohttpd on NetBSD

https://bozo.httpd.rocks/
1•birdculture•14m ago•0 comments

TROOPERS26: V2X Wardriving – They Drive, We Listen [video]

https://www.youtube.com/watch?v=WgQjMJKB6Aw
1•rbanffy•14m ago•0 comments

Include.sh

https://include-sh.codeberg.page/
1•mindaslab•14m ago•1 comments

What Is a Product?

https://roge.onwrite.app/what-is-a-product
1•rogix•14m ago•0 comments

DOJ Says Duke Law School Discriminated in Admissions

https://www.bloomberg.com/news/articles/2026-08-06/doj-says-duke-law-school-discriminated-in-admi...
1•petethomas•15m ago•0 comments

Agent Substrate: The Core System

https://github.com/agent-substrate/substrate/
1•ot•16m ago•0 comments

SpaceX, Tesla to initially spend $16.8B on Terafab chip plant in Texas

https://www.reuters.com/business/media-telecom/spacex-says-terafab-be-built-texas-with-initial-in...
2•dogmayor•16m ago•2 comments

The American Art of Blowing Stuff Up

https://www.newyorker.com/magazine/2026/08/10/the-american-art-of-blowing-stuff-up
1•petethomas•16m ago•0 comments

Hedge funds forced out of tech stocks leave market to mercy of retail traders

https://www.marketwatch.com/story/hedge-funds-forced-out-of-tech-stocks-may-leave-the-market-at-t...
1•mapping365•18m ago•0 comments

Goiânia Accident

https://en.wikipedia.org/wiki/Goi%C3%A2nia_accident
3•ycollet•19m ago•2 comments

Open QEC harness – greedy vs. GE, uniform vs. clustered k=4

https://github.com/mrblakessinger-rgb/qec-evaluation-suite
1•Pachanoi•20m ago•0 comments

Brainscope/examples/ESP32 Watch a microcontroller's LLM think

https://github.com/moudrkat/brainscope/tree/main/examples/esp32
1•rbanffy•21m ago•0 comments

Why So Many C.E.O.s Are Getting a Chief of Staff

https://www.nytimes.com/2026/08/06/business/ceos-chief-of-staff.html
2•tysone•21m ago•0 comments

Caring for Rubber in Vintage Devices, the Curators' Way

https://www.30pin.com/features/rubber-parts-care/
1•ndiddy•22m ago•0 comments

An Analysis of Rust's Language Design Flaws (2025)

https://nimfsoft.art/blog/2025/06/26/analysis-of-rust-language-design-flaws/
1•theanonymousone•22m ago•0 comments

Show HN: CatQueue – A Redis-free PostgreSQL job queue for Node and TypeScript

https://github.com/karanrajsurya/CatQueue_npm_package
1•karanrajsurya•23m ago•0 comments

1k complaints made to EU Commission's anti-harassment team

https://www.politico.eu/article/1000-complaints-european-commissions-anti-harassment-team/
1•baal80spam•24m ago•0 comments

GPUs for Your Agent

https://givemeanode.com/
1•0xjepsen•24m ago•0 comments

Adventure Capital: The Game

https://adventure-capital-puce.vercel.app/
1•FinnLobsien•24m 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!