frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ace Targets Streaming Pirates Through Cloudflare and Discord Subpoenas

https://torrentfreak.com/ace-targets-dozens-of-streaming-pirates-through-cloudflare-and-discord-s...
1•gslin•4m ago•0 comments

Europe's warm nights nearly doubled this summer

https://emot.substack.com/p/europes-warm-nights-nearly-doubled
2•emot•8m ago•0 comments

Anyone Got a Fenty.dev Invite?

1•penguinsnetwork•8m ago•0 comments

The Distractor

http://booktwo.org/notebook/the-distractor/
1•zetamax•9m ago•0 comments

Show HN: Clownbid.lol – pay to be the biggest clown on the internet

https://clownbid.lol/
1•nadermx•10m ago•0 comments

Give Your Coding Agent a Journal

https://doug.sh/posts/give-your-coding-agent-a-journal/
2•dougcalobrisi•11m ago•1 comments

If You Knew God Exists, Wouldn't You Become a Priest?

https://joecmarshall.com/posts/if-you-knew-god-exists-wouldnt-you-become-a-priest/
3•CoreSet•12m ago•0 comments

Are We Learning to Think Less?

https://socketstudy.com/sparks/are-we-learning-to-think-less/
1•wingrove•13m ago•1 comments

The Ternus Era at Apple Begins, but Cook Isn't Leaving

https://www.bloomberg.com/news/videos/2026-08-30/the-ternus-era-at-apple-begins-but-cook-isn-t-le...
2•sbulaev•17m ago•0 comments

Will anybody use AI as much as coders?

https://www.economist.com/business/2026/08/30/will-anybody-use-ai-as-much-as-coders
2•tagawa•17m ago•1 comments

Show HN: Break 5, the addictive, 5 minute, daily word game

https://break5.co.uk/
1•dwgebler•19m ago•0 comments

West Point prof fired for continuing to teach human causes of climate change

https://www.theguardian.com/us-news/2026/aug/27/west-point-climate-scientist-fired
3•randycupertino•21m ago•0 comments

Israel Is Running a Synthetic Think Tank to Influence AI Search Results

https://www.404media.co/israel-is-running-a-synthetic-think-tank-to-influence-ai-search-results/
4•Jimmc414•22m ago•0 comments

Show HN: Open-source hands-free mouse control with Tracky Mouse

https://github.com/1j01/tracky-mouse/
1•1j01•24m ago•0 comments

Debian developer resigns after corporate LLM use without disclosure wins vote

https://lists.debian.org/debian-devel/2026/08/msg00318.html
6•majorchord•26m ago•1 comments

Papers with wrong IDs on ArXiv more common

https://www.reddit.com/r/learnmachinelearning/comments/1w2u68z/heads_up_some_papers_are_citing_co...
4•marysminefnuf•31m ago•0 comments

Show HN: St. Louis Food Map

https://stlouing.com/food/
1•stlouing•32m ago•0 comments

Building software factories (with no slop)

https://twitter.com/dzhng/status/2090252351533973768/
1•zatkin•35m ago•0 comments

Packman package manager to be discontinued on 2026-12-31

https://lists.links2linux.de/pipermail/packman/2026-August/018314.html
1•epenn•35m ago•0 comments

"A big win for Android interoperability"

https://www.osnews.com/story/145665/a-big-win-for-android-interoperability/
2•aryonoco•36m ago•0 comments

Lady Gaga is now an AI-longevity biotech founder

https://www.regeneration.ai/p/lady-gaga-is-now-an-ai-longevity
1•Gaishan•39m ago•0 comments

The tests passed. The extension was still broken

https://channelfence.app/blog/the-tests-passed-the-extension-was-still-broken/
1•ChannelFence•41m ago•0 comments

No-Code Self-Documenting Makefiles

https://github.com/bahmanm/bmakelib/releases/tag/v0.9.0
1•bahman-m•41m ago•0 comments

Show HN: What Apple's OS updates silently change in the on-device AI model

https://umer9538.github.io/underfoot/
2•Umer2521•42m ago•0 comments

How to build a diffusion language model

https://kuleshov-group.github.io/blog/blog/2026/how-to-build-a-diffusion-language-model/
2•volodia•42m ago•0 comments

The Aviation Herald was sued

https://avherald.com/h?article=53c8958a&opt=0
1•kotaKat•44m ago•0 comments

Show HN: I timestamped 34 trading strategy sweeps before running them

https://mobinmoharami.github.io/sweep-registry/
1•mobinmohrarami•44m ago•0 comments

Matrox: Graphics for Professionals

https://www.abortretry.fail/p/matrox
3•BirAdam•44m ago•0 comments

California Passes AB-1856 for Open-Source Relief over Age Verification

https://www.phoronix.com/news/California-AB-1856-Passes
4•birdculture•1h ago•0 comments

Generating scenarios for extreme events, without extreme data

https://news.mit.edu/2026/generating-scenarios-extreme-events-without-extreme-data-0824
1•MarcoDewey•1h 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!