frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Expanding model choice in Copilot with Grok

https://techcommunity.microsoft.com/blog/microsoft-copilot-blog/expanding-model-choice-in-copilot...
1•andsoitis•2m ago•0 comments

Ask HN: Is there an emerging pattern for NEGATIVESKILLS.md files?

1•mehmetoguzderin•3m ago•0 comments

BluBeam Pro

https://blubeam.pro/
1•alexawilder•5m ago•1 comments

DuckDB 2.0 Pushes Whole Queries Through ADBC–10–11× Faster on PostgreSQL

https://query.farm/blog/one-query-one-arrow-stream-adbc-duckdb-2/
1•rustyconover•13m ago•0 comments

Why is privacy so hard?

https://cacm.acm.org/blogcacm/why-is-privacy-so-hard/
3•andsoitis•13m ago•2 comments

Ask HN: In The Matrix, the bad guys are the 'agents'. Coincidence? Clairvoyance?

2•spottedmarley•13m ago•0 comments

Show HN: SF Title Alert

https://sftitlealert.com
1•arkadiyt•15m ago•0 comments

What Is Wrong with Nike?

https://www.s-1.site/s/the-middle-market-focus-verticals.html
1•anthonybourdain•15m ago•0 comments

SCH: An affordable sandbox for Coding Agents in your AWS account

https://c-daniele.github.io/en/posts/2026-09-07-close-the-lid-serverless-coding-harness/
1•cdani•15m ago•0 comments

The Outrageous Collapse of a 'Montessori Ponzi'

https://www.nytimes.com/2026/09/13/business/guidepost-montessori-higher-ground-education-ray-girn...
3•sciurus•19m ago•1 comments

Claude Fable 5.1 Solves the Cyphral Distich, a 370-year-old cipher

https://www.vals.ai/blogs/fable-solves-cyphral-distich
3•u1hcw9nx•20m ago•0 comments

Veilid is an open-source, peer-to-peer application framework

https://veilid.com/
4•Bluestein•22m ago•0 comments

AI Is Destroying the World

https://gornak40.org/blog/ai-is-destroying-the-world.html
3•Gornak40•22m ago•0 comments

BitBang: End-to-End Verified, Browser-Native Remote Access

https://github.com/richlegrand/bitbang/blob/main/whitepaper.md
4•Bluestein•27m ago•0 comments

Terminal multiplexer and experimental Wayland compositor for browsers

https://blit.sh/
4•williamstein•28m ago•0 comments

Claude Fable 5.1 cracked a cipher that has survived for 370 years in 40 min.

https://osintsights.com/ai-deciphers-370-year-old-cipher-in-minutes
2•u1hcw9nx•30m ago•2 comments

Two cheers (out of three) for Dario Amodei

https://garymarcus.substack.com/p/two-cheers-out-of-three-for-dario
4•chmaynard•36m ago•0 comments

Hikers guided by AI stranded on Mt. Shasta [video]

https://www.youtube.com/watch?v=OlwxEnN50e4
1•jumploops•40m ago•0 comments

Sam Altman pitches utilities on AI grid defense

https://www.politico.com/news/2026/09/10/sam-altman-pitches-utilities-on-ai-grid-defense-01070425
3•cdrnsf•41m ago•0 comments

Jason Arday and the Corruption of Science

https://chronicleofhighereducation.substack.com/p/jason-arday-and-the-corruption-of
3•kgwgk•41m ago•0 comments

OpenAI faces Senate probe into Hugging Face breach

https://www.axios.com/2026/09/10/openai-hugging-face-senate-investigation-hawley
3•reasonableklout•42m ago•0 comments

Go Implementation of WireGuard

https://github.com/WireGuard/wireguard-go
2•Bluestein•43m ago•0 comments

Show HN: Opine, a public polling website with maps

https://opinepolls.com/
1•superphotonic•43m ago•0 comments

YC: Why the Harness Matters More Than the Model [video]

https://www.youtube.com/watch?v=n9xKblqyQ28
1•mgl•47m ago•0 comments

How Much Could Europe Pay for U.S. Weapons for Ukraine?

https://www.thepricer.org/how-much-could-europe-pay-for-u-s-weapons-for-ukraine/
1•cinderelacinder•47m ago•1 comments

Emma: The GP's AI Receptionist doesn't understand Yorkshire or security

https://floorjellyboot.infinityfree.io/?u=/2026/09/05/emma-the-gps-ai-receptionist-doesnt-underst...
1•spzb•47m ago•0 comments

Flawed Routers Flood University of Wisconsin Internet Time Server (2003)

https://pages.cs.wisc.edu/~plonka/netgear-sntp/
13•walrus01•53m ago•0 comments

Show HN: Vehla – the AI command center for macOS

https://vehla.app/
1•ibuhs69•57m ago•0 comments

Godaddy's homepage is currently throwing a 403

https://www.godaddy.com/
4•otherayden•58m ago•2 comments

Apple's Always-Listening Tech: A Nightmare of Constant Surveillance

https://this.weekinsecurity.com/watch-what-you-say-apple-opens-the-door-to-a-nightmare-world-of-a...
7•birdculture•1h ago•1 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!