frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Connect maker devices to Claude Code and Cowork

https://github.com/anthropics/claude-desktop-buddy
1•felixrieseberg•10s ago•0 comments

Comfy.Guide

https://comfy.guide/
3•jethronethro•1m ago•0 comments

QSOlog – Offline-first PWA logbook for amateur radio operators

https://nuetzliches.github.io/qso-log/
1•nutz-bob•13m ago•0 comments

I Hate AI

5•jwpapi•16m ago•1 comments

100M commits to GitHub without using Git push

https://github.com/Wuerfelhusten/commitment
1•Wuerfelhusten•20m ago•1 comments

A type of bike theft in San Francisco

https://shub.club/writings/2026/april/a-type-of-bike-theft/
3•forthwall•29m ago•0 comments

Hospital at centre of child HIV outbreak caught reusing syringes in Pakistan

https://www.bbc.com/news/articles/clyrd818gd2o
3•flykespice•29m ago•0 comments

Breaking from Your Parents [video]

https://www.youtube.com/watch?v=VhpF9jC3a18
1•Aerbil313•30m ago•0 comments

I automated my local barbershop's chaos with code

https://ravoor.com/ar
5•megoxv•32m ago•0 comments

Stop New York's Attack on 3D Printing

https://www.eff.org/deeplinks/2026/04/stop-new-yorks-attack-3d-printing
3•iamnothere•33m ago•0 comments

Unwritten – 3-minute AI short film, Top at Soulscape 2026

https://www.youtube.com/watch?v=rzdvt-qOysI
1•gltanaka•35m ago•0 comments

Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies

1•Tonyjw2002•38m ago•0 comments

Planning and Monitoring Indoor Vertical Green Living Walls with Remote Sensing

https://onlinelibrary.wiley.com/doi/10.1155/ina/5782002
1•PaulHoule•39m ago•0 comments

George Orwell Predicted the Rise of "AI Slop" in Nineteen Eighty-Four (1949)

https://www.openculture.com/2026/04/how-george-orwell-predicted-the-rise-of-ai-slop.html
12•doener•40m ago•3 comments

Show HN: LLMs don't hallucinate because they're bad at math, it's the format

https://github.com/yvonboulianne/laeka-rational
2•yvonboulianne•41m ago•0 comments

Ne, the Nice Editor

https://github.com/vigna/ne
2•Lyngbakr•42m ago•0 comments

Everything we like is a psyop

https://techcrunch.com/2026/04/16/everything-we-like-is-a-psyop/
2•evo_9•43m ago•0 comments

North Korea targets macOS users in latest heist

https://www.theregister.com/2026/04/16/north_korea_social_engineering_macos/
2•Bender•43m ago•0 comments

Google Chrome lacks fingerprinting protection

https://www.theregister.com/2026/04/16/google_chrome_lacks_browser_fingerprinting/
3•Bender•43m ago•2 comments

QUIC will soon be as important as TCP – but it's vastly different

https://www.theregister.com/2026/04/16/quic_explained/
3•Bender•44m ago•0 comments

Frank Dudley Beane's Experience with Ergot and Cannabis Indica (1884)

https://publicdomainreview.org/collection/experience-with-ergot-and-cannabis/
3•apollinaire•49m ago•0 comments

The Book News Isn't All Bad

https://reactormag.com/the-book-news-isnt-all-bad/
2•samclemens•50m ago•0 comments

Claude Opus 4.7 System Prompt Leaked

https://twitter.com/elder_plinius/status/2044857095439421885
4•giancarlostoro•56m ago•0 comments

The cover of C++ The Programming Language raises questions not answered by cover

https://devblogs.microsoft.com/oldnewthing/20260401-00/?p=112180
3•ibobev•57m ago•1 comments

Isolating AI Coding Agents on Bare Metal

https://blog.singlr.ai/isolating-ai-coding-agents-bare-metal-incus-podman/
3•jacobobryant•57m ago•0 comments

Cave under castle with prehistoric hippo bones 'once in a lifetime' find

https://www.bbc.com/news/articles/c8ejjw7377jo
3•Lyngbakr•57m ago•0 comments

How customer lists and trademarks help companies borrow

https://www.chicagobooth.edu/review/how-customer-lists-trademarks-help-companies-borrow
2•hhs•58m ago•0 comments

Parcae: Doing More with Fewer Parameters Using Stable Looped Models

https://sandyresearch.github.io/parcae/
2•matt_d•58m ago•0 comments

Runway CEO: AI could help Hollywood make 50 films instead of 1 $100M blockbuster

https://techcrunch.com/2026/04/16/runway-ceo-says-ai-could-help-hollywood-make-50-films-instead-o...
1•bookofjoe•59m ago•1 comments

Resuming ZFS Send (2019)

https://oshogbo.com/blog/66/
1•QuantumNomad_•1h 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•11mo ago

Comments

semihs•11mo 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!