frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

In Russia, the first humanoid robot fell at a presentation

https://unn.ua/en/news/in-russia-the-first-humanoid-robot-fell-at-a-presentation-it-was-covered-f...
1•doener•2m ago•0 comments

DevOps-ifying my blog: Hugo on K8s with Git-sync and fluxcd

https://blog.prizrak.me/post/hugo-on-k8s/
1•razighter777•5m ago•1 comments

H₂O giant Suntory explores advancing with hydrogen

https://www.japantimes.co.jp/esg-consortium/2025/11/04/ho-giant-suntory-explores-advancing-with-h...
1•PaulHoule•5m ago•0 comments

Hyundai Is Now Locking DIY Owners Out of Their Own Brake Repairs

https://www.autoblog.com/news/hyundai-is-now-locking-diy-owners-out-of-their-own-brake-repairs
1•walterbell•6m ago•0 comments

.NET MAUI Is Coming to Linux and the Browser, Powered by Avalonia

https://avaloniaui.net/blog/net-maui-is-coming-to-linux-and-the-browser-powered-by-avalonia
1•vyrotek•6m ago•0 comments

How the Spoils of an Infamous Heist Traveled the World

https://nautil.us/how-the-spoils-of-an-infamous-heist-traveled-the-world-1247307/
1•curtistyr•9m ago•0 comments

Infrastructure as Code is a MUST have

https://lukasniessen.medium.com/infrastructure-as-code-is-a-must-have-b44acff0813d
1•birdculture•11m ago•0 comments

My Kind of REPL

https://ianthehenry.com/posts/my-kind-of-repl/
1•ingve•16m ago•0 comments

Expanded Chat Control 2.0 Through the Back Door, with Three Poison Pills

https://www.patrick-breyer.de/en/chat-control-2-0-through-the-back-door-breyer-warns-the-eu-is-pl...
3•walterbell•17m ago•0 comments

TLD Index

https://publicsuffix.org/list/effective_tld_names.dat
1•sans_souse•17m ago•0 comments

Show HN: LogicVisor – AI code reviews for algorithm practice

https://logicvisor.vercel.app/
1•david_essien•18m ago•0 comments

AI Pose: An all-in-one AI creative studio for videos, art, outfit changes

https://aipose.ai/
2•yolotach•19m ago•2 comments

React components for datacentres and fibre networks

https://react-networks-lib.rackout.net/
2•jammo•23m ago•0 comments

Reed–Solomon Error Correction

https://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction
1•ugur2nd•24m ago•0 comments

Revised Estimates for the Number of Human and Bacteria Cells in the Body (2016)

https://pmc.ncbi.nlm.nih.gov/articles/PMC4991899/
1•georgecmu•25m ago•0 comments

Four places to see London's Roman Wall

https://diamondgeezer.blogspot.com/2025/11/odd-places-to-see-londons-roman-wall.html
7•zeristor•25m ago•1 comments

Do Things

https://psychotechnology.substack.com/p/do-100-things-530
1•eatitraw•27m ago•1 comments

AI Agents Observability with OpenTelemetry and the VictoriaMetrics Stack

https://victoriametrics.com/blog/ai-agents-observability/index.html
1•valyala•28m ago•0 comments

Show HN: Monza Editor, the textarea element with syntax highlight in 1.5KB

https://github.com/raviqqe/monza-editor
1•raviqqe•28m ago•0 comments

Former Reddit CEO's AI thesis: model providers will crush most AI app startups

https://twitter.com/yishan/status/1987787127204249824
3•nowflux•29m ago•0 comments

Show HN: mDNS name resolution for Docker container names

https://www.npmjs.com/package/mdns-docker
1•chfritz•30m ago•0 comments

The Market Is Turning Against AI Spending

https://seekingalpha.com/article/4841003-market-turning-against-ai-spending
1•zerosizedweasle•30m ago•0 comments

Show HN: Picolight, the 0.5KB syntax highlighting library for dynamic input

https://github.com/raviqqe/picolight
1•raviqqe•30m ago•0 comments

Show HN: AI-Powered Chart Pattern Recognition for Price Movements

https://fractalof.com
1•bstav1•30m ago•0 comments

Data breach at Chinese infosec firm reveals cyber-weapons and target list

https://www.theregister.com/2025/11/09/asia_tech_news_roundup/
3•nh43215rgb•32m ago•0 comments

Structured Hierarchical Games and Backward Induction

https://arxiv.org/abs/2106.04663
1•robot-wrangler•33m ago•0 comments

Typesetting the "Begriffsschrift" by Gottlob Frege in Plain TeX [pdf]

https://www.tug.org/TUGboat/tb36-3/tb114wermuth.pdf
2•perihelions•35m ago•0 comments

Top researchers consider leaving U.S.: 'The science world is ending' [video]

https://www.youtube.com/watch?v=yLvO070E_dI
2•mosesbp•35m ago•1 comments

Two security issues discovered in sudo-rs, a Rust-based implemention of sudo

https://lists.debian.org/debian-security-announce/2025/msg00218.html
2•kruuuder•37m ago•1 comments

Heroku Support for .NET 10

https://www.heroku.com/blog/support-for-dotnet-10-lts-what-developers-need-know/
2•runesoerensen•39m 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•6mo ago

Comments

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