frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Banca Etica Suspends A/I's Account While Condemning the Sanctions Behind It

https://sabot.media/post/banca-etica-statement-english
1•rendx•35s ago•0 comments

1 in 5 job listings are likely to be ghost jobs

https://www.remoterocketship.com/advice/ghost-jobs-report/
1•Lior539•52s ago•0 comments

Pystebin: Executable Pastebin for Python in the Browser

https://www.pystebin.com/
1•BiteCode_dev•1m ago•0 comments

Fomu An FPGA board that fits inside your USB port

https://www.crowdsupply.com/sutajio-kosagi/fomu
1•Bluestein•2m ago•0 comments

Why Pi is my AI coding harness

https://blog.kulman.sk/pi-is-now-my-ai-harness/
2•ig0r0•3m ago•0 comments

SERV – The SErial RISC-V CPU Topics

https://github.com/olofk/serv
1•Bluestein•5m ago•0 comments

When Flowers Keep Time

https://worldsensorium.com/when-flowers-keep-time-how-circadian-rhythms-shape-the-world-of-scent/
1•dnetesn•6m ago•0 comments

Teaching Siri to talk about your favorite walks in Walk Mate

https://emredegirmenci.substack.com/p/ios-27-app-intents-journey
1•emredegirmenci•7m ago•0 comments

"Seeking New Laws"

https://jamesclear.com/great-speeches/seeking-new-laws-by-richard-feynman
1•Bluestein•7m ago•0 comments

Show HN: OS iOS Farm Automation

https://gethandler.ai/ios-farm/
1•agni-ankit•8m ago•0 comments

Code reviewing lone Lisp with Sol and Fable

https://www.matheusmoreira.com/articles/code-reviewing-lone-lisp-with-sol-and-fable
1•matheusmoreira•8m ago•0 comments

My LLM tracer had 93% test coverage and coul

https://github.com/RAJUSHANIGARAPU/agent-lens/releases/tag/v0.3.0
1•rajub4u927•10m ago•0 comments

Introducing Blue Continuum

https://www.bluecontinuummag.com
1•dnetesn•12m ago•0 comments

Show HN: Aeglyn – pay-to-rank leaderboard for MCP servers

https://aeglyn.site
1•racerop•15m ago•0 comments

Howell Ivy, Co-Founder of Exidy and arcade gaming pioneer, has died

https://arcadeblogger.com/2026/06/25/exidys-howell-ivy/
1•icwtyjj•15m ago•0 comments

The open-plan office is a terrible idea (2018)

https://medium.com/signal-v-noise/the-open-plan-office-is-a-terrible-horrible-no-good-very-bad-id...
1•toilet•17m ago•0 comments

LLMs and Self-Referentiality

https://scottaaronson.blog/?p=10046
3•A_D_E_P_T•17m ago•0 comments

I built an embedded disk Redis in Rust that's 20x–40x faster than Redis

https://crates.io/crates/wedb_embed
1•rmw-link•18m ago•0 comments

RDDD – When is a 404 not a 404?

https://request-driven.com
1•romford-digital•22m ago•1 comments

What Makes LLM Tokenization Slow?

https://healeycodes.com/what-makes-llm-tokenization-slow
1•healeycodes•26m ago•0 comments

Resources to Get Good at Soldering?

2•tosmatos•27m ago•0 comments

Operation Midnight Climax

https://en.wikipedia.org/wiki/Operation_Midnight_Climax
3•chistev•28m ago•0 comments

Lekuo SouthBridge Max Puts an AMD B650 Chipset onto a PCIe Card for More I/O

https://www.phoronix.com/review/lekuo-southbridge-max
1•rbanffy•29m ago•0 comments

Choice Notes on History from Notes and Queries (1858)

https://publicdomainreview.org/collection/choice-notes-from-notes-and-queries
1•SamuraiLion•29m ago•0 comments

We Can't Let AI Writing Take over the Internet

https://www.derekthompson.org/p/the-internet-is-drowning-in-ai-slop
1•tcp_handshaker•30m ago•0 comments

Sweden pauses Denmark power cable over EU grid rules

https://www.nordiskpost.com/2026/05/08/sweden-power-cable-dispute-freezes-link-to-denmark/
2•leonidasrup•30m ago•0 comments

Plan 9 Foundation

https://plan9foundation.org/
2•Bluestein•32m ago•0 comments

UN admits global warming will shoot past 1.5 ºC climate limit

https://www.nature.com/articles/d41586-026-02753-5
4•geox•32m ago•1 comments

Nvidia – Earth 2

https://www.nvidia.com/en-us/high-performance-computing/earth-2/
1•tcumulus•34m ago•0 comments

Russia helping Iran develop supersonic cruise missiles

https://www.ft.com/content/6cf367bc-95b0-4f1f-b149-a25684adefc3
3•tcp_handshaker•38m 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!