frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cuba sees nationwide power blackout for third time in six months (aljazeera.com)

https://www.aljazeera.com/news/2026/7/7/cuba-sees-nationwide-power-blackout-for-third-time-in-six...
1•gridmatters•1m ago•0 comments

Everything a Child Learns

https://withmarble.com/curriculum/
1•theanonymousone•2m ago•0 comments

472,712 Price Changes: Wednesday and Thursday Dominate

https://beaconmon.com/blog/shopify-competitor-price-change-timing
1•haimanotgetu•3m ago•0 comments

Planned Texas data centers could emit more greenhouse gases than many countries

https://www.texastribune.org/2026/07/09/texas-data-centers-ai-power-plants-pollution-state-permits/
1•hn_acker•3m ago•0 comments

Netflix Exploring Live TV and Bundles as It Struggles to Keep Viewers Hooked

https://www.wsj.com/business/media/netflix-is-exploring-live-tv-and-bundles-as-it-struggles-to-ke...
1•bookofjoe•4m ago•1 comments

Ask HN: Thoughts on a MCP to manage cloud and AI spend?

1•edifil•4m ago•0 comments

Toward Environmental Liberalism

https://blog.andymasley.com/p/toward-environmental-liberalism
1•jger15•5m ago•0 comments

Show HN: CiteReady – Can AI search (ChatGPT, Perplexity) cite your site?

https://citeready.sprytools.com/
1•grenzfrei•5m ago•0 comments

Show HN: Run 25 Audio Models (TTS/STT/STS/Muisc) Locally in C++/GGML. No Python

https://github.com/0xShug0/audio.cpp
1•0xshug0•7m ago•0 comments

China retrieves booster in reusable rocket breakthrough

https://www.dw.com/en/china-retrieves-booster-in-reusable-rocket-breakthrough/a-77904960
1•tuxie_•7m ago•0 comments

Michigan's explosive outbreak of diarrheal parasite jumps to over 1,200 cases

https://arstechnica.com/health/2026/07/michigans-explosive-outbreak-of-diarrheal-parasite-jumps-t...
1•rbanffy•7m ago•0 comments

Show HN: ParkMyAws – stop paying for dev/staging AWS instances at night

https://parkmyaws.com
1•moisish•8m ago•0 comments

Productivity by Sam Altman

https://blog.samaltman.com/productivity
1•nanfinitum•8m ago•0 comments

Show HN: New TLS 1.3 (RFC-8446) implementation written in Rust

https://github.com/c410-f3r/wtx
1•CaioFer•9m ago•0 comments

Anthropic found a hidden space where Claude puzzles over concepts

https://www.technologyreview.com/2026/07/09/1140293/anthropic-found-a-hidden-space-where-claude-p...
2•Brajeshwar•9m ago•0 comments

The AI Picbreeder Experiment

https://pub.sakana.ai/picbreeder-vlm/
1•hardmaru•10m ago•0 comments

Why Human+AI collaboration beats AI-only automation

https://www.techradar.com/pro/why-human-ai-collaboration-beats-ai-only-automation
1•ilreb•12m ago•0 comments

We Carried Out the Red/Blue Button Experiment with Life or Death Stakes

https://thebsdetector.substack.com/p/we-carried-out-the-redblue-button
1•surprisetalk•12m ago•0 comments

Looma – turn coding-agent history into resumable project context

https://github.com/devYRPauli/looma
2•yashrajpandey•13m ago•0 comments

I found the e-ink monitor I've been waiting for, and it changes how I work

https://www.xda-developers.com/finally-found-e-ink-monitor-waiting-for-changes-how-work/
2•raffael_de•13m ago•0 comments

Lawmakers Call for CDC to Track Vitamin K Shot Refusals, Cite ProPublica Report

https://www.propublica.org/article/vitamin-k-cdc-rfk-jr-lawmakers-letter
2•hn_acker•13m ago•0 comments

Significant OpenAI Regression On SimpleBench

https://old.reddit.com/r/singularity/comments/1uski8w/significant_openai_regression_on_simplebench/
1•optimalsolver•14m ago•0 comments

China may struggle to fund Xi Jinping's tech dreams

https://economist.com/finance-and-economics/2026/07/09/china-may-struggle-to-fund-xi-jinpings-tec...
1•andsoitis•14m ago•0 comments

The Salience of Data

https://www.mbi-deepdives.com/data/
1•vinhnx•15m ago•0 comments

The Iran War threatened a food crisis. The next Gulf conflict could do the same

https://www.reuters.com/graphics/IRAN-WAR/FERTILIZER/zjvqgwgakvx/
3•littlexsparkee•16m ago•1 comments

Keeping an Offline Copy of StackOverflow with Kiwix (2020)

https://rickcarlino.com/2020/keeping-an-offline-copy-of-stackoverflow-with-kiwix.html
1•turtleyacht•16m ago•0 comments

Proton Login Issues, anyone else impacted?

https://status.proton.me
1•aarondong•17m ago•3 comments

The Spec Ceiling: Why AI Coding Speed Moves the Bottleneck to Product Discovery

https://magnus919.com/2026/07/the-spec-ceiling-why-ai-coding-speed-moves-the-bottleneck-to-produc...
1•vinhnx•19m ago•0 comments

Trump Pushes Out Members of Bipartisan Election Commission Ahead of Midterms

https://www.propublica.org/article/federal-election-assistance-commission-trump-dismantled
4•hn1986•19m ago•0 comments

Netflix in Talks to Buy Letterboxd

https://variety.com/2026/digital/news/letterboxd-sales-talks-netflix-sony-paramount-1236806379/
2•theanonymousone•20m 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!