frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Industry Mourns the Loss of Bruce Clay – The Father of SEO

https://www.seroundtable.com/bruce-clay-rip-41581.html
1•speckx•1m ago•0 comments

New split layout framework for nearly all Apple platforms (macOS, iOS, etc.)

https://twitter.com/mitchellh/status/2070273858154987537
1•simonebrunozzi•4m ago•0 comments

Rejecting Emails on AS Level

https://blog.vasi.li/june-spam-wave/
1•vsviridov•6m ago•1 comments

Tachio – Free esports API covering 13 games

https://tachiosports.com
1•domktt•6m ago•0 comments

YayText

https://yaytext.com/
1•visviva•9m ago•0 comments

Show HN: Mantis, A self-hosted LLM gateway

https://github.com/mantis-llm-gateway
2•rizsyed1•11m ago•0 comments

VibePHP

https://github.com/mnapoli/vibephp
1•_Microft•11m ago•0 comments

Building Voice AI Workflows with Branches Instead of One Giant Prompt

https://github.com/team-telnyx/telnyx-code-examples/tree/main/build-conversational-workflow-nodejs
1•anushathukral•12m ago•0 comments

Show HN: A free ACP payments module that adds Stripe payments to MCP tools

https://www.afcommerce.com/free-acp-payments-module/
1•abratabia•13m ago•0 comments

From API to Ontology: An Architecture for On-Demand Semantic Digital Twins

https://blog.ptidej.net/from-api-to-ontology-an-architecture-for-on-demand-semantic-digital-twins/
3•viniciusmioto•13m ago•0 comments

Summary of METR's predeployment evaluation of GPT-5.6 Sol

https://metr.org/blog/2026-06-26-gpt-5-6-sol/
1•pongogogo•13m ago•1 comments

Long Wave radio era set to end with Droitwich switch-off

https://www.bbc.com/news/articles/c74yn7v7k4qo
1•speckx•13m ago•0 comments

Amazon wouldn't let me, so I built my own 20TB Snowball [video]

https://www.youtube.com/watch?v=v0DEI4Ad7Ik
2•tambourine_man•14m ago•0 comments

Akrites: The Latest Attempt to Protect Open-Source from AI Attacks Has Arrived

https://devops.com/akrites-the-latest-attempt-to-protect-open-source-from-ai-attacks-has-arrived/
1•CrankyBear•15m ago•0 comments

A list of software and other offerings with free developer tiers

https://github.com/ripienaar/free-for-dev
2•faradtech•19m ago•0 comments

The French are painting their windows with chalk to beat the heat

https://www.bbc.com/future/article/20260625-why-the-french-are-painting-chalk-on-their-windows
4•geox•20m ago•0 comments

My-Pi Coding-Agent

https://github.com/spences10/my-pi
2•mainsong•20m ago•0 comments

HTML: Composer and Perl HTML Templating

https://rawley.xyz/posts/html-composer.html
1•rawleyfowler•21m ago•0 comments

My Love-Hate Relationship with Page Builders

https://eliotdill.substack.com/p/my-love-hate-relationship-with-page
1•DillyDally125•21m ago•0 comments

New Intel Linux Driver Patches Enable HDR over DP MST Connections

https://lore.kernel.org/dri-devel/20260626175510.3899476-1-gildekel@google.com/
1•DemiGuru•23m ago•0 comments

Roblox parental controls are a dystopian security disaster

1•notsure357•24m ago•1 comments

QA/Testing at Startups

1•ovi_firstqa•25m ago•0 comments

The EU Wants to Grow Homegrown Tech. Its Courts Keep Making That Impossible

http://www.techdirt.com/2026/06/26/the-eu-wants-to-grow-homegrown-tech-its-courts-keep-making-tha...
3•beardyw•27m ago•0 comments

In Loving Memory of Om Malik – Hodinkee

https://www.hodinkee.com/articles/in-loving-memory-of-om-malik-friend-writer-venture-capitalist-a...
1•adamfuhrer•28m ago•0 comments

AI Models Directory (To Compare)

https://aimodels.directory/
1•entempsllc•28m ago•0 comments

Transformers Explained for Software Engineers

https://bharad.dev/blog/transformers-and-attention
1•bharadwajp•28m ago•0 comments

Europe's largest datacentre hub leaves town sweltering

https://www.theguardian.com/environment/2026/jun/26/slough-is-like-an-experiment-europes-largest-...
1•speckx•29m ago•0 comments

Designing a Personal Pebble Watchface

https://www.jonashietala.se/blog/2026/06/26/designing_a_personal_pebble_watchface/
1•lawn•32m ago•0 comments

Auto-Charge Tracker makes Steam Controller move toward its charging dock

https://videocardz.com/newz/modder-makes-steam-controller-move-itself-to-the-charging-puck
1•LorenDB•37m ago•0 comments

The Ontological Consequences of AGI Autonomy

https://secondexpulsion.substack.com/p/the-apple-the-serpent-and-the-outside
2•cosmosjang•38m 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!