frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Testing in Python

https://mkikta.com/posts/tests/
1•mkikta•2m ago•0 comments

Why Captain Disillusion Is Still the Goat [video]

https://www.youtube.com/watch?v=fCewGo4lvNw
1•Tomte•3m ago•0 comments

Ask HN: How much minimum karma is required for Show HN?

1•mindfluxstudios•5m ago•0 comments

Show HN: Health Economics Rust Crate

1•jph•11m ago•0 comments

LG ThinQ Terms of Use

3•tedggh•12m ago•0 comments

I created an job search result tracker app

https://ghostedai.xyz/
1•sillyfox•12m ago•0 comments

EU ban on destruction of unsold clothes and shoes enters into application

https://environment.ec.europa.eu/news/ban-destruction-unsold-clothes-and-shoes-enters-application...
1•robtherobber•12m ago•0 comments

What Rose Petals Teach Us about Induction

https://www.oranlooney.com/post/rose-petals/
1•olooney•13m ago•0 comments

Show HN: Slopsift – a local, graph-backed linter for AI writing

https://slopsift.dev/
1•NikhilVerma•14m ago•0 comments

Moldable Development

https://moldabledevelopment.com/
2•Tomte•15m ago•0 comments

Claude make Fable 5 permanent

https://simonwillison.net/2026/Jul/18/claude-make-fable-5-permanent/
2•Brajeshwar•15m ago•0 comments

AI Is Ruining Job Interviews

https://www.youtube.com/watch?v=LcQGXC1f-8s
2•root-parent•16m ago•0 comments

Show HN: Axiom toolkit – Make your ideas precise enough to be proven wrong

https://axiomreason.com
2•samcymbaluk•17m ago•0 comments

Martin Picard's Mitochondrial Theory of Mind

https://www.quantamagazine.org/martin-picards-mitochondrial-theory-of-mind-20260717/
1•bookofjoe•20m ago•0 comments

A quarter of EU power came from solar for the first time in June 2026

https://ember-energy.org/latest-insights/a-quarter-of-eu-power-came-from-solar-for-the-first-time...
2•giuliomagnifico•20m ago•0 comments

MX3D Bridge (3D printed bridge in Amsterdam)

https://archello.com/es/project/mx3d-bridge
1•eamag•21m ago•0 comments

Show HN: Scaffold a raw idea into something ship-ready in under a minute

1•xnslx•23m ago•0 comments

Show HN: iMessage is the best interface, so I built TypeScript SDK for it

https://github.com/jmisilo/imessage-sdk
2•misilojakub•30m ago•0 comments

Meta scales back plan to track keystrokes, mouse movements after staff uproar

https://nypost.com/2026/06/02/business/mark-zuckerbergs-meta-scales-back-plan-to-track-keystrokes...
1•chbint•32m ago•0 comments

Show HN: A Back end-as-a-Service for collaborative SaaS applications

https://linkedrecords.com/
1•WolfOliver•32m ago•0 comments

A Companion Robot Company Just Landed a Classroom

https://jgcarpenter.com/blog.html?blogPost=a-companion-robot-company-just-landed-a-classroom
1•MaysonL•35m ago•0 comments

Memetic transfer: ecosystem of information exchange, and the attention economy

https://suriya.cc/essays/memetic/
1•subygan•35m ago•0 comments

How can a dugnad save the web?

https://vivaldi.com/blog/how-can-a-dugnad-save-the-web/
1•filippoalbertin•36m ago•0 comments

Show HN: Leenar – Tell us what you're building, we deploy your infra

https://leenar.net/
2•Leenar_AI•40m ago•0 comments

Pareidolia

https://en.wikipedia.org/wiki/Pareidolia
1•tomasyany•42m ago•0 comments

OpenAI Makes ChatGPT ChatGPT Again

https://daringfireball.net/linked/2026/07/17/chatgpt-siegler
2•tosh•42m ago•0 comments

Show HN: Design Skills Directory – curated agent skills for UI taste and craft

https://www.designskills.directory/
2•tungtbt•43m ago•0 comments

British coder who revolutionised Ukraine's drone army on paternity leave

https://www.thetimes.com/world/russia-ukraine-war/article/russia-ukraine-war-drones-occamx-softwa...
2•wyclif•44m ago•0 comments

Abliterated Kimi K3 for blackbox software red teaming

https://huggingface.co/audnai/penclaw-Kimi-K3.0-abliterated-GGUF
3•ozgurozkan999•46m ago•0 comments

I vibe coded a free offline Math game for kids

https://github.com/abhas9/escape-run
2•redcat99•46m 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!