frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: WorkBase – local-first project manager where a project is a tree

https://github.com/vocso-com/WorkBase
1•vocso•4m ago•0 comments

Nine Indicted by Taiwan over Illegal Export of Nvidia B300 GPUs to China

https://www.tomshardware.com/tech-industry/artificial-intelligence/nine-indicted-by-taiwan-over-i...
1•geoffbp•5m ago•0 comments

Jonathan Blow – Preventing the Collapse of Civilization (2019) [video]

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

Show HN: Maya Calendar

https://mcal.qt.ax/
1•quantum5•6m ago•0 comments

Show HN: AI for people that still browse the web

https://thisisrobin.ai/
1•nikolas1814•7m ago•0 comments

The Great Vowel Shift

https://en.wikipedia.org/wiki/Great_Vowel_Shift
1•samcgraw•7m ago•0 comments

Why the Largest Megaproject Collapsed [video]

https://www.youtube.com/watch?v=GbB3vFfiaVU
1•simonebrunozzi•10m ago•0 comments

The Teaser Period: Why the AI Boom Is Built to Break

https://www.groundbrkr.com/p/the-teaser-period-why-the-ai-boom
1•root-parent•15m ago•0 comments

Qwen 3.6 is now much easier to run locally on your Mac, thanks to JetBrains

https://www.neowin.net/news/qwen-36-is-now-much-easier-to-run-locally-on-your-mac-thanks-to-jetbr...
5•bundie•16m ago•0 comments

Gray Goo

https://en.wikipedia.org/wiki/Gray_goo
1•mkl95•16m ago•0 comments

The Government Report That Made Me Stop Trusting Our Statistical Agencies

https://econjared.substack.com/p/the-government-report-that-made-me
2•root-parent•17m ago•0 comments

Show HN: Nauma new features (financial planning)

1•alx_sukhanov•21m ago•0 comments

Greg Abbott says data centers:'basically dug their own grave'

https://www.businessinsider.com/greg-abbott-texas-data-centers-backlash-2026-8
5•root-parent•21m ago•0 comments

DDD, Hexagonal, Onion, Clean, CQRS, How I put it all together (2017)

https://herbertograca.com/2017/11/16/explicit-architecture-01-ddd-hexagonal-onion-clean-cqrs-how-...
1•gregsadetsky•25m ago•0 comments

Nvidia Jetson Orin drone kills 3 in July Russia attack on Ukraine gas station

https://www.nytimes.com/2026/08/24/world/europe/ukraine-war-nvidia-ai-autonomous-drones.html
2•ncr100•25m ago•1 comments

Harvard Is Selling a $699 Course Taught by A.I. Clones of Its Faculty

https://www.nytimes.com/2026/08/22/business/dealbook/harvard-ai-faculty.html
3•bookofjoe•27m ago•2 comments

Apple Watch Alerted Runner to Serious Heart Problem

https://www.macrumors.com/2026/08/20/apple-watch-alerted-runner-to-heart-problem/
2•speckx•28m ago•0 comments

Porsche Inks $1.5B AI Deal with India's Tata Consultancy

https://www.bloomberg.com/news/articles/2026-08-24/porsche-inks-1-5-billion-ai-deal-with-india-s-...
2•johnbarron•31m ago•0 comments

"Model Effort" Has It Backwards

https://diverging.run/checkpoints/human-effort-not-model-effort/
1•shay_ker•31m ago•0 comments

Continuous Prompt Evaluation

https://kiro.dev/blog/continuous-prompt-evaluation/
2•ruptwelve•31m ago•0 comments

I can't prove it, but I think AI is causing me brain damage

3•nyxtom•31m ago•2 comments

The John Dvorakification of the blogosphere (2006)

https://web.archive.org/web/20060322062548/http://scobleizer.wordpress.com/2006/03/05/the-john-dv...
2•tolerance•31m ago•0 comments

A Claude Code skill that recovers export-blocked Kindle highlights

https://github.com/l3a0/claude-plugins
9•l3a0•32m ago•0 comments

How to spot a stupid person with Carlo Cipolla's "golden law of stupidity"

https://bigthink.com/mini-philosophy/golden-law-of-stupidity/
4•speckx•32m ago•0 comments

Using Models to Create Models of New York City

https://petersobot.com/blog/using-models-to-create-models-of-new-york-city/
1•psobot•32m ago•0 comments

OpenOx – A Protocol for Self-Evolving Agents

https://openox.ai/
3•ziyzhu•33m ago•0 comments

On Average: The choice in maximizing expected value

https://eehh-stanford.github.io/monkeys_uncle/posts/means_to_ends/
3•anigbrowl•35m ago•0 comments

Show HN: School chaos. Zero stress. Nuet organizes it all

https://www.nuet.ai/
2•wowinter15•36m ago•0 comments

Mistral and Humain Announce Colab to Advance AI in Saudi Arabia and Regionally

https://mistral.ai/news/mistral-x-humain/
3•leumon•36m ago•0 comments

Fuck Your Groupthink

1•shoman3003•36m 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!