frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NAND-16: a computer built from 277,248 NAND gates

https://somethingbig.ai/computer
1•rossant•22s ago•0 comments

T3rnel Browser – DevTools you can talk to, and a browser your AI can drive

https://t3ratech.github.io/t3rnel-browser-plugin/
1•tkaviya•1m ago•0 comments

Neo – Hugh Howey

https://hughhowey.com/neo-fiction-without-friction/
1•seesthruya•3m ago•1 comments

Show HN: Jev-Like Model Learns to Cook

https://rlafuente.com/posts/2026-9-26-training-a-small-decision-model-to-cook#
1•andes314•5m ago•0 comments

A Programmable Programming Language (2018)

https://cacm.acm.org/research/a-programmable-programming-language/
2•so-cal-schemer•10m ago•1 comments

EV Sales Are Booming in Europe with Gasoline at $10 a Gallon

https://www.bloomberg.com/news/articles/2026-09-24/electric-car-sales-soar-52-in-europe-with-fuel...
3•blondie9x•10m ago•0 comments

Did Anthropic's A.I. Really Make a Scientific Discovery on Its Own?

https://www.nytimes.com/2026/09/27/science/anthropic-biology-enzyme-mestre.html
2•jbegley•12m ago•0 comments

Show HN: Minecraft PvP against DiffusionGemma-as-Jev, 24 ms per decision

https://mc.alexzms.com
1•alexzms•13m ago•0 comments

UFO-core multiplayer agentic environs

https://github.com/ufo-ai/ufo-core
1•handfuloflight•13m ago•0 comments

Cognitive Sanctuaries Or: Manifesto of the Department Chair

https://terrytao.wordpress.com/2026/09/27/cognitive-sanctuaries-or-manifesto-of-the-department-ch...
1•smilelamp•13m ago•0 comments

Cloudflare fixes Containers cross-tenant flaw exposing customer data

https://www.bleepingcomputer.com/news/security/cloudflare-fixes-containers-cross-tenant-flaw-expo...
1•sbulaev•19m ago•0 comments

Lunar Terminator Paradox

https://notes.secretsauce.net/notes/2026/09/27_lunar-terminator-paradox.html
7•dima55•20m ago•0 comments

Session Revocations at Scale

https://www.canva.dev/blog/engineering/session-revocations-at-scale/
1•bucket2015•20m ago•0 comments

Banned from Reddit for my plugin that evades tracking and monetization

5•kookabburrabarr•27m ago•2 comments

Solving a corn puzzle with CP-SAT

https://thill.me/2026/07/16/corn-puzzle-sat-solver.html
2•luu•27m ago•0 comments

Anthropic is a supply chain risk for all of us

https://building138.com/anthropic-is-a-supply-chain-risk-for-all-of-us
1•usernamed7•35m ago•1 comments

App Store review allowed a Meta Muse copycat

https://lapcatsoftware.com/articles/2026/9/8.html
3•krackers•36m ago•1 comments

Show HN: Jevdit – a social network moderated by Jev

https://jevdit.com
3•TN1ck•40m ago•0 comments

Haven: One Privacy App. Zero Compromise

https://havenmessenger.com/
1•cristoperb•41m ago•1 comments

Citrix NetScaler Remote Code Execution

https://support.citrix.com/external/article/CTX697096/citrix-netscaler-adc-and-citrix-netscale.html
2•wylie39•42m ago•0 comments

Cold War

https://en.wikipedia.org/wiki/Cold_War
1•chistev•42m ago•0 comments

Uber CEO says you should answer emails over the weekend

https://fortune.com/article/uber-ceo-dara-khosrowshahi-really-demanding-work-culture-includes-exp...
2•xlayn•44m ago•2 comments

Two Companies Built a $71B Drug Class

https://research.socialcapital.com/p/glp1
1•brandonb•44m ago•0 comments

Raspberry Pi prevents the device from booting if unofficial RAM chip is detected

https://hackaday.com/2026/09/26/the-least-annoying-of-all-evils/
3•Muhammad523•44m ago•0 comments

Procedurally animated koi pond that runs in the browser

https://koi.m4yank.com/
2•kewonit•45m ago•1 comments

Show HN: [Curbwise] Explore crash data and redesign dangerous streets

https://curbwise.org
1•kcirtapfrmspc•51m ago•0 comments

My Recent Woodworking Projects

https://notoriousbfg.com/recent-woodworking-projects/
2•trwhite•52m ago•0 comments

My slides are a TUI app now

https://blog.klobuc.ar/posts/tui-slides/
2•meltmymind•52m ago•1 comments

Show HN: AstraBox – an open-source alternative to Claude Managed Agents

https://github.com/Colton-z/AstraBox
2•coltonz•54m ago•0 comments

The Trouble with Psychological Darwinism

http://cogweb.ucla.edu/Abstracts/Fodor_on_Pinker_98.html
2•Phithagoras•55m 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!