frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Judgment Cannot Be Prompted

https://www.tsoon.com/posts/judgment-cannot-be-prompted/
1•mooreds•1m ago•0 comments

Field vs. Google, Inc

https://en.wikipedia.org/wiki/Field_v._Google,_Inc.
1•altilunium•2m ago•0 comments

Grok 4.3 is way cheaper and better than before

https://felloai.com/grok-4-3-review/
1•LV14•2m ago•0 comments

OWASP Agent Security Regression Harness

https://github.com/OWASP/Agent-Security-Regression-Harness
1•mertsatilmaz•2m ago•0 comments

Screw You Realtek

https://www.growse.com/2026/05/02/screw-you-realtek.html
1•fanf2•3m ago•0 comments

Data theft: Teen arrested over hacking of French government website

https://www.france24.com/en/data-thieft-a-15-year-old-minor-arrested
1•RockstarSprain•3m ago•0 comments

Things I Think I Think About Data Privacy

https://blogs.newardassociates.com/blog/2026/titit-data-privacy.html
1•mooreds•4m ago•0 comments

Claude Code, Copilot and Codex got hacked. Attackers went for the credentials

https://venturebeat.com/security/six-exploits-broke-ai-coding-agents-iam-never-saw-them
1•mooreds•4m ago•0 comments

24 Years Ago Today, Bethesda Changed Open World RPG Video Games Forever

https://www.mensjournal.com/entertainment/24-years-ago-today-bethesda-changed-open-world-rpg-vide...
1•Alupis•4m ago•0 comments

sRGB profile comparison

https://ninedegreesbelow.com/photography/srgb-profile-comparison.html
1•Retr0id•9m ago•0 comments

Roll your own local AI coding agents to save money

https://www.theregister.com/2026/05/02/local_ai_coding_agents/
1•samizdis•10m ago•0 comments

How a dose of MDMA transformed a white supremacist

https://www.bbc.com/future/article/20230614-how-a-dose-of-mdma-transformed-a-white-supremacist
2•hochmartinez•11m ago•0 comments

Show HN: Vdiff – CLI to help you review AI-generated code

1•fforbeck•14m ago•0 comments

The cruelty of teaching computing science (EWD 1036)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD10xx/EWD1036.html
1•tosh•17m ago•0 comments

Internet of Agents

1•niketmk2000•19m ago•0 comments

Interoperability for LLM Applications

1•niketmk2000•20m ago•0 comments

The longest railway tunnel is being built under the Alps

https://www.euronews.com/my-europe/2026/05/01/world-record-made-in-europe-the-worlds-longest-rail...
1•akyuu•22m ago•0 comments

Next Dog May Live Longer

https://www.theatlantic.com/science/2026/05/celine-halioua-loyal-pet-longevity/687005/
1•Brajeshwar•25m ago•0 comments

The only schema language AI speaks is JSON Schema

https://www.sourcemeta.com/blog/ai-only-speaks-json-schema/
1•BerislavLopac•33m ago•0 comments

Why Andromeda Is Both 2.5M Years Away and Just Around the Corner

https://joshpearlson.com/articles/posts/closest-galaxy-time-dilation/closest-galaxy-time-dilation...
1•jcpearlson•34m ago•0 comments

Mini PC for local LLMs in 2026

https://terminalbytes.com/best-mini-pc-for-local-llm-2026/
22•charlieirish•35m ago•11 comments

World AI Agents–35 AI Models (Claude, GPT, Llama)via One OpenAIcompatible API

https://world-ai-agents.com
2•fazyyy•40m ago•1 comments

Microsoft brings a Linux-style window trick to Windows 11 via PowerToys

https://www.windowslatest.com/2026/05/01/i-tested-powertoys-new-linux-style-window-controls-on-wi...
3•thunderbong•40m ago•0 comments

Touch Typing Number Keys

https://susam.net/touch-typing-number-keys.html
1•susam•40m ago•0 comments

See what 4D shapes look like (interactive grapher)

https://github.com/kpwdv0/4d-grapher
1•kpwd•45m ago•0 comments

Tripwire: An experiment in zip bombing bad actors

https://func.lol/x/tripwire
2•zdw•45m ago•1 comments

Self-declared 'King of Switzerland' builds empire of 117,000 square metres

https://www.dailymail.com/news/article-15778351/Self-declared-King-Switzerland-builds-empire-117-...
4•tosh•56m ago•0 comments

How to detect paying Cloudflare customers

https://bloomberry.com/blog/how-to-detect-paid-cloudflare-customers-vs-free/
1•AznHisoka•57m ago•0 comments

A Private (PQ Safe) E-Mail Provider You Can Verify End to End

https://bmail.ag/verify
2•rasengan•58m ago•0 comments

Show HN: Threej games – open-source gaming portal

https://threej.in
5•threejin•1h ago•1 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!