frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Selling Stuff

https://ftrain.com/selling-stuff
1•FigurativeVoid•19s ago•0 comments

Microsoft Copilot Is Confronting Its Identity Crisis

https://www.bloomberg.com/news/newsletters/2026-03-23/microsoft-msft-ai-copilot-confronts-its-ide...
1•Brajeshwar•43s ago•0 comments

What Does a Hologram Trademark Signify When the Hologram Isn't There?

https://blog.ericgoldman.org/archives/2026/03/what-does-a-hologram-trademark-signify-when-the-hol...
1•hn_acker•3m ago•1 comments

Microsoft's "Fix" for Windows 11: Flowers After the Beating

https://www.sambent.com/microsofts-plan-to-fix-windows-11-is-gaslighting/
2•speckx•4m ago•0 comments

Migrating Snapchat's AB Pipelines to GPU-Accelerated Spark

https://eng.snap.com/snap-nvidia-gcp
1•Kaedon•4m ago•0 comments

We Built an AI Memory System That Learns

https://getcoherence.io/blog/how-we-built-an-ai-memory-system-that-actually-learns-55bcdf82
1•keithfawcett•4m ago•0 comments

Gen 13: how we built our most powerful server yet

https://blog.cloudflare.com/gen13-config/
1•NicoJuicy•4m ago•0 comments

ChatGPT and the Meaning of Life: Guest Post by Harvey Lederman

https://scottaaronson.blog/?p=9030
1•gwintrob•7m ago•0 comments

Free Multilingual Dictionaries

https://yap.town/d/
1•ChadNauseam•8m ago•1 comments

Ancient machine gun was used by Romans to attack Pompeii

https://www.telegraph.co.uk/world-news/2026/03/22/ancient-machine-gun-was-used-by-romans-to-attac...
2•Stratoscope•9m ago•0 comments

A Ramsey-Style Problem on Hypergraphs

https://epoch.ai/frontiermath/open-problems/ramsey-hypergraphs
1•yusufozkan•9m ago•0 comments

Canvas Unrolls AI Teaching Agent

https://www.insidehighered.com/news/tech-innovation/artificial-intelligence/2026/03/23/canvas-unr...
1•speckx•10m ago•0 comments

The Magnet Suspension Skateboard

https://www.youtube.com/watch?v=yzXZ7cZXifo
1•mhb•10m ago•0 comments

macOS app to copy LaTeX renders/text/QR codes from screenshot automatically

https://github.com/Blobosle/screen-copy/
1•blobosle•12m ago•0 comments

Show HN: Zoom Auto-Joiner

https://github.com/PiotrMackowski/auto-joiner
1•ptrmc•14m ago•1 comments

Neo Store: The modern and feature-rich F-Droid client for everyone

https://github.com/NeoApplications/Neo-Store
1•pretext•16m ago•0 comments

Simply looking up inspires scientific exploration

https://bigthink.com/starts-with-a-bang/why-we-look-up/
1•Brajeshwar•18m ago•0 comments

XMind MCP Server – Incremental mind map editing for LLMs

https://github.com/sc0tfree/xmind-mcp
1•sc0tfree•20m ago•1 comments

Intel Core Ultra 200S Plus Content Creation Review

https://www.pugetsystems.com/labs/articles/intel-core-ultra-200s-plus-content-creation-review/
1•zdw•20m ago•0 comments

Philips to drop Google TV for European-based Titan OS

https://9to5google.com/2026/03/23/google-tv-just-lost-a-big-tv-brand-to-web-app-based-titan-os/
4•pentagrama•20m ago•3 comments

Unix philosophy is dead Long live something else?

https://sdomi.pl/weblog/27-manifesto-of-a-burnt-out-hacker/
1•caminanteblanco•21m ago•0 comments

A single Keycloak commit broke our p99 latency

https://old.reddit.com/r/KeyCloak/comments/1rto63s/how_a_single_keycloak_commit_broke_our_p99/
1•mooreds•24m ago•0 comments

10MB Go Alternative to OpenClaw (Full Clawhub Skills)

https://github.com/General-Specialist/capabot
2•gen_specialist•25m ago•1 comments

Ten Months with Copilot Coding Agent in Dotnet/Runtime

https://devblogs.microsoft.com/dotnet/ten-months-with-cca-in-dotnet-runtime/
2•pestkranker•25m ago•0 comments

Startup left production AWS keys public for 5 months; their VDP was silent

https://benzimmermann.dev/blog/pump-vdp-silence
2•Terretta•26m ago•2 comments

The Picture They Paint of You – AI SREs

https://ferd.ca/the-picture-they-paint-of-you.html
1•sylvainkalache•26m ago•0 comments

"Will AI force code to evolve or make it extinct?"

https://thenewstack.io/ai-programming-languages-future/
1•MilnerRoute•27m ago•1 comments

Value creation in the metaverse (2022) [pdf]

https://www.mckinsey.com/~/media/mckinsey/business%20functions/marketing%20and%20sales/our%20insi...
1•toomuchtodo•27m ago•1 comments

Pancakes, Hot Takes, and Social Media's Flatness

https://tedium.co/2026/03/23/social-media-flat-discussion/
2•freediver•28m ago•0 comments

The OpenBSD init system and boot process

https://overeducated-redneck.net/blurgh/openbsd-init-system.html#content
1•speckx•29m 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!