frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cavaro – One platform for design docs and architecture diagrams

https://www.cavaro.io
1•curiouscharan•4m ago•1 comments

Astro and Svelte: Why I believe they're the future of web development

https://xergioalex.com/blog/astro-and-svelte-the-future-of-web-development/
1•xergioalex•6m ago•0 comments

Bounded Plasticity Simulation

https://github.com/Relational-Relativity-Corporation/bounded-plasticity-simulation
1•Oberon245•7m ago•0 comments

Clueless cops post seized crypto wallet password. $5M quickly stolen

https://arstechnica.com/tech-policy/2026/03/oops-south-korean-cops-lost-5m-in-seized-crypto-after...
2•donutshop•9m ago•0 comments

AI First Application Development

https://benkaiser.dev/ai-first-software-development/
1•benkaiser•12m ago•0 comments

The world wants to ban children from social media with grave consequences

https://www.theguardian.com/commentisfree/2026/mar/02/ban-children-social-media-biometic-data-sur...
2•doener•12m ago•0 comments

Show HN: WaitQ – queue management and waitlist system

https://waitq.app
1•azorstudio•14m ago•0 comments

How to Build Your Own Quantum Computer

https://physics.aps.org/articles/v19/24
1•tzury•16m ago•0 comments

AI Architecture Pattern Manager – Togaf ABB/SBB/PBC with Neo4J

https://github.com/azaddjan/aipatternmanager
1•azaddjan•18m ago•1 comments

Slop Definitions Were My Final Straw with Google Search

https://zsrobinson.com/posts/slop-definitions-were-my-final-straw-with-google-search/
2•zsrobinson•19m ago•1 comments

Vouch

https://vouch.sh
2•jplock•20m ago•0 comments

Musk's fossil data centres are undoing Tesla's climate benefit

https://ketanjoshi.co/2026/03/02/musks-fossil-data-centres-are-undoing-teslas-climate-benefit/
2•xvxvx•21m ago•0 comments

Exploiting Iran: A Political Timeline

https://github.com/thinkhuman/iranwest/blob/main/exploitingiran.md
1•jamesgill•22m ago•0 comments

Poll: Which VCs Are Tier 1?

https://vc-compare.vercel.app/
1•nezaj•23m ago•1 comments

Nobody ever got fired for using a struct

https://www.feldera.com/blog/nobody-ever-got-fired-for-using-a-struct
3•gz09•23m ago•0 comments

Origin of the Abbreviation i18n

http://www.i18nguy.com/origini18n.html
1•ethanpil•25m ago•0 comments

Fast Biology Bounties

https://nikomc.com/2026/03/02/bounties/
1•mailyk•25m ago•0 comments

Vibe Theory: Mathematical Derivation of Aesthetic Vibe from Text

https://github.com/xraymemory/vibetheory
1•idempotent_•25m ago•0 comments

2x Qwen 3.5 on M1 Mac: 9B builds a bot, 0.8B runs it

https://advanced-stack.com/fields-notes/qwen35-opencode-lm-studio-agentic-coding-on-m1.html
2•advanced-stack•29m ago•0 comments

Five People in Their 60s, 70s, and 80s Share How They Plan to Age at Home

https://www.nytimes.com/wirecutter/reviews/seniors-share-aging-in-place-plans/
6•bookofjoe•30m ago•1 comments

Show HN: AgentBrowser Token-efficient browser for AI agents via ASCII wireframes

https://github.com/agent-browser-io/browser
1•dokdev•32m ago•1 comments

Microsoft Creative Writer (1993)

https://classicreload.com/play/win3x-creative-writer.html
3•bikeshaving•33m ago•1 comments

Show HN: Parallax – Coordinate adversarial AI agents over durable streams

https://github.com/s2-streamstore/parallax
1•infiniteregrets•35m ago•0 comments

Closure of the Weatherradio Service in Canada

https://www.rac.ca/rac-responds-to-the-closure-of-the-weatherradio-service-in-canada/
13•da768•35m ago•5 comments

Cursor Annualized Revenue Doubles to over $2B

https://www.bloomberg.com/news/articles/2026-03-02/cursor-recurring-revenue-doubles-in-three-mont...
2•garbawarb•39m ago•0 comments

I use 5 project management tools at work, so I built a unified task dashboard

https://huddle.app
1•kjdointhings•40m ago•1 comments

Show HN: OpenTimelineEngine – Shared local memory for Claude Code and codex

https://github.com/JOELJOSEPHCHALAKUDY/open-timeline-engine
1•joeljoseph_•40m ago•1 comments

Is Code Still Relevant?

https://ajchambeaud.com/blog/is-code-still-relevant/
1•facundo_olano•40m ago•0 comments

Show HN: We filed 99 patents for deterministic AI governance(Prior Art vs. RLHF)

1•genesalvatore•42m ago•1 comments

Cowabunga Links (Link based discovery platform for creators)

https://cowabungalink.com/
1•JonHunter•43m ago•1 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!