frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beyond Quantum with Khrennikov

https://scottlocklin.wordpress.com/2026/04/09/beyond-quantum-with-khrennikov/
1•MrBuddyCasino•1m ago•0 comments

The Dostoevskian Moment

https://www.palladiummag.com/2026/04/11/the-dostoevskian-moment/
1•MrBuddyCasino•6m ago•0 comments

Anthropic loses appeals court bid to pause supply chain risk label

https://www.politico.com/news/2026/04/08/d-c-circuit-rejects-anthropic-plea-to-pause-supply-chain...
3•1vuio0pswjnm7•10m ago•0 comments

LLM Time

https://graydon2.dreamwidth.org/322732.html
1•sho_hn•11m ago•0 comments

We spoke to the man making viral Lego-style AI videos for Iran

https://www.bbc.com/news/articles/cjd8jrd1vnyo
1•breve•11m ago•0 comments

Ask HN: Former grok-code-fast-1 users, what coding model are you using now?

1•whycombinetor•14m ago•0 comments

When career anxiety becomes gameplay: lessons in China 'young-faculty simulator'

1•mmarian•17m ago•0 comments

Samsamelo – Silicon Valley selling trolley problem lies [fixed link]

https://lgwnncpcqsloqa4sqqqq5osup2rlqp7iiqliyu4y6vveu5jy6tlq.arweave.net/WazWieKElugDkoQhDrpUfqK4...
1•awbvious•21m ago•0 comments

AI Can't Read an Investor Deck

https://www.mercor.com/blog/Finance-tasks-ai-failures-modes/
1•gmays•22m ago•1 comments

Upstreaming Patches and the Cyber Resilience Act

https://www.thomas-huehn.com/upstreaming-patches-and-cra/
1•Brajeshwar•27m ago•0 comments

Entropy as a Measure of Surprise

https://nchagnet.pages.dev/blog/entropy-as-measure-of-surprise/
1•Brajeshwar•28m ago•0 comments

Americans still opt for print books over digital or audio versions

https://www.pewresearch.org/short-reads/2026/04/09/americans-still-opt-for-print-books-over-digit...
18•thm•34m ago•5 comments

The 'Enshittification' of the Internet [video]

https://www.youtube.com/watch?v=dCVUCdg3Uqc
2•goekjclo•36m ago•0 comments

Walked dog, did groceries, folded laundry. Claude Code shipped. Thanks Farmer

https://github.com/grainulation/farmer
4•volatilityfund•39m ago•0 comments

How a dancer with ALS used brainwaves to perform live

https://www.electronicspecifier.com/products/sensors/how-a-dancer-with-als-used-brainwaves-to-per...
2•1659447091•40m ago•0 comments

FusionCore ROS 2 sensor fusion replacing deprecated robot_localization

https://github.com/manankharwar/fusioncore
1•kharwarm•45m ago•1 comments

Agentic Engine Optimization (AEO)

https://addyosmani.com/blog/agentic-engine-optimization/
1•cdrnsf•50m ago•0 comments

The End of Eleventy

https://brennan.day/the-end-of-eleventy/
24•ValentineC•53m ago•5 comments

Used Graphify to turn incidents into a queryable knowledge graph

https://github.com/Rootly-AI-Labs/rootly-graphify-importer
2•hamzmu•1h ago•1 comments

Ze networking tool you didn't know you were looking for

https://github.com/ze-software/ze
1•ccakes•1h ago•0 comments

Metro stop is Ancient Rome's new attraction

https://www.bbc.com/travel/article/20260408-a-150-metro-ticket-to-ancient-rome
1•1659447091•1h ago•0 comments

I propose a new programming language, CPC

2•tom_gi•1h ago•1 comments

How Fake People Became Real Influencers

https://www.theatlantic.com/podcasts/2026/04/how-fake-people-became-real-influencers/686755/
1•thm•1h ago•0 comments

Show HN: Fastsleep.app (Dark UI)

https://fastsleep.app/
1•mathnorth_com•1h ago•2 comments

Multi-agent memory consistency platform

https://github.com/Agentscreator/Engram
3•simplyjosh56•1h ago•0 comments

Design.md – a clearer handoff for coding agents

https://shuffle.dev/design-md
2•avoc777•1h ago•0 comments

Software Preservation Group: C++ History Collection

https://softwarepreservation.computerhistory.org/c_plus_plus/
3•quuxplusone•1h ago•0 comments

AI models are terrible at betting on soccer- especially xAI Grok

https://arstechnica.com/ai/2026/04/ai-models-are-terrible-at-betting-on-soccer-especially-xai-grok/
1•totalmarkdown•1h ago•1 comments

recursive-mode: The Repo-Native Operating System for AI Engineering

https://repo-explainer.com/try-works/recursive-mode
1•try-working•1h ago•0 comments

Inside the Token Factory: A First-Principles Comparison of vLLM and SGLang

https://hxu296.github.io/vllm-vs-sglang/
1•hxu296•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!