frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hive: A swarm of AI agents evolving code together

https://hive.rllm-project.com/
1•frozenseven•43s ago•1 comments

Fossil: Login Groups

https://fossil-scm.org/home/doc/trunk/www/caps/login-groups.md
1•thunderbong•3m ago•0 comments

The Displacement of Cognitive Labor and What Comes After

https://sahajgarg.github.io/blog/cognitive-labor/
1•salkahfi•8m ago•0 comments

Dell Federal Systems holds $18.8M ICE contract for Microsoft

https://unplugice.org/collaborator/dell
1•doener•10m ago•0 comments

Cryptomator Is on Sale Now

1•_janc_•12m ago•0 comments

SauceLabs launches AI intent tool

https://thenewstack.io/ai-test-authoring-launch/
1•steveharrison•13m ago•1 comments

I built a financial data platform as a static site (and what I gave up)

https://blog.cerrorism.com/blog/2026-03-12
2•cerrorism•17m ago•0 comments

A Review of Dice That Came with the White Castle

https://boardgamegeek.com/thread/3533812/a-review-of-dice-that-came-with-the-white-castle
2•doener•19m ago•0 comments

Ask HN: What do you look for in your first 10 hires?

3•neilk17•20m ago•0 comments

LHCb Collaboration discovers new proton-like particle

https://home.cern/news/news/physics/lhcb-collaboration-discovers-new-proton-particle
2•voctor•21m ago•0 comments

Needle in the haystack: LLMs for vulnerability research

https://devansh.bearblog.dev/needle-in-the-haystack/
1•uneven9434•29m ago•0 comments

Israel to expand Lebanon ground campaign, fuels fears of prolonged occupation

https://www.theguardian.com/world/2026/mar/16/israel-expansion-lebanon-ground-campaign-fears-prol...
3•pabs3•33m ago•0 comments

Identity protection firm Aura suffers data breach exposing 900 000 records

https://cyberinsider.com/identity-protection-firm-aura-suffers-data-breach-exposing-900000-records/
1•nalekberov•34m ago•0 comments

Gorantula – multi-agent AI research platform with parallel web crawlers

https://github.com/Andyi955/Gorantula
1•bruh212•34m ago•0 comments

AI delusions, self-harm, unhealthy emotional attachments 'Think I love you'

https://nypost.com/2026/03/18/business/bombshell-ai-study-chatbots-fueling-delusions-self-harm-an...
1•1vuio0pswjnm7•40m ago•0 comments

ATS Copilot

https://apps.apple.com/in/app/ats-copilot/id6760128345
1•srsstyle•40m ago•0 comments

Pervaziv AI GitHub Code Review App

https://github.com/marketplace/pervaziv-ai-code-review
2•asmprogrammer5•43m ago•1 comments

Anchor: Hardware-based authentication using SanDisk USB devices

1•rewant•43m ago•0 comments

Crowdsource AI-friendly knowledge base about Taiwan

https://github.com/frank890417/taiwan-md
2•phantomathkg•44m ago•0 comments

Contemporary Australian Composers: Alan Lamb (2000)

https://www.rainerlinz.net/NMA/22CAC/lamb.html
2•ipnon•47m ago•0 comments

Theodosian Land Walls of Constantinople

https://turkisharchaeonews.net/object/theodosian-land-walls-constantinople
1•bcraven•48m ago•0 comments

Autoresearching Apple's "LLM in a Flash" to run Qwen 397B locally

https://twitter.com/danveloper/status/2034353876753592372
2•rzk•49m ago•0 comments

Show HN: Supre – A prompt engineer for Suno AI's Style of Music field

https://supre.online/en/tool
2•sdemela•50m ago•0 comments

Human Proof: the rarest thing is proof a human was there

https://humanproof.art
1•gkibakaya•50m ago•0 comments

Secure Exec – secure Node.js execution without a sandbox

https://secureexec.dev/
1•M4v3R•58m ago•0 comments

My hobby: running deranged surveys

https://nablatheta.substack.com/p/my-hobby-running-deranged-surveys
1•leogao•59m ago•0 comments

Figma but for AI Agents

https://paper.design
3•802e65bc-e259•1h ago•0 comments

Did the British unleash biological warfare against Washington's troops?

https://news.harvard.edu/gazette/story/2026/03/did-the-british-unleash-biological-warfare-against...
2•XzetaU8•1h ago•0 comments

Show HN: AI Coding Factory

https://github.com/jaksa76/ai-coding-factory
2•jaksa•1h ago•1 comments

OpenClaw for Research Writing

https://trybibby.com/
1•nilofer99•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•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!