frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bartłomiej Kubkowski swims for 56 hours across the Baltic Sea

https://www.telegraph.co.uk/world-news/2026/08/03/polish-man-swims-100-miles-baltic-sea-sweden-po...
1•thunderbong•1m ago•0 comments

Learning-Rust.Github.io: Rust Programming Language Tutorials for Everyone

https://learning-rust.github.io
1•dumindunuwan•1m ago•0 comments

Scilab: Open-source software for numerical computation

https://www.scilab.org/
2•Tomte•4m ago•0 comments

DeepSeek V4 Flash on a Single AMD MI300X

https://github.com/ryanzhou/deepseek-v4-flash-mi300x
2•zhoutong•4m ago•0 comments

The end of the EU is near, and it's going to get ugly

https://newsletter.doomberg.com/p/final-countdown
1•simonebrunozzi•4m ago•0 comments

Browser SplitView Master – Split any website into resizable panels

https://chromewebstore.google.com/detail/browser-splitview-master/ngkcpcmnmbdchbejbgiegaiagpljkkhj
1•mysticmetal•4m ago•0 comments

Bending Spoons is acquiring Airtable for $1.285B

https://www.reuters.com/legal/transactional/bending-spoons-makes-first-post-ipo-acquisition-with-...
1•maguay•10m ago•0 comments

"Clean" Code, Horrible Performance

https://www.computerenhance.com/p/clean-code-horrible-performance
1•FrojoS•12m ago•0 comments

Show HN: Servitor – simplest way to run local dev containers

https://sndsabin.github.io/servitor/
1•havu12•14m ago•0 comments

Bending Spoons to Acquire Airtable

https://twitter.com/fedesimio/status/2084539635829465266
1•jbegley•16m ago•0 comments

Homebench – Benchmark local LLMs for speed, memory, and quality

https://github.com/david-g-3654/homebench
1•davai-g•16m ago•0 comments

AI Appliances: AI Agents and Agencies in YAML

https://leanpub.com/kdeps
1•jjuliano•17m ago•0 comments

Show HN: Clawx – A package manager where packages are agent tasks

https://github.com/debarshibasak/clawx
1•debarshri•19m ago•0 comments

57,000 tines lighter than Loom (download the HTML)

https://www.dropbox.com/scl/fi/kex0qo53gkxy8jb4cqaox/deck-recorder.html?dl=0&e=1&noscript=1&rlkey...
1•astonfred•20m ago•0 comments

ZeroLeaks: Automated red teaming for AI agents

https://zeroleaks.ai
1•lucknite•24m ago•0 comments

Why the Fed Can Look Hawkish. The Machinery for Financial Repression Is Ready

https://anishgodha.com/2026/08/04/why-the-fed-can-look-hawkish-the-pieces-of-financial-repression...
1•anishgodha•24m ago•0 comments

The US is not a democracy but an oligarchy, study concludes (2014)

https://www.upi.com/Top_News/US/2014/04/16/The-US-is-not-a-democracy-but-an-oligarchy-study-concl...
5•giov4•24m ago•4 comments

Flare Redact – scoped secret redaction for JavaScript AI agents

https://github.com/flare-collection/flare-redact
1•umudhasanli•25m ago•0 comments

An Honest Review of AI Programming

https://mropert.github.io/2026/08/04/an_honest_review_of_ai_programming/
2•ingve•29m ago•0 comments

FFmpeg 9.0

https://github.com/FFmpeg/FFmpeg/blob/n9.0/RELEASE_NOTES
64•gyan•34m ago•3 comments

The Shape of Things to Come

https://yegge.ai/essays/model-welfare/
1•j4yav•34m ago•0 comments

Bending Spoons makes first post-IPO acquisition with $1.3B Airtable deal

https://live.euronext.com/en/financial-news/bending-spoons-makes-first-post-ipo-acquisition-13-bi...
12•riffraff•37m ago•4 comments

You Can Build Tools Yourself

https://jlopes.eu/blog/build-your-own-browser-tools/
2•offeringofpie•38m ago•2 comments

Google's synced passkeys can be stolen by malware

https://www.bleepingcomputer.com/news/security/new-pass-ta-key-attacks-let-malware-hijack-google-...
3•BlueBerry2001•39m ago•0 comments

OSM2CDR

https://osm2cdr.com/
1•altilunium•39m ago•0 comments

What the Bliss Taught Us

https://daniel.haxx.se/blog/2026/08/03/what-the-bliss-taught-us/
2•knuckleheads•45m ago•0 comments

Re: Ghosts in My Phone

https://rldane.space/re-ghosts-in-my-phone.html
1•meysamazad•45m ago•0 comments

NoFaceScan

https://nofacescan.app/
2•Cider9986•46m ago•0 comments

Getting a Haircut

https://jasonthai.me/posts/on-getting-a-haircut
1•meysamazad•46m ago•0 comments

AUR

https://afranca.com.br/aur/
1•meysamazad•46m 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!