frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Autonomous Long-Running Coding Agents

https://nlp.elvissaravia.com/p/autonomous-long-running-coding-agents
1•omarsar•48s ago•0 comments

Show HN: I built an email agent for founders who are stuck in email

https://www.dirac.app/
1•Peterz_shu•55s ago•0 comments

Jax: Commitment Issues

https://www.gilesthomas.com/2026/06/jax-commitment-issues
1•gpjt•5m ago•0 comments

Tired of chaos, investors retreat from oil market at record pace

https://www.reuters.com/business/energy/tired-chaos-investors-retreat-oil-market-record-pace-2026...
1•mriet•6m ago•1 comments

TerraWatch,GitHub App that scans Terraform PRs and posts exact fix in comment

https://terrawatch.dev
1•alejny•6m ago•0 comments

Is it feasible to self host OSS EU productivity suite? [A Mijn Bureau Review]

https://techstackups.com/articles/is-it-feasible-to-self-host-an-open-source-eu-sovereign-product...
1•sixhobbits•8m ago•0 comments

The WWII Invention That Changed Simulation Forever

https://www.halldale.com/defence/the-forgotten-wwii-invention-that-changed-simulation-forever
1•e12e•9m ago•0 comments

B-52 bomber crashes shortly after takeoff at California's Edwards Air Force Base

https://www.cnn.com/2026/06/15/us/b-52-crash-edwards-california
3•bluedino•11m ago•0 comments

Open Sourcing dbt's latest feature

https://github.com/orchestra-hq/sao-paolo
1•HugoLu88•11m ago•1 comments

The UKs Smartphone Nude Filter Plan Is Insane

https://worldofmatthew.com/blog/nudefilter/
1•worldofmatthew•13m ago•0 comments

'The Phoenix' magazine to cease publication

https://www.independent.ie/business/irish-business/the-phoenix-magazine-to-cease-publication/a/15...
2•austinallegro•14m ago•0 comments

Show HN: Transpilatron – an AI tool that converts Python code into C binaries

https://github.com/NoodlixProject/transpilatron
2•johnnytech•14m ago•0 comments

Commander Keen Games (free book)

https://forgottenbytes.net/
2•tzury•15m ago•0 comments

Clojure is almost as fast as C (with some help)

https://ertu.dev/posts/4_clojure-reaching-c-performance/
2•ertucetin•16m ago•0 comments

The Grain of Thought

https://asker.dev/grain-of-thought
2•caminmccluskey•16m ago•1 comments

I built a chess trainer. Looking for beta testers

https://chesstrain.net
2•Blaskooo•17m ago•0 comments

Anthropic pauses credit change for Claude Code

5•fabianlindfors•17m ago•0 comments

Show HN: All 194 YC Spring 2026 startups scored from public data

https://fluenta.space/resources/reports/yc-spring-2026-batch-scored
2•OlegIvanov•17m ago•0 comments

US battery manufacturing output continues to break records

https://fred.stlouisfed.org/series/IPG33591S
7•epistasis•18m ago•0 comments

We built a PaaS that survives AWS region outages by default

https://platform.kubernetix.ai
2•iamafounder•18m ago•0 comments

Show HN: Does a vibe leak? Fine-tuning an LLM on an attitude it never states

https://github.com/leo-dcfa/ai-latent-bias-transfer
2•neurodivergent•19m ago•0 comments

Kedgr – AI code scanner that never stores your source code

2•kedgr•20m ago•0 comments

JWT Decoder

https://fusionauth.io/docs/dev-tools/jwt-decoder
2•mooreds•21m ago•0 comments

Gen Z Doesn't Trust Anyone

https://www.graphsaboutreligion.com/p/gen-z-doesnt-trust-anyone
3•toomuchtodo•21m ago•2 comments

June 2026 Stealer Logs Data Breach

https://haveibeenpwned.com/Breach/June2026StealerLogs
2•sanqui•21m ago•0 comments

Show HN: Macro – unified system for email, chat, tasks, docs, agents (AGPL/Rust)

https://github.com/macro-inc/macro
5•jbecke•21m ago•0 comments

Show HN: We built an 8-bit CPU as 2nd year EE students

https://github.com/c0rRupT9/STEPLA-1
3•CorRupT9•23m ago•0 comments

AI and Amateurism

https://pluralistic.net/2026/06/15/vernacular/#hypercardian
4•samizdis•29m ago•1 comments

UK's social media age ban requires an identity layer. That changes everything

https://bbs.splinternet.org/manifesto.html
1•arfuzzum•29m ago•0 comments

Serendipity: The Role of Luck in Your Life and Career

https://ritholtz.com/2026/06/recognize-the-role-of-luck-in-your-life-and-career/
2•zdw•29m 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!