frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Rapidly Scaffold Agents, MCP Servers, APIs, Websites on AWS

https://awslabs.github.io/nx-plugin-for-aws/
2•cogwirrel•5m ago•0 comments

Show HN: I made an app to help me learn Middle Eastern drumming

https://labs.tiffzhang.com/drums/
1•shadowfiles•7m ago•0 comments

Happy Horse AI

https://www.happy-horse-ai.ai
1•erji2233•8m ago•0 comments

The Gang: A Cooperative Texas Hold'em Bank Heist Card Game

https://boardgamegeek.com/boardgame/411567/the-gang
1•Lwrless•11m ago•0 comments

Intel Xpress Resurrection: Reviving a Forgotten EISA Beast

https://x86.fr/intel-xpress-resurrection-reviving-a-forgotten-eisa-beast/
1•ankitg12•14m ago•0 comments

Intent Security Through the Lens of Claude Code Auto Mode

https://www.lasso.security/blog/claude-code-auto-mode-vs-intent-security
1•irememberu•16m ago•0 comments

Lawyer behind AI psychosis cases warns of mass casualty risks

https://techcrunch.com/2026/03/15/lawyer-behind-ai-psychosis-cases-warns-of-mass-casualty-risks/
3•mentalgear•17m ago•1 comments

The Federal Government Is Rushing Toward AI

https://www.propublica.org/article/federal-government-ai-cautionary-tales
1•jruohonen•21m ago•0 comments

Virtual Tour of the CFS Commercial Fusion Campus (April 2026) [video]

https://www.youtube.com/watch?v=Wp1rcZ-daBU
1•mpweiher•23m ago•0 comments

I gave my AI shell access and felt uneasy – so I sandboxed it

https://github.com/sliamh11/Deus
1•sliamh11•25m ago•0 comments

What We Learned Building a Rust Runtime for TypeScript

https://encore.dev/blog/rust-runtime
1•dohguy•27m ago•0 comments

AI Will Be Met with Violence, and Nothing Good Will Come of It

https://www.thealgorithmicbridge.com/p/ai-will-be-met-with-violence-and
24•gHeadphone•29m ago•8 comments

Universal Knowledge Store and Grounding Layer for AI Reasoning Engines

https://github.com/alash3al/loci
2•alash3al•30m ago•0 comments

Give your coding agent access to runtime logs

https://www.debugy.dev
3•amitay1599•31m ago•1 comments

A 'Self-Doxing' Rave Helps Trans People Stay Safe Online

https://www.404media.co/trans-rights-privacy-online-cybersecurity-workshop-deadname-not-found/
1•01-_-•31m ago•0 comments

Optimization of 32-bit Unsigned Division by Constants on 64-bit Targets

https://arxiv.org/abs/2604.07902
1•mpweiher•32m ago•0 comments

Israel Destroys Villages in Lebanon

https://www.theguardian.com/world/2026/apr/12/how-israeli-offensive-destroyed-entire-villages-in-...
53•pera•32m ago•8 comments

Eighteen Weeks and Still Can't Read a Secret

https://liminaldr.substack.com/p/eighteen-weeks-and-still-cant-read
1•BlendedPanda•34m ago•1 comments

Palantir CEO says AI 'will destroy' humanities jobs

https://fortune.com/article/palantir-ceo-alex-karp-ai-humanities-jobs-vocational-training/
2•01-_-•36m ago•1 comments

Modern Microprocessors – A 90-Minute Guide

https://www.lighterra.com/articles/
1•Flex247A•41m ago•0 comments

Is SVG the Final Frontier?

https://svg.new/blog/is-svg-the-final-frontier
4•swazzy•46m ago•0 comments

120k USD compute credits from various providers

1•chrisvee•48m ago•1 comments

A Deep Dive into Tinygrad AI Compiler

https://tinyblog-phi.vercel.app/tinygrad
2•ppadjin123•58m ago•0 comments

Strait of Hormuz Gameplay Demo [video]

https://www.youtube.com/watch?v=XVY7WAT4OdE
1•us321•58m ago•0 comments

Lawsuit over who owns top ranked coding bootcamp Codesmith

https://michaelnovati.substack.com/p/codesmith-in-court-the-hard-parts
2•michaelnovati•1h ago•0 comments

Apple Stops Accepting Orders for Some Mac Mini and Mac Studio Models

https://www.macrumors.com/2026/04/11/some-mac-mini-mac-studio-currently-unavailable/
1•Brajeshwar•1h ago•0 comments

Salesforce and ServiceNow are squaring off in the battle for the helpdesk

https://www.theregister.com/2026/04/11/salesforce_vs_servicenow_itsm_battle/
2•Brajeshwar•1h ago•1 comments

Show HN: Bullseye2D – A Dart library for cross-platform 2D games

https://github.com/bullseye2d/bullseye2d
3•joemanaco•1h ago•0 comments

Apple update looks like Czech mate for locked-out iPhone user

https://www.theregister.com/2026/04/12/ios_passcode_bug/
50•OuterVale•1h ago•17 comments

Phyphox – Physical Experiments Using a Smartphone

https://phyphox.org/
2•_Microft•1h 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•11mo ago

Comments

semihs•11mo 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_•11mo 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•11mo 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_•11mo ago
That sounds great!