frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Heap. – native desktop Kanban, calendar, and docs for engineers

https://github.com/sectapunterx/heap
1•eloisius•1m ago•0 comments

Five Unix ideas from the 1970s are why Linux still works so well

https://www.howtogeek.com/stop-reinventing-the-wheel-these-unix-ideas-from-the-seventies-are-why-...
1•teleforce•5m ago•0 comments

RL economics, morally charged terms, and "distillation"

https://thomasdullien.github.io/posts/2026-06-15-rl-economics-morally-charged-terms-and-distillat...
1•samuel246•7m ago•0 comments

How to prevent white clothes from turning yellow in storage

https://www.southernliving.com/how-to-pevent-white-clothes-from-turning-yellow-in-storage-12016122
1•teleforce•8m ago•0 comments

Tokensave: An MCP Server That Saved Me Tokens While Coding

https://www.tobiasreithmeier.de/en/blog/tokensave-mcp-server-tutorial-review
1•freediver•11m ago•0 comments

Show HN: Synapse – local codebase indexer and MCP server for Claude Code

https://github.com/nrkoka786/synapse
1•nrkoka1•20m ago•0 comments

Overload and insight look identical from the outside

https://pilgrima.ge/p/what-the-wire-knows
1•momentmaker•23m ago•0 comments

Show HN: Free car spec db to defeat the paywalls

https://openlaborproject.com/
1•chackleman•27m ago•1 comments

Madison Square Garden Sues Wired Magazine over L.G.B.T.Q. Tracking Report

https://www.nytimes.com/2026/07/18/business/media/msg-entertainment-sues-wired-magazine.html
1•ChrisArchitect•27m ago•1 comments

How Word Count Is Important for Social Media Posts

https://medium.com/@thesuperrepemail/how-word-count-is-important-for-social-media-posts-87372645377c
2•rajsuper123•39m ago•0 comments

William Gaddis and William H. Gass: A Literary Conversation and Reading (1995)

https://www.92ny.org/archives/william-gaddis-and-william-h-gass-a-literary-conversation-and-reading
1•ofalkaed•44m ago•0 comments

Trump Media pitched $100K monthly fee for fastest feed of US president's posts

https://www.reuters.com/business/media-telecom/trump-media-pitched-100000-monthly-fee-fast-feed-u...
3•geox•46m ago•1 comments

Disney Has Started Feeding Your Kids AI Slop

https://kotaku.com/disney-has-started-feeding-your-kids-ai-slop-2000717222
5•wslh•53m ago•0 comments

Lawyers risk being sued for failing to use AI

https://www.legalcheek.com/2026/07/lawyers-risk-being-sued-for-failing-to-use-ai/
3•Tomte•54m ago•0 comments

LLM-Integrated Multivariable Calculus Course

https://calculus.academa.ai/
5•sinaatalay•1h ago•1 comments

Topographical Collection of King George III

https://www.flickr.com/photos/britishlibrary/collections/72157719509637544/
1•Eridanus2•1h ago•0 comments

XRPLink – Cryptographically Verified XRP Payment Receipts, Powered by Flare FDC

https://github.com/joverman/xrplink
1•joverman•1h ago•0 comments

FDA approves new kind of cholesterol pill

https://www.fda.gov/news-events/press-announcements/fda-approves-first-oral-pcsk9-inhibitor-lower...
4•mgh2•1h ago•1 comments

Useless Use of Cat Award

https://porkmail.org/era/unix/award
1•gregsadetsky•1h ago•1 comments

Novo Space builds modular computers for satellite constellations

https://runtimewire.com/article/startup-spotlight-novo-space-builds-modular-computers-for-satelli...
1•ryanmerket•1h ago•0 comments

Gaming Sickness and Its Impact on Players' Experiences with Games

https://dl.acm.org/doi/10.1145/3670653.3677494
2•BiraIgnacio•1h ago•0 comments

I built a browser-based P2P file transfer tool using WebRTC

https://airdows.com/
2•SamOkampo•1h ago•1 comments

Jordan Ellenberg explains how geometry helps us understand the world

https://www.cbc.ca/lite/story/1.6448326
1•colinprince•1h ago•0 comments

Retry is not a loop, its a data structure

https://siddhantkhare.com/writing/retry-is-not-a-loop
2•meetpateltech•1h ago•0 comments

Association Between Low/No-Calorie Artificial Sweeteners and Cognitive Decline

https://www.neurology.org/doi/10.1212/WNL.0000000000214023
2•corvad•1h ago•0 comments

PersonalDrive: Personal Cloud Storage

https://personaldrive.xyz/
2•thunderbong•1h ago•1 comments

Implementation of "Writing a C compiler" in Zig

https://github.com/igor84/wcc
2•rguiscard•1h ago•0 comments

Toyota pump tech could be key to hydrogen-combustion practicality

https://www.autocar.co.uk/car-news/technology/toyota-pump-tech-could-be-key-hydrogen-combustion-p...
2•breve•1h ago•0 comments

Track you Claude Code usage in dollars

https://www.claudeusage.com/leaderboard
2•bazarkua•1h ago•1 comments

Seamless iPad (or any device that can run a web browser) drawing into org-mode

https://github.com/larrasket/org-pad.el
1•lr0•2h 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!