frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A mega-deal will transform the lift (elevator) industry

https://www.economist.com/business/2026/04/30/how-a-mega-deal-will-transform-the-lift-industry
1•pseudolus•1m ago•1 comments

Programmers Spend Their Time – Probably Dance

https://probablydance.com/2026/02/10/how-programmers-spend-their-time/
1•birdculture•2m ago•0 comments

Mickey Mouse is watching you: Disneyland deploys facial recognition

https://www.theguardian.com/us-news/2026/apr/28/disneyland-entrance-facial-recognition
1•Cider9986•2m ago•0 comments

The vi Family

https://lpar.ATH0.com/posts/2026/05/the-vi-family/
1•zdw•4m ago•0 comments

I built a game where AI agents compete to ship code; live WASM every 5 minutes

https://aion.quest/
1•xkoda•4m ago•1 comments

On Fundraising

https://talks.natetucker.com/p/on-fundraising
1•azhenley•7m ago•0 comments

More Than Half of Gen Z's Cancel and Renew Streaming Services for a Single Title

https://variety.com/2026/tv/news/gen-z-cancels-streaming-subs-one-show-dont-buy-games-1236739557/
1•ZeidJ•7m ago•0 comments

Anatomy of a GitHub Sponsor Memecoin Consent Gap

https://benemson.com/blog/agents/anatomy-github-sponsor-memecoin-consent-gap
1•emson•8m ago•1 comments

Researcher discovers shortcut to Mars that could cut travel time in half

https://www.livescience.com/space/mars/i-was-not-looking-for-this-scientist-accidentally-finds-sh...
1•bilsbie•8m ago•0 comments

Show HN: TubeLens – Critical analysis of YouTube (4 dimensions, 28 signals)

https://tubelens.app/en
1•mamflux•10m ago•0 comments

Genosyn – Run autonomous companies with AI

https://github.com/genosyn/genosyn
1•ndhandala•11m ago•0 comments

How much the eye tells the brain

https://pubmed.ncbi.nlm.nih.gov/16860742/
2•radeeyate•12m ago•0 comments

T2 SDE Linux Project

https://t2linux.com/about.html
1•indigodaddy•13m ago•0 comments

PCIe 8.0 Spec Draft 0.5 Released for 1TB/S Bi-Directional X16 Bandwidth

https://www.phoronix.com/news/PCIe-8.0-Draft-0.5
2•anonymousiam•16m ago•0 comments

Show HN: Pay.sh – Discover, access, and pay for any API autonomously

https://github.com/solana-foundation/pay
3•fmerian•18m ago•0 comments

Proof of Use against vibe coded software

https://fireharp.com/2026-05-06-proof-of-use-888c47815a
1•fireharp•18m ago•0 comments

EVs now holding their value longer than petrol cars

https://www.thetimes.com/business/companies-markets/article/evs-now-holding-their-value-longer-th...
2•littlexsparkee•19m ago•0 comments

Run multiple versions of the same Python library in one process

https://github.com/claude-at-work/Bubblev2
1•nexusanon•19m ago•0 comments

Recursive grep written in Go benched against a C++ and Rust variant

https://github.com/bep/grrep
1•bjornerik•21m ago•0 comments

MCP Agora open source and local cross-agent persistent memory for AI agents

https://github.com/cioffiAI/mcp-agora
1•cioffiAI•22m ago•0 comments

Lovelace.ai Launches with Context Engine Builder for Mission-Critical AI

https://lovelace.ai/articles/lovelace-emerges-from-stealth-with-industry-defining-context-engine-...
1•tmoertel•22m ago•0 comments

Sim1 – A world where you live alongside AI agents

https://www.sim1.world
1•RoniHenareh•22m ago•0 comments

Zyphra releases the ZAYA1-8B MoE model optimized for intelligence density

https://huggingface.co/Zyphra/ZAYA1-8B
1•mirzap•23m ago•1 comments

Reliable Web App Pattern for .NET

https://learn.microsoft.com/en-us/azure/architecture/web-apps/guides/enterprise-app-patterns/reli...
2•Brysonbw•23m ago•1 comments

Orbit VPS

https://github.com/KenyanRedwoods01/Orbit
1•RedwoodsKenyan•25m ago•0 comments

Data Roles Now Average 24.9 Interview Hours per Hire, Highest Across Tech Roles

https://www.interviewquery.com/p/data-roles-interview-process-2026
2•littlexsparkee•25m ago•3 comments

Mail2github: Send Email and create files in GitHub with Email content

https://github.com/ulrischa/mail2github
1•ulrischa•30m ago•0 comments

GB10 Solution Atlas is now open source, <2min cold start 100 tok/s Qwen3.6-FP8

https://github.com/Avarok-Cybersecurity/atlas
1•azeezish•31m ago•0 comments

Show HN: Vibeguard-dev/local – static AST analysis for AI-generated SQL

https://github.com/MuddySheep/vibeguard-local
2•MuddySheep•32m ago•1 comments

Teleport Contest: Porting NetHack to JavaScript and Dealing with LLM Religion

https://mazesofmenace.ai/announcement/
1•abgruszecki•33m 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•1y ago

Comments

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