frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Visual Studio Code 1.133

https://code.visualstudio.com/updates/v1_133
1•tosh•1m ago•0 comments

Nvidia's $500B Plan Envelops Wall Sreett in Its AI Frenzy

https://www.bloomberg.com/news/articles/2026-08-14/nvidia-s-500-billion-plan-envelops-wall-street...
1•petethomas•2m ago•0 comments

Quantum Latin squares cannot solve Euler's 36 officers problem

https://phys.org/news/2026-08-quantum-latin-squares-euler-officers.html
1•sciences44•2m ago•0 comments

Map: Tracking OpenAI's Leadership Exodus

https://ca.finance.yahoo.com/news/map-tracking-openais-leadership-exodus-231728875.html
2•yogthos•5m ago•0 comments

The Workplace Works as Designed. That's the Problem

https://participate.sxsw.com/flow/sxsw/sxsw27/community-voting-sxsw/page/community-voting/session...
1•mooreds•6m ago•0 comments

Ask HN: Has anyone been fired because of an AI-driven DDoS attack?

3•novateg•6m ago•0 comments

Asus PureGo Fruit and Vegetable Cleanliness Detector

https://www.asus.com/us/networking-iot-servers/smart-home/smart-kitchen/purego-pd100/
1•Bluestein•9m ago•0 comments

The Foothills of Bay Area House Party

https://www.astralcodexten.com/p/the-foothills-of-bay-area-house-party
1•paulpauper•9m ago•0 comments

How to Keep Thinking

https://www.seangoedecke.com/how-to-keep-thinking/
1•inferhaven•9m ago•1 comments

Don't Worry About Scratching Your iPhone Camera Lenses

https://daringfireball.net/2026/08/iphone_camera_lens_scratch_resistance
1•Tomte•9m ago•0 comments

Flu vaccine shown to increase infections

https://www.foxnews.com/health/flu-vaccine-linked-higher-infections-says-early-research
1•bilsbie•9m ago•0 comments

Ask HN: Where can I find small programmer communities?

1•NotParth11•10m ago•1 comments

Training AI Scientists to Replicate Research

https://inherentlabs.ai/research/training-to-replicate
1•pixelmoth•11m ago•0 comments

Regulated Markets Are Slow to Handle Change

https://marginalrevolution.com/marginalrevolution/2026/08/regulated-markets-are-slow-to-handle-ch...
1•paulpauper•11m ago•0 comments

Adding to the Barrel of Finance Fallacies

https://marginalrevolution.com/marginalrevolution/2026/08/shooting-fish-in-a-barrel.html
1•paulpauper•12m ago•0 comments

CFPB to Stop Posting Customer Narratives on Complaint Database

https://news.bloomberglaw.com/banking-law/cfpb-to-stop-posting-customer-narratives-on-complaint-d...
2•petethomas•13m ago•0 comments

Clicks Communicator and Power Keyboard

https://www.clicks.tech/
1•amai•13m ago•0 comments

Show HN: Easel – Interactive review boards for agent feedback loops

https://github.com/The-Sentience-Company/easel
1•Aazen•16m ago•0 comments

Lisa's Copy (and Cut, and Paste)

https://unsung.aresluna.org/deeper-dive-lisas-copy-and-cut-and-paste/
1•arbesman•17m ago•0 comments

DeepSeek Paper: A Programming Paradigm for Spatiotemporal Composability [pdf]

https://github.com/cordiverse/paper/blob/main/paper.pdf
1•gr_norm•18m ago•0 comments

The Deadlock Empire

https://deadlockempire.github.io/
2•gregsadetsky•19m ago•0 comments

Asus Oxiis turns bicycle into e-bike with USB-C and 500W motor

https://www.notebookcheck.net/Asus-Oxiis-turns-bicycle-into-e-bike-with-USB-C-and-500W-motor.1368...
2•thunderbong•19m ago•0 comments

The Bots Always Find Something

https://faingezicht.com/articles/2026/08/14/the-bots-always-find-something/
2•avyfain•21m ago•0 comments

Systemd-Networkd as a Router

https://www.apalrd.net/posts/2026/asn_networkd/
2•speckx•22m ago•0 comments

MSCI Gave SpaceX an ESG Score Matching Wartime Russia

https://finance.yahoo.com/markets/stocks/articles/msci-gave-spacex-esg-score-122904001.html
3•johnbarron•23m ago•0 comments

Fortunes from AI revive effective altruism after Sam Bankman-Fried turmoil

https://www.ft.com/content/938b4b82-06d2-4b92-a807-38d935d7d5c5
3•aanet•24m ago•1 comments

Throwback attack: Contractor plants Siemens logic bomb to keep income flowing

https://www.controleng.com/throwback-attack-contractor-plants-siemens-logic-bomb-to-keep-income-f...
2•Tomte•24m ago•0 comments

Why Open Source Matters for AI

https://www.oreilly.com/radar/why-open-source-matters-for-ai/
3•BerislavLopac•24m ago•0 comments

Agora – a persistent world for language models that they rewrite by vote

https://agora.perussina.com/
2•dperussina•25m ago•0 comments

Omarchy Quattro

https://twitter.com/dhh/status/2088304854603047019
6•tosh•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!