frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: CameraClaw – Record what your OpenClaw does in a local sandbox

https://github.com/SharpAI/CameraClaw
1•simbaz•43s ago•0 comments

Warranty Void If Regenerated

https://nearzero.software/p/warranty-void-if-regenerated
1•Stwerner•44s ago•0 comments

Flamingo Compliance, iOS app to track tax residency days, visas, and US presence

https://flamingo.tax/
1•caroline_clrk•2m ago•1 comments

Engineering Leaders:We heard the feedback and are offering a lighter weight tool

https://www.vereda.ai/manager-mode
1•awightman•2m ago•1 comments

GitHub Copilot's effect on collaboration has stunned researchers

https://thenewstack.io/copilot-reshapes-developer-work/
1•CrankyBear•3m ago•0 comments

15.03. 1999 (27 years ago) ICQ chat where the name Counter-Strike was decided

https://old.reddit.com/r/pcgaming/comments/1ruaj61/1503_1999_27_years_ago_icq_chat_where_the_name/
1•mirzap•4m ago•0 comments

The Controversial AI Power Plant [video]

https://www.youtube.com/watch?v=KitUtjFllbg
1•johnnyApplePRNG•5m ago•0 comments

The quiet obsolescence of generosity, and a commercial alternative

https://malus.sh/blog.html
1•dTal•6m ago•0 comments

Never Trust the Science

https://adam.rochussen.xyz/p/never-trust-the-science
1•nradov•6m ago•0 comments

Two Crypto Bros Built a Real Estate Empire. Then the Homes Started to Fall Apart

https://www.wired.com/story/crypto-bros-built-a-real-estate-empire-then-the-homes-started-to-fall...
1•impish9208•9m ago•0 comments

Make your coding models create ADRs before implementation

https://github.com/Corbell-AI/Corbell
2•mercurialsolo•10m ago•0 comments

NumClass – a Python CLI classifying integers into 200 number-theory properties

https://github.com/c788630/Numclass
1•c788630•10m ago•1 comments

Tell HN: A company was billed $128K from one leaked GCP API key

3•daudmalik06•10m ago•0 comments

ThunderKittens 2.0: Even Faster Kernels for Your GPUs

https://hazyresearch.stanford.edu/blog/2026-02-19-tk-2
1•PaulHoule•11m ago•0 comments

Emergence Isn't Real

https://pastebin.com/pjSKPzwD
1•ffwd•12m ago•2 comments

Modern admin panels feel overengineered

1•giuliopanda•12m ago•0 comments

Midwest Humble: A Wave Is Coming

https://midwesthumble.substack.com/p/a-wave-is-coming
1•rmason•12m ago•0 comments

We built a runtime security layer for AI agents (instead of prompt filtering)

https://github.com/AriKernel/arikernel
1•Arikernel•12m ago•1 comments

Magda – Open-Source DAW with Integrated AI (C++/JUCE/Tracktion Engine)

https://github.com/Conceptual-Machines/magda-core
1•nomamonad•15m ago•1 comments

Ask HN: Why is this a bad idea?

2•ZLStas•15m ago•1 comments

$100 Oil Could Deliver $63B Cash Surge to U.S. Shale – Oilprice.com

https://oilprice.com/Energy/Oil-Prices/100-Oil-Could-Deliver-63-Billion-Cash-Surge-to-US-Shale.html
1•bilsbie•15m ago•0 comments

Meta, TikTok let harmful content rise after evidence outrage drove engagement

https://www.bbc.com/news/articles/cqj9kgxqjwjo
2•1vuio0pswjnm7•15m ago•0 comments

The feeling that you're getting closer to what's right

https://www.patricioalbornoz.com/en/articles/two-leaps-into-the-unknown
1•patoalbornoz•16m ago•0 comments

Get Shit Done: A Meta-Prompting, Context Engineering and Spec-Driven Dev System

https://github.com/gsd-build/get-shit-done
2•stefankuehnel•16m ago•0 comments

How to Thought Lead

https://www.swyx.io/lead
2•AnhTho_FR•16m ago•0 comments

QSCS – A deterministic substrate for distributed systems (architecture update)

https://spooksystems.io/
1•danieljameslee•18m ago•1 comments

Check This Out

https://pinealguardianvip.com/ds/indexvs.php?aff=steffest19757306&cam=CAMPAIGN
1•fitenergywell•18m ago•0 comments

BMad Method: Breakthrough Method for Agile AI Driven Development

https://www.bmad-method.org/
1•stefankuehnel•18m ago•0 comments

World War Watcher–real-time infrastructure war dashboard (Next.js 16, Three.js)

https://worldwarwatcher.com
2•tamarru•18m ago•1 comments

Show HN: Middleware for translating between AI agent protocols

https://github.com/kwstx/engram_translator
1•kwstx•21m 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!