frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Asmtp – SMTP for Agents

https://www.asmtp.net/
1•nickcrews•2m ago•0 comments

Click, Agree, and Your Kids Are Bound: Court Compels Minor Children to Arbitrate

https://natlawreview.com/article/click-agree-and-your-kids-are-bound-court-compels-minor-children...
1•petethomas•4m ago•0 comments

Show HN: Vecdb – local-first hybrid vector database in Rust (HNSW and BM25)

https://github.com/zaydmulani09/vecdb
1•zaydmulani•4m ago•0 comments

Why Outsource Your Auth System and How to Sell the Decision to Your Company

https://fusionauth.io/articles/identity-basics/outsource-auth-system-blueprint
1•mooreds•9m ago•0 comments

Show HN: Spud – cross-platform remote control, optimised for gaming

https://github.com/xfoa/spud
1•foax•14m ago•0 comments

The Merge

https://blog.samaltman.com/the-merge
1•skinfaxi•22m ago•1 comments

Anthropic co-founder to present AI encyclical alongside Pope Leo XIV

https://www.vaticannews.va/en/pope/news/2026-05/pope-leo-xiv-first-encyclical-magnifica-humanitas...
3•cucho•34m ago•0 comments

Don't Sign in with Google

https://twitter.com/the_smart_ape/status/2055941633179283523
5•DeusExMachina•35m ago•0 comments

Built an API client with age-encrypted vault for secrets

https://github.com/xaaha/hulak
1•xaaha•38m ago•1 comments

Meta Reassigns 7k Employees to Focus on A.I

https://www.nytimes.com/2026/05/18/technology/meta-reassigns-7000-employees-ai.html
6•xnx•39m ago•2 comments

MIT 14.12 Economic Applications of Game Theory, Fall 2025

https://www.youtube.com/watch?v=WRibE2nt8wM
2•mdp2021•42m ago•0 comments

Key landmark regulations against 'forever' toxins removed by Trump admin

https://www.cnn.com/2026/05/18/health/trump-pfas-rollback-wellness
6•zzzeek•43m ago•0 comments

Intern gets inspired by Bun to rewrite codebase into assembly

https://twitter.com/KashyapVisharad/status/2055239392147718394
2•sundarurfriend•45m ago•1 comments

Canceled by Hinge

https://www.theatlantic.com/ideas/2026/03/hinge-banning-dating-apps-matchgroup/686445/
4•8f2ab37a-ed6c•46m ago•3 comments

APIMatic – Type-safe SDKs for 7 languages from an OpenAPI spec

https://www.apimatic.io
1•m3h•47m ago•1 comments

Click

https://clickclickclick.click/
59•andrewzeno•50m ago•7 comments

Manchester Code Made Bits Behave

https://spectrum.ieee.org/manchester-code-ieee-milestone
1•jnord•50m ago•0 comments

Super-Adaptable Mayhem 10 Swarming Drone Evolved from the Switchblade

https://www.twz.com/air/super-adaptable-mayhem-10-swarming-drone-evolved-from-the-switchblade
2•breve•51m ago•0 comments

My blog was hacked and Claude and I just fixed it

https://lengrand.fr/my-blog-was-hacked-and-claude-and-i-just-fixed-it/
1•jlengrand•53m ago•0 comments

An asteroid discovered days ago will narrowly miss Earth – RNZ News

https://www.rnz.co.nz/news/world/595636/an-asteroid-discovered-days-ago-will-narrowly-miss-earth
7•colinprince•54m ago•0 comments

If AI can translate instantly, why learn another language?

https://theconversation.com/if-ai-can-translate-instantly-why-learn-another-language-280310
1•0in•55m ago•0 comments

A New Look for Express

https://expressjs.com/en/blog/2026-05-18-a-new-look-for-express/
1•patrikcsak•55m ago•0 comments

Musk says Tesla unsupervised FSD will be 'widespread' in the US by year-end

https://electrek.co/2026/05/18/musk-unsupervised-fsd-widespread-us-end-of-year-smart-mobility-sum...
3•breve•55m ago•2 comments

Human Bottlenecks

https://borretti.me/article/human-bottlenecks
2•jger15•57m ago•0 comments

Starship's Twelfth Flight Test

https://www.spacex.com/launches/starship-flight-12
3•bookmtn•58m ago•0 comments

Updated Debian 13: 13.5 released

https://www.debian.org/News/2026/20260516
1•doener•59m ago•0 comments

Show HN: FlashAttention-2 in Cute, from Scratch

https://blog.echen.io/p/flashattention-2-in-cute-from-scratch/
1•echen314•59m ago•1 comments

Tech bros say AI can be your best friend. Experts explain why it can't

https://www.rnz.co.nz/life/wellbeing/tech-bros-say-ai-can-be-your-best-friend-experts-explain-why...
5•billybuckwheat•59m ago•0 comments

AI-Governed EV Charging Could Extend Battery Life Nearly 23%

https://www.thedrive.com/news/ai-governed-ev-charging-could-extend-battery-life-nearly-23
4•breve•1h ago•0 comments

Show HN: Handoff – preserve coding context when agents run out of tokens

https://github.com/TStansel/handoff
1•tstansel•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•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!