frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I think this AI models are making us stupid and the reason is their interface

2•aveshusmangagda•2m ago•0 comments

The Case of the Missing SR-71 Blackbird

https://aviationweek.com/podcasts/check-6/podcast-case-missing-blackbird
1•Betelbuddy•4m ago•0 comments

New Satellite Engine Could Use Earth's Atmosphere to Stay in Orbit Indefinitely

https://scitechdaily.com/new-satellite-engine-could-use-earths-atmosphere-as-fuel-to-stay-in-orbi...
1•GordonS•4m ago•0 comments

Rulers of the childless land: A response to the AGMAI

https://proofsandprompts.com/2026/09/24/rulers-of-the-childless-land-a-response-to-the-agmai/
1•Zsfe510asG•5m ago•0 comments

The Flu Alarm Is Armed – and This Winter, It Gets Graded

https://laggingtruth.substack.com/p/the-flu-alarm-is-armed-and-this-winter
1•jaek913•6m ago•1 comments

Show HN: Ephemeral runner for JEV-style models

https://github.com/Partysun/jigor
1•zatsepin•7m ago•0 comments

Show HN: I made HACKER AI for your vibecoded app

https://www.netherite.uz
1•apexxx•7m ago•0 comments

The Nine-Person Game Team Will Soon Outperform a AAA Game Studio

https://www.clairvoyanceai.com/blog/the-nine-person-game-team-will-soon-outperform-a-aaa-game-studio
1•draginol•8m ago•0 comments

Show HN: Ogre MCP – Let your AI agent see your WoW Classic game state

https://github.com/bttf/ogremcp
1•bttf•8m ago•0 comments

The Office Harness for AI Agents – Spreadsheets,Docs,Slides,PDF in One Runtime

https://github.com/dream-num/univer
1•qwbfsa•8m ago•0 comments

There is more to code review than (automatable) detection

https://www.adaptivecapacitylabs.com/2026/08/24/there-is-more-to-code-review-than-automatable-det...
1•utiiiD•8m ago•0 comments

All Quiet on the AI Front: The Future of Undergraduate Math Research

https://arxiv.org/abs/2609.28615
3•Betelbuddy•11m ago•0 comments

Heaviside-1

https://www.arenaphysica.com/publications/heaviside-1
1•avidiax•14m ago•1 comments

The Art Forger Who Became a National Hero

https://priceonomics.com/the-art-forger-who-became-a-national-hero/
1•bookofjoe•14m ago•0 comments

What I Remember

https://stevenwaterman.uk/what-i-remember/
1•StevenWaterman•17m ago•0 comments

Whistleblower: Driscoll berries sent to Canada w excess chemicals

https://www.cbc.ca/news/canada/montreal/whistleblower-allege-driscoll-s-berries-9.7359158
1•randycupertino•19m ago•1 comments

A Roman Name for Software

https://marcosmagueta.com/blog/a-roman-name-for-software/
6•dimonomid•21m ago•1 comments

This Won't Make You Rich. But It Might Help You Avoid Losing It All

https://laggingtruth.substack.com/p/this-wont-make-you-rich
1•jaek913•23m ago•0 comments

An ad-free, zero-signup fullscreen color tool for monitor testing and light

https://blackscreen.vip/
2•wangxili1997•24m ago•2 comments

Golang: Crypto/fips140: do not bloat crypto code unnecessarily

https://github.com/golang/go/issues/81639
1•zx2c4•26m ago•1 comments

Qualcomm posts GPU patches for lower-tier Snapdragon X2 SoCs

https://www.phoronix.com/news/Qualcomm-Mahua-GPU-Support
1•cromka•28m ago•0 comments

Show HN: Prodigy – The Self-Updating Technical Digest

https://www.prodigy.org.in/
1•samayashar•29m ago•0 comments

Terraform and OpenTofu: A CI Checklist for AI-Generated Infra

https://masterpoint.io/blog/terraform-opentofu-ci-checklist/
2•mooreds•31m ago•0 comments

I created an interactive digital avatar of myself you can to talk to

https://techcrunch.com/2026/09/26/i-created-an-interactive-digital-avatar-of-myself-and-you-can-t...
1•techietech•32m ago•0 comments

The Notice Had Nowhere to Land: The OpenAI Agent Breach in Australia

https://www.asticouisland.com/governance/essays/the-notice-had-nowhere-to-land
1•gregschueman•32m ago•0 comments

Startups in 13 Sentences (2009)

https://paulgraham.com/13sentences.html
1•andsoitis•32m ago•0 comments

Quality or speed – why not both?

https://dorotaparad.ch/quality-or-speed/
1•mooreds•33m ago•0 comments

Communicating Sequential Processes (1978) [pdf]

https://www.cs.cmu.edu/~crary/819-f09/Hoare78.pdf
1•andsoitis•34m ago•0 comments

Five Founders (2009)

https://paulgraham.com/5founders.html
1•andsoitis•35m ago•1 comments

CropCode – Convert UI Crops into Structured JSON for LLMs

https://chromewebstore.google.com/detail/cropcode/pcgcpipdelhclccjoaphjelkdidkiecj
1•dev_ascetic•35m 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!