frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The State of AI in the Enterprise 2026

https://www.deloitte.com/us/en/what-we-do/capabilities/applied-artificial-intelligence/content/st...
1•swolpers•1m ago•0 comments

Show HN: Moveet – real-time fleet simulator with A* pathfinding on real roads

https://github.com/ivannovazzi/moveet
1•ivannovazzi•2m ago•0 comments

Claude 2028 – For a More Perfect Union

https://claude2028.org/
2•jonbaer•2m ago•0 comments

AutoKernel: Autoresearch for GPU Kernels

https://github.com/RightNow-AI/autokernel
3•frozenseven•6m ago•0 comments

Passkeys were supposed to replace passwords, but they're failing

https://www.howtogeek.com/passkeys-were-supposed-to-replace-passwords-but-theyre-failing-for-the-...
1•vdelitz•7m ago•1 comments

Zen Fascists Will Control You

https://www.ianbetteridge.com/zen-fascist-wi/
1•brunohaid•9m ago•0 comments

Compact-dict – a cache-local, linear probing hash map in Rust

https://github.com/gustawdaniel/compact-dict
2•gustawdaniel•10m ago•1 comments

Prisoner's Dilemma in World Baseball Classic for Mexico and Italy Threatens USA

1•travisjungroth•11m ago•0 comments

I'm going to build my own OpenClaw, with blackjack and bun

https://github.com/rcarmo/piclaw
2•rcarmo•12m ago•0 comments

I Reduced 5 hours of Testing my Agentic AI applcaition to 10 mins

https://github.com/onepaneai/mantis
1•ashmil•13m ago•1 comments

SpacetimeDB: A Short Technical Review

https://strn.cat/w/articles/spacetime/
1•quantumwoke•15m ago•0 comments

Show HN: Lightsecond Video Surveys

https://lightsecond.io/
2•dmonn•16m ago•0 comments

SpaceX launches 15K-pound TV satellite to orbit on its 30th mission of the year

https://www.space.com/space-exploration/launches-spacecraft/spacex-launches-15-000-pound-tv-satel...
2•Brajeshwar•16m ago•0 comments

Story of Weda Bay: How nature is being sacrificed for mining

https://www.theguardian.com/environment/ng-interactive/2026/mar/11/how-mining-threatens-the-world...
2•defrost•19m ago•0 comments

Download Xiaohongshu Video

https://downloadxiaohongshuvideo.com/
2•Evan233•20m ago•0 comments

C++26: The Oxford Variadic Comma

https://www.sandordargo.com/blog/2026/03/11/cpp26-oxford-variadic-comma
3•ingve•21m ago•0 comments

Axllm: DSPy for TypeScript

https://axllm.dev/
2•handfuloflight•23m ago•0 comments

Mathematics is undergoing the biggest change in its history

https://www.newscientist.com/article/2518526-mathematics-is-undergoing-the-biggest-change-in-its-...
5•jonbaer•23m ago•1 comments

Coding agents for production iOS: a senior engineer's setup for 2x the output

https://ignatovv.me/blog/coding-agents-for-production-ios/
3•tosh•23m ago•0 comments

Microsoft patents system for AI helpers to finish games for you

https://www.dexerto.com/gaming/microsoft-patents-system-for-ai-helpers-to-finish-games-for-you-33...
3•JeanKage•25m ago•0 comments

Millennium Challenge 2002

https://en.wikipedia.org/wiki/Millennium_Challenge_2002
1•vrganj•27m ago•0 comments

PromptVault free tool for multi agentic development

2•bohdokas•28m ago•0 comments

Ask HN: How to Plan for a Better GTM for a Digital SaaS Product B2B

1•sriramgonella•31m ago•0 comments

The 'number station' sending mystery messages to Iran

https://www.ft.com/content/86c4a4ca-ca06-4fc8-90fe-4f46357b804f
3•thm•32m ago•0 comments

White-Box Attacks on PhotoDNA Perceptual Hash Function

https://eprint.iacr.org/2026/486
1•_____k•33m ago•0 comments

Michael Faraday: Scientist and Nonconformist (1996)

http://silas.psfc.mit.edu/Faraday/
3•o4c•39m ago•0 comments

An open letter to Grammarly and other plagiarists, thieves and slop merchants

https://www.moryan.com/an-open-letter-to-grammarly-and-other-plagiarists-thieves-and-slop-merchants/
4•october8140•44m ago•0 comments

Reaching net zero by 2050 'cheaper for UK than one fossil fuel crisis'

https://www.theguardian.com/environment/2026/mar/11/reaching-net-zero-by-2050-cheaper-for-uk-than...
3•ljf•46m ago•0 comments

4n6Img Project

1•Hoxed•50m ago•0 comments

Capital Isn't Destiny

https://writing.nikunjk.com/p/capital-isnt-destiny
2•tosh•51m 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!