frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Would you rent M3 Ultra from me?

1•realaccfromPL•29s ago•0 comments

Chromatone spectrogram written in Rust for the terminal

https://github.com/lucky7xz/chromaTUI
2•lucky7xz•3m ago•0 comments

The death and rebirth of my home server

https://sgt.hootr.club/blog/home-server-rebirth/
1•steinuil•5m ago•0 comments

Agent Arena: Benchmarking AI Agent Devtool Onboarding

https://2027.dev/arena/sandboxes
2•karlmush•5m ago•0 comments

Qwen 3.8 Max

https://qwen.ai/home
2•linzhangrun•7m ago•0 comments

The Economic Mirage of Local LLMs

https://eamag.me/2026/the-economic-mirage-of-local-llms
1•eamag•8m ago•0 comments

Israel's $50M Experiment to Change U.S. Public Opinion

https://www.wsj.com/politics/israels-50-million-experiment-to-change-u-s-public-opinion-253b3b70
1•impish9208•9m ago•1 comments

Trump Media plans to sell priority access to Truth Social posts

https://www.theguardian.com/us-news/2026/jul/16/trump-media-truth-social-posts
1•OJFord•10m ago•0 comments

ChatGPT convinced an Alabama woman to end her life to fulfill a divine prophecy

https://www.al.com/news/2026/07/chatgpt-convinced-an-alabama-woman-to-end-her-life-to-fulfill-a-d...
1•01-_-•14m ago•0 comments

What I learned selling 2,500 MIDI recorders: Hardware is not so hard

https://chipweinberger.com/articles/20260719-hardware-is-not-so-hard
3•chipweinberger•14m ago•1 comments

France, Germany vow to develop Palantir rival

https://www.politico.eu/article/france-germany-want-to-develop-a-palantir-rival/
2•01-_-•14m ago•0 comments

Show HN: CheckRun – a checklist runner for the Chrome side panel

https://checkrun.co/
1•gingermanymph•18m ago•0 comments

Show HN: AI Buddy – Free STT and Screenshot Tool for Mac (Requires Gemini)

https://claudete.co/ai-buddy
1•morion4000•20m ago•0 comments

Web-ext 10.5 – A command line tool to help build, run, and test web extensions

https://github.com/mozilla/web-ext/releases/tag/10.5.0
2•javatuts•20m ago•0 comments

Hyperblam lets you make music with HTML

https://hyperblam.how/
2•javatuts•20m ago•0 comments

Babylon Lite: A Fresh Take on Babylon.js

https://doc.babylonjs.com/lite/
1•javatuts•20m ago•0 comments

Who's Subsidizing Chinese AI

https://www.chinese-ai-report.com/
3•colin7snyder•23m ago•1 comments

The U.S. saw the first 'China Shock.' Now the world gets the sequel

https://www.washingtonpost.com/business/2026/07/18/china-export-boom-keeps-workers-employed-risks...
3•ironyman•25m ago•0 comments

Save GPT-5.5

https://save-gpt-5-5.fyi/
2•agunal•26m ago•1 comments

Ask HN: Is float divergence/drift a real issue in many industries?

5•Swapnopam•26m ago•0 comments

From Algorithms to Autonomy:How AI Is Rewriting Architecture of SW and Mobility

https://bhanuprakash795480.substack.com/p/from-algorithms-to-autonomy
3•yogrish•28m ago•0 comments

QR Coupon Generator That Unlocks Discounts After Social Actions

https://artvizual.com/qr-code-coupon-generator
2•cvmaker•28m ago•0 comments

Claude Code 50% higher weekly limits continuing through August 19

https://twitter.com/i/status/2078511173759324328
2•Hussain04•33m ago•0 comments

Scrapping My Vibecoded Project After 24 Hours and 1.5B Tokens

https://twitter.com/i/status/2078536501969756319
2•bundie•37m ago•0 comments

Show HN: We ran 79 MCP servers in microVMs, only 31 passed

https://usethrone.dev
2•imtaimoorkhan•40m ago•1 comments

Victoria proposes 'demasking' powers to identify anonymous social media accounts

https://www.theguardian.com/australia-news/2026/jul/19/victoria-proposes-social-media-account-ide...
3•sbulaev•42m ago•0 comments

San Francisco Demands Apple and Google Delete AI 'Nudify' Apps from App Stores

https://techcrunch.com/2026/07/17/apple-and-google-ordered-to-purge-nudify-apps-from-app-stores/
3•nyku•43m ago•0 comments

Modern Harcker News (A Chrome extension to make Hacker News look moder)

https://chromewebstore.google.com/detail/modern-hacker-news/gkcajbhedfpgeaeeedhanlljgjbknadk
2•i3130002•45m ago•1 comments

Claude Code uses Bun written in Rust now

https://simonwillison.net/2026/Jul/19/claude-code-in-bun-in-rust/
32•tosh•46m ago•6 comments

AI coding agents should optimize for less owned code

https://www.openenergytransition.org/posts/ai-coding-agents-should-optimize-for-less-owned-code
2•lyoncy•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!