frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Argus – VSCode debugger for Claude Code sessions

https://github.com/yessGlory17/argus
1•lydionfinance•35s ago•0 comments

Buhurt board game – Knight fight [video]

https://www.youtube.com/watch?v=DN7NsfMH8g4
1•melor•45s ago•0 comments

AI Agent Authentication and Authorization IETF RFC Draft

https://datatracker.ietf.org/doc/draft-klrc-aiagent-auth/
1•mooreds•1m ago•0 comments

44% on ARC-AGI-1 in 67 cents

https://github.com/mvakde/mdlARC/
1•evilmathkid•2m ago•1 comments

I made a WeTransfer clone with Darth Vader vibes

https://DropVader.com
1•hitsnoozer•2m ago•0 comments

Web of Documents (2019)

https://blog.danieljanus.pl/2019/10/07/web-of-documents/
1•nathell•3m ago•0 comments

In Which We Give Our AI Agent a Map (and It Stops Getting Lost)

https://seylox.github.io/2026/03/05/blog-agents-meta-repo-pattern.html
1•Seylox•3m ago•1 comments

Show HN: Jpa-fetch – JPA fetch control that doesn't suck

https://github.com/alterioncorp/jpa-fetch
1•alexlitovsky•3m ago•0 comments

OpenAI launched symphony, turn project work into isolated, autonomous runs

https://github.com/openai/symphony/blob/main/README.md
1•vampiregrey•3m ago•0 comments

Doing My Taxes with Claude

https://theautomatedoperator.substack.com/p/claude-almost-nails-my-taxes-and
1•idopmstuff•3m ago•0 comments

JJ LSP Follow Up

https://matklad.github.io/2026/03/05/jj-lsp-followup.html
1•emschwartz•4m ago•0 comments

Show HN: In 2026, I'm building a conversational WordPress form plugin

https://wp.forms.md/
1•darkhorse13•4m ago•0 comments

Show HN: Cook – A portable terminal AI agent (OSS, MIT)

https://getcook.dev
1•vadepaysa•4m ago•0 comments

Brainworm – Hiding in Your Context Window

https://www.originhq.com/blog/brainworm
3•T-RN-R•6m ago•0 comments

TypeScript surpassed Python, JavaScript to become most-used language on GitHub

https://github.blog/ai-and-ml/generative-ai/how-ai-is-reshaping-developer-choice-and-octoverse-da...
1•7777777phil•8m ago•0 comments

Self-host an eBook library with kobo and library integration

https://www.markpitblado.me/blog/selfhost-an-ebook-library-with-kobo-and-library-integration/
1•speckx•8m ago•0 comments

Let Me Uninstall Spotlight

https://medium.com/@hbbio/let-me-uninstall-spotlight-1fe64a3466ab
1•hbbio•8m ago•0 comments

Show HN: My first project, a native Win32/C++17 assistant with zero dependencies

https://github.com/94BILLY/NOVA
1•94BILLY•8m ago•1 comments

Show HN: Msplat – 3D Gaussian Splatting training in ~90s on M4 Max, native Metal

https://github.com/rayanht/msplat
1•rayanht•9m ago•0 comments

Show HN: LPBacked – Find and connect with limited partners behind venture funds

https://lpbacked.com
1•veritas9•9m ago•0 comments

BBC says 'irreversible' trends mean it will not survive without major overhaul

https://www.theguardian.com/media/2026/mar/05/bbc-charter-renewal-tv-licence-major-overhaul
3•beardyw•11m ago•0 comments

Pg_plan_advice: Plan Stability and User Planner Control for PostgreSQL?

http://rhaas.blogspot.com/2026/03/pgplanadvice-plan-stability-and-user.html
1•gfloyd•12m ago•0 comments

Show HN: Ralph Review – OSS code review that loops fixes until no issues remain

https://github.com/kenryu42/ralph-review
1•kenryu•12m ago•0 comments

Situational Awareness (2024)

https://situational-awareness.ai/
1•piinbinary•13m ago•0 comments

Show HN: Tymeslot – Open-source cal.com alternative built with Elixir/Phoenix

https://github.com/tymeslot/tymeslot
1•luka-thb•13m ago•0 comments

The End of Eleventy

https://brennan.day/the-end-of-eleventy/
2•dzogchen•13m ago•0 comments

High-performance TRAMP back end using JSON-RPC instead of shell parsing

https://github.com/ArthurHeymans/emacs-tramp-rpc
3•PaulHoule•13m ago•0 comments

Show HN: Nemilia – multi-agent AI workspace in a single HTML file, no back end

https://github.com/luislopez1212/nemilia
2•Nemilia•13m ago•0 comments

Show HN: Liftstack – Snippet-level A/B testing for CRM marketers

https://www.liftstack.com/
1•iamacyborg•14m ago•0 comments

How to build great products (2013)

https://defmacro.org/2013/09/26/products.html
1•ozgune•14m 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!