frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Incident with Github.com

https://www.githubstatus.com/incidents/zkxwbgr0cnmx
4•kevcampb•1m ago•0 comments

A Noob Learns FFT

https://entropicthoughts.com/fft
1•surprisetalk•1m ago•0 comments

Show HN: An AI market analyst that must cite evidence for every line it draws

https://github.com/maddogfinance/dsh-trading
1•celineycn•2m ago•0 comments

"Mad dogs and ": Heatwave economics – summer 2026

https://adamtooze.substack.com/p/chartbook-467-mad-dogs-and-heatwave
1•sasvari•2m ago•0 comments

Show HN: StressingLLMs – Complexity Benchmark

https://alexander-hanel.github.io/StressingLLMs/
1•__alexander•2m ago•0 comments

Leaf 5 released: a PHP framework built for humans and AI agents

https://blog.leafphp.dev/posts/leaf-5
1•mychi•2m ago•0 comments

Two API calls exposed AI's hidden reasoning [video]

https://www.youtube.com/watch?v=P1v1-2CCKD0
1•eamag•3m ago•0 comments

Deep Orange 17, a solar-integrated, energy-positive electric vehicle

https://news.clemson.edu/clemson-university-unveils-deep-orange-17-a-solar-integrated-energy-posi...
1•geox•3m ago•0 comments

Recalls surge for vehicles as parked cars are bursting into flames.

https://www.washingtonpost.com/business/2026/08/17/they-were-told-park-outside-then-their-cars-bu...
1•bookofjoe•4m ago•1 comments

GitHub down again? no PR access

8•yodon•4m ago•4 comments

What breaks if I delete this file? React tooling can't answer that

https://blog.crossui.com/2026/08/what-breaks-if-i-delete-this-file
1•linbnet•5m ago•0 comments

Hard Problems and Heuristic Answers

https://stochastic.blog/hard-problems-and-heuristic-answers/
1•Anon84•5m ago•0 comments

Show HN: 1667, a terminal UI for writing fiction with language models

https://1667.ai/
3•refsab•6m ago•1 comments

Hamilton Morris on His Darkest Research Story [video]

https://www.youtube.com/watch?v=H8M1y3c3iiM
1•binyu•6m ago•0 comments

Securing the Infrastructure of Intelligence

https://twitter.com/JensenHuang/status/2089331487342829862
1•tosh•6m ago•0 comments

Tell HN: GitHub Is Overloaded

18•SpyCoder77•6m ago•4 comments

Rodney Mullen invented over 40 skateboard tricks and patented none of them

https://rodney.onbolts.com
1•mjbonov•8m ago•0 comments

The root cause I was certain of was wrong

https://github.com/mnaza/condition-control/blob/main/docs/dfs-was-not-the-bug.md
1•mnaza•9m ago•0 comments

Dario Amodei admits AI Suffers from a Crisis of Trust...

https://fortune.com/2026/08/16/dario-amodei-anthropic-ai-trust-crisis-regulation-frontier-open-mo...
1•newsomix9xl•9m ago•1 comments

Firefox 154 Now Available with "Manage AI" Quick Action

https://www.phoronix.com/news/Firefox-154-Released
1•DemiGuru•10m ago•0 comments

Ask HN: Is classical AI research still being done because it helps modern AI?

3•amichail•13m ago•0 comments

You Haven't Made a Real Decision in Three Weeks. Neither Have I

https://medium.com/@pcodesdev/you-havent-made-a-real-decision-in-three-weeks-neither-have-i-a1f11...
2•pcodesdev•14m ago•0 comments

Agent skills should be compiled, not just read

https://sigilagent.com/blog/agent-skills-should-be-compiled.html
4•jayanaka98•14m ago•0 comments

I built an AI that outputs real, editable PowerPoint files

https://www.slaide.de
2•ogiermannluk•14m ago•1 comments

Show HN: Rate any US neighborhood 0 to 10, and the API behind it

https://atlasblock.dev/rate
1•canvasowl•15m ago•0 comments

Population Bottleneck

https://en.wikipedia.org/wiki/Population_bottleneck
1•thunderbong•16m ago•0 comments

Cialis is an erectile dysfunction drug. Could it also help you live longer?

https://www.npr.org/2026/08/17/nx-s1-5928263/cialis-viagra-tadalafil-longevity-heart-health
3•brandonb•17m ago•0 comments

AI Agents Made Me Rethink Leadership

https://allen.bargi.org/notes/leadership-management-and-supervision/
1•allenb•18m ago•0 comments

ZLang – a sovereign execution layer for ZDOS

https://github.com/high-cde/Zlang
1•High-cde•18m ago•0 comments

Show HN: Slivingdoc, conflict-resolving notebook for agents w. S3 backend

https://www.slivingdoc.dev/
1•baalimago•20m 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!