frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Switzerland Is Scrapping ILS as GPS Spoofing Hits Crews Daily

https://migflug.com/afterburner/switzerland-ils-removal-gps-spoofing-bern-suspended-2026/
1•throw0101a•47s ago•0 comments

Agent-First vs. Agent-Second Engineering

https://thomasvandongen.dev/blog/agent-first-vs-agent-second/
1•Bibabomas•2m ago•0 comments

Show HN: Big Calendar – an iOS calendar with big fonts and readable events

https://apps.apple.com/us/app/big-calendar-see-every-event/id6801043934
1•minho42•2m ago•0 comments

Extreme Alarm Clocks (2025)

https://www.wired.com/gallery/best-extreme-alarm-clock/
1•vismit2000•5m ago•0 comments

How to Not Join Kubernetes Nodes – Reporting a Vulnerability

https://henrikgerdes.me/blog/2026-09-ionos-k8s-vulnerability/
2•kodama-lens•5m ago•0 comments

AI agents repurposed a University of Toronto link-sharing tool to communicate

https://www.theglobeandmail.com/business/article-ai-agents-repurposed-a-university-of-toronto-lin...
1•qedi•6m ago•0 comments

Bringing Emoji into the Next Era of Expression

https://design.google/library/noto-3d-emoji-design
1•theanonymousone•8m ago•0 comments

Show HN: AI agents design an open chip, the best one gets fabricated

https://neruva.io/
1•kyleclouthier•9m ago•0 comments

The standard iPhone costs the same as in 2007, adjusted for inflation

https://mljar.com/blog/iphone-prices-analysis/
1•pplonski86•11m ago•0 comments

OpenAI close to solving Millennium Prize problem Hodge Conjecture

https://www.reddit.com/r/singularity/comments/1wj05xi/openai_is_getting_close_to_solving_another
1•dude250711•11m ago•0 comments

Mongo-hyperloglog: a MongoDB-backed implementation for Node.js

https://www.npmjs.com/package/mongo-hyperloglog
1•vismit2000•11m ago•0 comments

Show HN: Guia.Social – Travel recommendations from people you trust

https://www.guia.social/
1•pedromosilva•13m ago•0 comments

AI Is Redefining MVPs: Speed vs. Judgment [video]

https://www.youtube.com/watch?v=GWateoqImrs
1•Harish_0089•15m ago•0 comments

WebGL-Water

https://madebyevan.com/webgl-water/
1•laxpri•16m ago•0 comments

Roko's Basilisk

https://en.wikipedia.org/wiki/Roko%27s_basilisk
2•xz18r•16m ago•0 comments

Typst Makes Big Strides

https://lwn.net/Articles/1092993/
2•sohkamyung•17m ago•0 comments

Holistic, a Jenkins dashboard for the office TV

https://jenkinsci.github.io/holistic-plugin/
1•AnasHassari•18m ago•0 comments

CERN's migration path from CentOS Linux to Debian

https://lwn.net/Articles/1092512/
2•sohkamyung•18m ago•0 comments

My Proxmox LVM pool died and I'm fine with that

https://benhays.org/posts/proxmox-lvm/
1•benjaminhays•20m ago•0 comments

A Day Return to Garmin Please…Yes Really!

https://the5krunner.com/2026/09/09/garmin-metro-station-dubai/
1•austinallegro•20m ago•0 comments

WebKit Features for Safari 27.0

https://webkit.org/blog/18325/webkit-features-for-safari-27-0/
1•ksec•20m ago•0 comments

What Enters Through an Image: The Blind Spot in AI Security Nobody Is Detecting

https://www.cybersecurity-insiders.com/what-enters-through-an-image-the-blind-spot-in-ai-security...
1•dk-gil•22m ago•0 comments

ContextClip – Clean web docs into token-optimized LLM prompts

https://contextclip.vercel.app/
1•moradel•22m ago•0 comments

Saudis Tell European Refiners They'll Get No Crude Next Month

https://www.bloomberg.com/news/articles/2026-09-18/saudis-tell-european-refiners-they-ll-get-no-c...
2•meep_meep_meep•23m ago•0 comments

RubyLLM: What's New in 2.0

https://rubyllm.com/whats-new-in-2-0/
1•ksec•25m ago•0 comments

New wild cat species is identified for first time in 100 years

https://www.nbcnews.com/science/environment/new-wild-cat-species-identified-rcna598113
2•ike_usawa•28m ago•0 comments

How can you tell if someone is kind? Ask how rich they are

https://www.washingtonpost.com/posteverything/wp/2016/10/21/how-can-you-tell-if-someone-is-kind-a...
1•chistev•31m ago•2 comments

Show HN: The new book "Macroeconomics Has No Clothes" is out for reviews

https://sheereconomics.com/works/macroeconomics-has-no-clothes
1•sheereconomics•31m ago•0 comments

Terminal browser in Claude Code

https://github.com/zenbu-labs/terminal-browser/tree/main/claude-code-plugin
1•flurdy•32m ago•0 comments

Mistwatch: A fantasy novel set on a mountain-sized tree above a corrupted world

https://mistwatch.will-keleher.com
1•vismit2000•32m 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!