frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I put Claude Code on my Garmin running watch

https://github.com/fashton28/garmin-code
1•fashton28•1m ago•1 comments

The Underhanded C Contest

https://underhanded-c.org/
1•ccabraldev•2m ago•0 comments

Motte-and-Bailey Fallacy

https://en.wikipedia.org/wiki/Motte-and-bailey_fallacy
1•chistev•5m ago•0 comments

Break any AI scam phone call in just a few easy steps [video]

https://www.youtube.com/watch?v=lk3jCuITwcE
1•akavel•8m ago•0 comments

Show HN: GONK – Lightweight Edge-Native API Gateway in Go

https://github.com/JustVugg/gonk
1•vforno•8m ago•0 comments

Lawsuit alleges Samsung, SK Hynix, and Micron colluded to inflate DRAM prices

https://www.polygon.com/ram-manufacturers-sued-supply-price-fixing/
2•DSemba•11m ago•0 comments

Opening up 'Zero-Knowledge Proof' technology to promote privacy in age assurance

https://blog.google/innovation-and-ai/technology/safety-security/opening-up-zero-knowledge-proof-...
1•consumer451•13m ago•0 comments

Teaching AI to Reason About Software

https://soteria-tools.com/blog/teaching-ai
2•giltho•16m ago•0 comments

KDE Linux Introduces "Developer Mode" Option, Easier Log Collection

https://www.phoronix.com/news/KDE-Linux-June-2026
2•Bender•18m ago•0 comments

'It's like having a dumb friend': Young San Franciscans hate AI

https://www.sfgate.com/tech/article/san-francisco-ai-backlash-22325141.php
9•turtlegrids•19m ago•0 comments

US opts not to renew Trump's trade deal with Mexico and Canada

https://www.ft.com/content/2c7b4dc8-1b1c-49f4-b51a-0dee0c1d216a
4•petethomas•20m ago•0 comments

Roost

https://roostsocial.app/
1•JetSpiegel•20m ago•0 comments

Reap: Automatic Curation of Coding Agent Benchmarks

https://arxiv.org/abs/2604.01527
1•dipankarsarkar•22m ago•0 comments

Ask HN: Could someone invite me to lobste.rs?

1•ra0x3•22m ago•0 comments

The Rape Gang Inquiry Report

https://rapeganginquiry.co.uk/report
4•Bender•23m ago•1 comments

Are Claude models broken with the Fable 5 update?

1•jackjd•23m ago•0 comments

Cboe Seeks to List Prediction Market Type Options on Earnings Metrics

https://www.bloomberg.com/news/articles/2026-07-01/cboe-seeks-to-list-prediction-market-type-opti...
1•petethomas•23m ago•0 comments

Crimson Room (2004)

https://kbhgames.com/game/crimson-room
1•dieselgate•26m ago•0 comments

Best Investments over the Last 100 Years? Almost All Are Tech Companies.

https://www.nytimes.com/2026/06/26/business/apple-nvidia-tesla-spacex-stock-market-winners.html
1•bookofjoe•26m ago•1 comments

The empty corner in brain-to-text

https://brgsk.xyz/the-empty-corner-in-brain-to-text/
1•brgsk•26m ago•0 comments

Your Site, your rules: new AI traffic options for all customers

https://blog.cloudflare.com/content-independence-day-ai-options/
2•tcp_handshaker•27m ago•0 comments

Large Hadron Collider is shut down by CERN to make it more powerful

https://www.dailymail.com/sciencetech/article-15943949/Large-Hadron-Collider-shut-CERN.html
1•Bender•27m ago•0 comments

Show HN: Simulate what AI agents do to an engineering org (no signup)

https://www.orgonaut.co/tools/agentic-reorg-simulator/
1•orgonaut•28m ago•0 comments

FSF Librephone update: Ensuring freedom, one blob at a time

https://www.fsf.org/bulletin/2026/summer/ensuring-freedom-one-blob-at-a-time
7•g-b-r•29m ago•0 comments

Stop Quoting Steve Ballmer

https://www.boxofcables.dev/stop-quoting-steve-ballmer/
1•haydenbarnes•29m ago•2 comments

Meta is reportedly building its own cloud business

https://www.engadget.com/2206249/meta-is-reportedly-building-its-own-cloud-business/
1•tcp_handshaker•30m ago•0 comments

What Can't Fable Do?

1•alimhaq•31m ago•0 comments

Flickr – Senior SRE – Remote (US) – Full-Time

https://www.flickr.com/jobs?gh_jid=7822735&gh_src=7b63e17d1
1•Photoworkisfun•32m ago•0 comments

Tidesman: Native MCP server for Apple Container's Linux container workflows

https://tidesman.dev/
1•JeronimoColon•33m ago•0 comments

Polymarket

https://unlimitedhangout.com/2026/06/investigative-series/the-secret-history-of-polymarket-part-1/
2•some-guy•33m 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!