frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dilbert Principle

https://en.wikipedia.org/wiki/Dilbert_principle
1•begueradj•1m ago•0 comments

Framework Laptop 13 Pro

https://frame.work/pt/en/laptop13pro
2•bpierre•2m ago•0 comments

Israeli operation "Generative AI for Good" creates AI "victims"

https://twitter.com/infolibnews/status/2046618147055173858
1•cramsession•2m ago•1 comments

Challenge over Met Police's use of live facial recognition lost

https://www.bbc.co.uk/news/articles/cq59x4vv954o
1•Cider9986•5m ago•0 comments

Why higher pay hasn't made young adults feel richer

https://www.ft.com/content/b61f60a3-d4d7-46d9-aa6f-dd78dffe71f5
1•paulpauper•7m ago•1 comments

Show HN: Paper Lantern – improving Autoresearch with research knowledge

https://www.paperlantern.ai/code
1•paperlantern•8m ago•0 comments

CrabTrap: An LLM-as-a-judge HTTP proxy to secure agents in production

https://twitter.com/pedroh96/status/2046604993982009825
2•yakkomajuri•9m ago•0 comments

Framework 13 Pro Announced

https://spooling.frame.work/?c=framework&e=nextgen2026&ver=javascript-4.4.4&cver=18&man=Productio...
4•dorjoy•9m ago•1 comments

A Year After Usa.i.d.'S Death, Fired Workers Find Few Jobs and Much Loss

https://www.nytimes.com/2026/04/21/us/politics/usaid-former-employees.html
1•paulpauper•9m ago•0 comments

Desmond Morris, 98, Dies; Zoologist Saw Links Between Humans and Apes

https://www.nytimes.com/2026/04/20/science/desmond-morris-dead.html
1•paulpauper•9m ago•0 comments

Claude Code has full shell access. Your CASB doesn't see it

https://www.getunbound.ai/blog/governing-claude-across-surfaces
1•awesbecher•10m ago•0 comments

What Is Freedom?

https://geohot.github.io//blog/jekyll/update/2026/04/20/what-is-freedom.html
1•JohnLocke4•10m ago•0 comments

Show HN: Uncompressed. Media stack with VPN namespace isolation, no public ports

https://github.com/Lackoftactics/uncompressed
1•lackoftactics•10m ago•0 comments

Jagged Alliance 2 1.13 Character Sheet

https://ja2.aufdemsofa.ch/
1•midzer•11m ago•0 comments

Two 10.0 severity Spinnaker vulns give attackers RCE and production access

https://zeropath.com/blog/spinnaker-rce-production-compromise
3•NonStopOyster•14m ago•1 comments

Cognitive self-test (reaction/memory/Stroop), AI coach, open dataset

https://mintypick.com/brain-scan
1•hichamabadou•14m ago•0 comments

I ran 100 lease agreements through AI and found the same hidden issues

https://goleazly.com/
1•pomberito•14m ago•0 comments

Agentic Market

https://agentic.market
1•petethomas•14m ago•0 comments

PosterChild – Founding Engineer $140K–$180K and 0.5%–1.0% equity

https://www.notion.so/Founding-Engineer-PosterChild-3040d1c8b98181e1b735e476b4798607
1•sivakumarc•14m ago•0 comments

Show HN: Zev helps you remember (or discover) CLI commands with natural language

https://github.com/dtnewman/zev-cli
1•dtnewman•14m ago•0 comments

Inverse design: A new pathway to custom functional polymers

https://phys.org/news/2026-03-inverse-pathway-custom-functional-polymers.html
1•PaulHoule•15m ago•0 comments

Guinea worm is about to be eradicated

https://twitter.com/anishmoonka/status/2045757539409621414
4•mhb•16m ago•0 comments

Golden Rules for Making Money (1880)

https://www.fourmilab.ch/etexts/www/barnum/moneygetting/
2•downbad_•18m ago•1 comments

How AI Is Replacing Us and Reinventing the Way We Work as a Software Consultancy

https://upsidelab.io/blog
1•vast-alive•18m ago•0 comments

Between Clay and Light: A Quranic Framework for the Age of Intelligence

https://aliasaria.ca/posts/between-clay-and-light/
1•aliasaria•20m ago•0 comments

New Study Finds That ADHD Has 9 Categories of Symptoms

https://www.psychologytoday.com/au/blog/brain-curiosities/202604/new-study-finds-that-adhd-has-9-...
1•ivewonyoung•23m ago•0 comments

Framework 13 Pro

https://frame.work
12•simonjgreen•23m ago•0 comments

Ask HN: Can you listen to podcasts while working?

1•NourEddineX•25m ago•0 comments

Framework Laptop 13 Pro

https://frame.work/laptop13pro
26•Trollmann•25m ago•5 comments

Show HN: Muxforge Tmux Plugin Manager

https://muxforge.dev
1•techalchemist•27m 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•12mo ago

Comments

semihs•12mo 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_•11mo 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•11mo 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_•11mo ago
That sounds great!