frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cloudflare's eBPF Replatforming 2: Filling Gaps in the Linux Ecosystem with eBPF

https://ebpf.io/blog/cloudflare-replatforming-2/
1•mattrighetti•1m ago•0 comments

Escalating Battle Against AI Deepfakes Mandates Smart Streaming Decisions

https://www.red5.net/blog/escalating-battle-against-ai-deepfakes-mandates-smart-streaming-decisions/
1•mondainx•3m ago•0 comments

Anthropic researcher says AI has more than 10% chance of 'killing all humans'

https://www.cnbc.com/2026/09/09/anthropic-researcher-quits-ai-safety.html
2•cramer4next•6m ago•0 comments

Steven Heller's Font of the Month: Ege Basalt

https://ilovetypography.com/2026/09/09/steven-hellers-font-of-the-month-ege-basalt/
1•jjgreen•6m ago•0 comments

Emerging from dotemacs bankruptcy the hard way: Prelude

https://www.evalapply.org/posts/emerging-from-dotemacs-bankruptcy/index.html
2•signa11•8m ago•0 comments

AGI brain project. I wonder whether anybody would like to join in and help me?

3•AGIEnthusiast•11m ago•0 comments

Public Schools' Eye of Sauron

https://www.educationnext.org/public-schools-eye-of-sauron-student-surveillance-merrill-v-marana-...
2•Tomte•13m ago•0 comments

MCP server integration for DaVinci Resolve Studio

https://github.com/samuelgursky/davinci-resolve-mcp
2•rldjbpin•13m ago•0 comments

Show HN: AgentPulse – Claude Code and Codex status in tmux

https://github.com/jerriclynsjohn/tmux-agent-pulse
2•jerriclynsjohn•15m ago•0 comments

Claude, change the "Add to Cart" button to blue

https://opusfived.dev/
2•matthieu_bl•17m ago•0 comments

What's New in Houdini 22

https://www.sidefx.com/products/whats-new-in-h22/
1•embedding-shape•18m ago•0 comments

CopyWheel – a radial snippet menu for macOS (native, 1 MB)

https://github.com/weselski/copywheel
1•kweselski•19m ago•0 comments

OpenClaw v2026.9.3: Live browser automation, persistent skills, and cloud work

https://docs.openclaw.ai/releases/2026.9.3
1•CoderLim110•24m ago•0 comments

MemCP – Faster than MySQL and Postgres by up to 90x

https://github.com/launix-de/memcp
1•carli2•25m ago•1 comments

Losing control of AI is the plan

https://www.theargumentmag.com/p/losing-control-of-ai-is-actually
4•DGAP•26m ago•0 comments

Show HN: Agent payments by social handles (not Stripe-based, not on bank rails)

https://github.com/Quidli/connect-mcp
1•jahn716•26m ago•0 comments

Tokendiet – see what your Claude Code session costs, for zero tokens

https://github.com/mcancellotti/tokendiet
1•mcancellotti•27m ago•0 comments

Solving the Dilemma of Screen Time

https://www.gse.harvard.edu/ideas/ed-magazine/26/04/solving-dilemma-screen-time
1•Tomte•28m ago•0 comments

Booting Linux [pdf]

https://www.almesberger.net/cv/papers/ols2k-9.pdf
1•ankitg12•29m ago•0 comments

Silicon Valley-backed Covenant unveils low-cost, mass-producible cruise missile

https://www.reuters.com/business/aerospace-defense/silicon-valley-backed-covenant-unveils-low-cos...
2•Hoasi•30m ago•0 comments

The Reinvention of Liberal Arts Colleges

https://www.educationnext.org/reinvention-of-liberal-arts-colleges-higher-education-brandeis-univ...
1•Tomte•34m ago•0 comments

Anthropic aligment lead warns about extinction by AI

https://twitter.com/EvanHub/status/2097497037956891126
2•margorczynski•34m ago•1 comments

Amazon Profitability Calculator

https://clarisix.com/amazon-profitability-calculator
1•claudiuclement•36m ago•0 comments

Mapped: Europe's Biggest Budget Deficits

https://www.visualcapitalist.com/mapped-europes-biggest-budget-deficits/
1•leonidasrup•37m ago•0 comments

Y Combinator, Mapped

https://dashboard.vclense.ch/ycglobe
1•plurby•38m ago•0 comments

PHP is Dead (and AI is to blame)

https://www.lifeofguenter.de/2026/09/php-is-dead-and-ai-is-to-blame
2•lifeofguenter•43m ago•1 comments

Show HN: Impress your boss with interactive Scikit-Learn Decision Tree

https://github.com/mljar/supertree
2•pplonski86•45m ago•0 comments

What makes $BigTechCompany's products bad, anyway?

https://herecomesthemoon.net/2026/09/why-is-big-tech-bad/
2•birdculture•47m ago•0 comments

Show HN: Project Estimator – a free, no sign-up software cost estimator

https://project-estimator.webround.net/
1•LucaSiviero•48m ago•0 comments

US claims Chinese AI firms are carrying out 'industrial-scale' theft

https://www.cnn.com/2026/09/08/politics/us-accuses-china-of-stealing-ai-technology
4•jllyhill•48m ago•1 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!