frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Specification-Driven Development framework for agent-native development

https://specdd.ai
1•addvilz•1m ago•0 comments

Low-Compilation-Cost Register Allocation in LLVM-Based Binary Translation

https://dl.acm.org/doi/abs/10.1145/3767295.3803591
1•matt_d•3m ago•0 comments

Germany Overtakes US in Ammunition Production Capacity

https://www.newsweek.com/germany-overtakes-us-in-ammunition-production-capacity-11886409
1•vrganj•4m ago•0 comments

Ask HN: What are you doing during inference?

2•petesergeant•5m ago•1 comments

Scaleway raises cloud prices after 3 years of absorbing costs

https://www.scaleway.com/en/blog/a-transparent-update-on-scaleway-pricing/
1•latentframe•5m ago•0 comments

What's next for voice dictation apps

1•priyesh2000•5m ago•0 comments

PEP 661: Sentinel values, has been accepted 5 years later

https://peps.python.org/pep-0661/
1•azhenley•6m ago•0 comments

Webxdc: Secure mini apps shared in a chat

https://webxdc.org/
1•janandonly•6m ago•0 comments

Ask HN: How do you differentiate with AI coding interviews?

1•marcell•8m ago•0 comments

Using Codex and ForgeCAD to Make a Model of the Teenage Engineering KOII

https://twitter.com/theopuslabs/status/2049195007404380244
1•opuslabs•9m ago•0 comments

Virtualisation on Apple Silicon Macs is different

https://eclecticlight.co/2026/04/29/virtualisation-on-apple-silicon-macs-is-different/
2•ingve•10m ago•0 comments

AWS launches Amazon Quick desktop AI assistant

https://aws.amazon.com/quick/
1•nine_minutes•11m ago•1 comments

HardenedBSD Is Now Officially on Radicle

https://hardenedbsd.org/article/shawn-webb/2026-04-26/hardenedbsd-officially-radicle
1•lftherios•12m ago•0 comments

Building the Data Backbone Behind Real-Time Financial Systems

https://alltechmagazine.com/real-time-financial-data-architecture-gayathri-balakumar/
1•dekhna•19m ago•0 comments

I built the LocalStack alternative I wanted (real containers, not mocks)

https://floci.io
2•hectorventura•20m ago•0 comments

New Google Networks Tuned Up for GenAI Inference and Training

https://www.nextplatform.com/connect/2026/04/28/new-google-networks-tuned-up-for-genai-inference-...
1•rbanffy•20m ago•0 comments

Software Heritage

https://www.softwareheritage.org/
1•p4bl0•22m ago•0 comments

Start with the sensors, then design the rest: How Zoox built its robotaxi

https://arstechnica.com/cars/2026/04/start-with-the-sensors-then-design-the-rest-how-zoox-built-i...
1•rbanffy•22m ago•0 comments

You can beat the binary search

https://lemire.me/blog/2026/04/27/you-can-beat-the-binary-search/
2•ingve•26m ago•0 comments

The advantages of an email-driven Git workflow (2018)

https://drewdevault.com/blog/Email-driven-git/
1•divbzero•26m ago•0 comments

The Final Form of Software Development

https://blog.zksecurity.xyz/posts/end-coding/
5•yoichi-hirai•29m ago•0 comments

Dear GitHub, Don't sell to Microsoft (2018)

https://github.com/dear-github/dear-github/issues/302
3•genzer•34m ago•0 comments

Any front end repo navigable with mock data, no back end

1•tamalsen123•38m ago•0 comments

Artificial Intelligence in Journalism

https://cnti.org/issue-primers/artificial-intelligence-in-journalism/
2•tijana3290•39m ago•0 comments

Woman's Talkspace therapy app sessions exposed in court

https://www.proofnews.org/womans-talkspace-therapy-app-sessions-exposed-in-court/
1•erehweb•43m ago•0 comments

Q – A Slim LLM CLI

https://github.com/lazyville/qsh
1•mastercoder8•43m ago•0 comments

We built a programming language based on ternary logic (−1, 0, +1)

https://github.com/eriirfos-eng/ternary-intelligence-stack
1•rfi-irfos•43m ago•0 comments

Show HN: PatchWork – A 5-pass dedup pipeline to merge N resumes into one profile

https://usepatch.work/
1•mcohrs•47m ago•0 comments

Update on AgentCheck

https://pypi.org/project/pygent-test/
1•ash_ai•47m ago•0 comments

Bypassing DPI with eBPF Sock_ops

https://bora.sh/bypassing-dpi-with-ebpf/
2•signa11•55m 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!