frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Single-User Inference Card

https://markohaberl.substack.com/p/single-user-inference-card
1•mhaberl•4m ago•0 comments

SINR: Signal-to-interference-plus-noise ratio

https://en.wikipedia.org/wiki/Signal-to-interference-plus-noise_ratio
1•teleforce•5m ago•0 comments

AI Slop Is Real

https://aichatspot.online/what-is-ai-slop-and-does-it-really-ruin-youtube/
1•coinpress•6m ago•0 comments

Anthropic CEO says the way for AI to win over the public is to cure cancer

https://www.businessinsider.com/anthropic-ceo-dario-amodei-ai-public-opinion-cure-cancer-2026-8
3•wertyk•8m ago•0 comments

Show HN: Punyecs – A puny ECS library based on class attributes and querying

https://github.com/Modular-Game-Components/punyecs
1•thyrgle•9m ago•0 comments

Frontier models, transparency and trust; a new golden age in research for some?

https://scholarlyfutures.substack.com/p/frontier-models-transparency-and
1•JohnHammersley•13m ago•0 comments

Show HN: TKeeper – OSS machine identities without a single point of compromise

https://tkeeper.org
1•_qnt•19m ago•0 comments

Show HN: ChatGPT and Claude export viewer that runs locally in the browser

https://www.vinaa.ai/tools/ai-chat-history-browser/
1•sujee•20m ago•0 comments

Ukraine Finds Nvidia AI Chip in New Russian Missile, HUR Says

https://www.kyivpost.com/post/82225
6•osivertsson•25m ago•1 comments

Nobody Knows Anything

https://www.strangeloopcanon.com/p/nobody-knows-anything
2•gtirloni•26m ago•0 comments

Off-Sprey

https://offsprey.com/
1•voidmain0001•27m ago•1 comments

Apologia for the Old Ball

https://ponnekanti.net/oldball/
1•reasonableklout•32m ago•0 comments

Smarter – open-source, declarative AI authoring platform (Django, K8s-inspired)

https://github.com/smarter-sh/smarter
1•lpm0073•33m ago•0 comments

Sperm whales in 19th century shared ship attack information – Whales

https://www.theguardian.com/environment/2021/mar/17/sperm-whales-in-19th-century-shared-ship-atta...
4•bilsbie•43m ago•1 comments

Show HN: I Turned Apple Calendar into Tetris

https://github.com/EvanZhouDev/calendar-tetris
2•EvanZhouDev•46m ago•0 comments

Ghosts of the Past and Devils of the Present

https://thenewcuriosityshop.substack.com/p/ghosts-of-the-past-and-devils-of
1•benbreen•47m ago•0 comments

Legbar – live AI agent sessions beside GitHub CI, in one terminal

https://github.com/gmhoward9289-ops/legbar
2•gmhoward9289•52m ago•0 comments

Redis uses less RAM than you think, nibble measures how much, and applies it

https://github.com/RyanRana/nibble
2•ryanrana•1h ago•2 comments

Anthropic's 'Watermark' Text Adulteration in Claude Is a Perversion of Writing

https://daringfireball.net/2026/08/anthropics_watermark_text_adulteration_in_claude_is_a_perversi...
53•ropbear•1h ago•34 comments

Claude Seems Down

46•zhan_eg•1h ago•42 comments

Failure Takes Years to Admit

https://julienreszka.com/blog/failure-takes-years-to-admit/
2•julienreszka•1h ago•0 comments

Claude Is Down

https://claude.ai/new
27•nabeards•1h ago•37 comments

Nauru, the 3rd-smallest country, changes its name to Naoero

https://abcnews.com/International/wireStory/nauru-worlds-3rd-smallest-country-naoero-135318134
2•gmays•1h ago•1 comments

Winkeys: Windows Keyboard Shortcuts on macOS

https://winkeys.app
1•yashvadaria•1h ago•0 comments

Show HN: One page per betting market – 21 books' odds, every outcome graded

https://prop-line.com/odds-api
1•rquitzo243•1h ago•0 comments

How to build a RAG pipeline with the Go StdLib

https://blog.devgenius.io/stop-stuffing-your-system-prompts-build-a-real-rag-pipeline-in-go-e93bb...
2•cheikhdev•1h ago•0 comments

Wellington second-hand bookstore's mysterious orders

https://www.rnz.co.nz/life/books/wellington-second-hand-book-store-s-mysterious-orders
2•beanaroo•1h ago•0 comments

My Hermes and Obsidian Setup and Use Cases

https://metedata.substack.com/p/013-my-hermes-and-obsidian-set-up
2•young_mete•1h ago•0 comments

Awesome-local-first – A curated list of Local-First Software

https://github.com/zhongkechen/awesome-local-first
2•peter_d_sherman•1h ago•0 comments

Productivity Framework Paraiso

https://ejlabs.io/blog/introduction_paraiso
1•mansi1010•1h ago•2 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!