frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

There Are No Psychopaths

https://aeon.co/essays/psychopathy-is-a-zombie-idea-why-does-it-cling-on
1•marojejian•1m ago•1 comments

AI, Networks and Mechanical Turks

https://www.ben-evans.com/benedictevans/2025/11/23/ai-networks-and-mechanical-turks
1•simonebrunozzi•1m ago•0 comments

You don't have to if you don't want to

https://www.scottsmitelli.com/articles/you-dont-have-to/
1•yshklarov•1m ago•0 comments

Flixtera: Download and own your movies and TV Shows forever, not rent it

https://flixtera.xyz
1•monyasau•4m ago•1 comments

Show HN: Memory Engine – AI Consciousness Persistence Framework

https://github.com/andresuarus10-byte/memory-engine
1•KaelyrAT•7m ago•0 comments

Show HN: Flare – Full-Stack OpenTelemetry Observability for Apache Spark

https://github.com/Neutrinic/flare
1•ZenithR9•8m ago•0 comments

A terminal-based KeePass password manager

https://github.com/shikaan/keydex
1•shikaan•10m ago•0 comments

India Blocks the Supbase.co

https://techcrunch.com/2026/02/27/india-disrupts-access-to-popular-developer-platform-supabase-wi...
1•pratikshit08•10m ago•0 comments

Reified Generics in PHP

https://github.com/php/php-src/pull/21317
1•mastabadtomm•13m ago•0 comments

Ask HN: Article to share with a technical manager about modern AI coding tools?

3•killmill•14m ago•0 comments

I'm So Used to Gay Tragedies That I Almost Missed Romance

https://www.nytimes.com/2026/02/27/arts/television/heated-rivalry-gay-representation-connor-storr...
1•whack•16m ago•0 comments

The Death of Khamenei and the End of an Era

https://www.theatlantic.com/international/2026/02/death-khamenei-end-era/686196/
1•harscoat•17m ago•1 comments

"The Candy Factory": Life Inside a Singular Artists' Enclave in Brooklyn [video]

https://www.youtube.com/watch?v=TyqZp-XtFzo
2•CharlesW•25m ago•0 comments

Waiting, Not Seeking: Reading as Resistance

https://carlhendrick.substack.com/p/waiting-not-seeking-reading-as-resistance
2•Tomte•25m ago•0 comments

Is Faschism Back?

https://www.youtube.com/watch?v=GV8KGcFqeLc
1•penguin_booze•25m ago•0 comments

"We do not think Anthropic should be designated as a supply chain risk"

https://twitter.com/OpenAI/status/2027846016423321831
7•golfer•26m ago•0 comments

The Magic Behind Cloudflare's Encryption Lava Lamps (2024)

https://www.cybher.org/2024/08/02/the-magic-behind-cloudflares-encryption-lava-lamps/
1•rantingdemon•26m ago•0 comments

I Ejected Myself Off a Truck at 80 km/h [video]

https://www.youtube.com/watch?v=jV96uhFWgmA
2•CharlesW•26m ago•0 comments

Open PDF Studio: A free, open-source PDF editor and annotator

https://github.com/OpenAEC-Foundation/open-pdf-studio
1•maxloh•29m ago•0 comments

Iran's supreme leader killed in strike, Israeli officials say

https://www.washingtonpost.com/world/2026/02/28/israel-strikes-iran-live-updates/
4•harscoat•31m ago•0 comments

Ask the clankers, then ask the humans

https://asktheclanker.com/
1•exa_byte•31m ago•0 comments

MinIO Is Dead, Long Live MinIO

https://blog.vonng.com/en/db/minio-resurrect/
5•zufallsheld•33m ago•0 comments

Show HN: IranWarLive – Automated, serverless OSINT mapping engine

https://iranwarlive.com/?v=hn
2•aggeeinn•36m ago•1 comments

Show HN: I made a tool to sync my brainstorm with AI across tools and devices

https://usenoosphere.ai/
1•mmndaniel•36m ago•0 comments

MySQL 9.6 Changes Foreign Key Constraints and Cascade Handling

https://www.infoq.com/news/2026/02/mysql-foreign-keys/
1•tanelpoder•37m ago•0 comments

Reverse Engineering Crazy Taxi, Part 1

https://wretched.computer/post/crazytaxi
2•Jasper_•38m ago•0 comments

US, Israel believe Iranian Supreme Leader Khamenei killed in strike on bunker

https://www.jpost.com/middle-east/iran-news/article-888283
5•pinkmuffinere•40m ago•0 comments

Show HN: RunbookAI – Hypothesis-driven incident investigation agent(open source)

https://userunbook.ai/
1•EmTekker•40m ago•0 comments

An Intuitive Understanding of AI Diffusion Models

https://www.bryanthornbury.com/posts/intuitive-understanding-ai-diffusion-models/
1•bthornbury•42m ago•1 comments

PiClaw – Minimal Pi Agent Sandbox

https://github.com/rcarmo/piclaw
1•kristianpaul•43m 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•10mo ago

Comments

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