frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

FBI Shuts Down Sprawling China-Linked Hacking Network

https://www.wsj.com/tech/cybersecurity/fbi-shuts-down-sprawling-china-linked-hacking-network-61ea...
1•bmau5•1m ago•0 comments

This week in AI-native companies #5: Stripe buys the meter

https://www.insideainative.com/p/this-week-in-ai-native-companies-b77
1•mmayernick•1m ago•0 comments

Contested Tony Hsieh will signature appears illegitimate, forensic experts say

https://www.8newsnow.com/news/local-news/contested-tony-hsieh-will-signature-appears-illegitimate...
1•pseudolus•2m ago•0 comments

Show HN: Chroncal – A TUI for Calendar

https://github.com/DouglasdeMoura/chroncal
1•douglasdemoura•2m ago•0 comments

Automated Synthesis of Cloud Emulators

https://arxiv.org/abs/2608.23842
1•metrofun•2m ago•0 comments

The Tariff Cost: analysis of the costs to Americans from new tariffs on Canada

https://thetariffcost.com/
1•mikestorrent•2m ago•0 comments

Vox, a systems language whose code reads like English

https://vox-lang.dev/
1•TheJostler•2m ago•1 comments

Their Problem Is That We Have Taste

https://clintavo.substack.com/p/their-problem-is-that-we-have-taste
1•herbertl•4m ago•0 comments

Hacker News, Sans AI

https://elijahpotter.dev/hnsansai
3•fussylogic•5m ago•1 comments

How well do agents use your design system?

https://www.sanity.io/engineering/design-system-evals
1•kmelve•5m ago•0 comments

America's immigration policy is driving away future AI leaders

https://restofworld.org/2026/us-immigration-rules-ai-talent-china/
1•herbertl•6m ago•0 comments

Show HN: Railo – Deterministic security patch bot using AST and Z3 (no LLMs)

https://www.railo.dev
1•mdzariflatif•7m ago•0 comments

Moscow Turned AI into a Ghostwriting Machine for Global Influence

https://united24media.com/world/how-moscow-turned-ai-into-a-ghostwriting-machine-for-global-influ...
5•whynotmaybe•10m ago•0 comments

Actualis – read what your coding agent did on your machine

https://github.com/digital-foundry/actualis
2•actualis•11m ago•0 comments

I measured the x402 economy. It's $11,748 a month

https://github.com/dhughes6071/driftwatch/blob/main/research/posts/x402-economy-measured.md
2•dhughes6071•11m ago•0 comments

Germany plans sugar tax that includes sugar free drinks

https://brusselssignal.eu/2026/08/germany-plans-sugar-tax-that-includes-sugar-free-drinks/
3•sva_•11m ago•1 comments

Physlint – deterministic integrity checks for physical-AI data

https://github.com/pranayjoshi/physlint
2•pranay_joshi•12m ago•0 comments

I Am Looking for Work

https://www.technotheoria.org/p/i-am-looking-for-work
3•paulpauper•13m ago•0 comments

AI's Bar Mitzvah Moment? From Hope and Hype to Hard Business Questions

https://aswathdamodaran.substack.com/p/ais-bar-mitzvah-moment-from-hope
4•paulpauper•13m ago•0 comments

Tailcat: Secure Tunnels in Seconds (Tailscale)

https://github.com/tailscale/tailcat
15•nderjung•15m ago•1 comments

An ongoing 3D-printer AGPL violation

https://lwn.net/SubscriberLink/1089390/46116614cc74b814/
9•Velocifyer•16m ago•0 comments

Fixing Rust's supply chain security: The good, the bad and the ugly

https://kerkour.com/fixing-rust-supply-chain-security
2•speckx•16m ago•0 comments

Show HN: I made a retirement simulator: 125 years of data, 25 countries

https://foresightplanner.com/
6•nhootan•16m ago•0 comments

Freevalve: The camless engine, told properly

https://notenoughcylinders.com/en/freevalve-camless-engine-koenigsegg-2/
2•fchicken•18m ago•1 comments

Anonymous and open to all: The Home Assistant survey dataset

https://www.openhomefoundation.org/blog/home-assistant-survey-dataset/
4•calcifer•20m ago•0 comments

Tell HN: Even HN is getting heavy traffic by AI crawlers

6•ksec•21m ago•3 comments

The Index Is Not the World

https://pub.towardsai.net/the-index-is-not-the-world-de26b0e0a7d3?sharedUserId=carmineds.pro
2•cadeos•23m ago•0 comments

Nanobubble Chemistry Enables Catalyst‑Free Ammonia Synthesis in Mild Conditions

https://english.cas.cn/newsroom/research-news/202608/t20260824_1188763.shtml
2•bookofjoe•23m ago•0 comments

Perplexity partners with Nvidia to launch a local AI agent

https://venturebeat.com/infrastructure/perplexity-partners-with-nvidia-to-launch-portable-compute...
5•inferhaven•25m ago•1 comments

PostgreSQL 18: 23x Faster Inserts with UUID V7

https://andyatkinson.com/postgresql-18-uuidv7
3•speckx•26m 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!