frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Sword Juggling Fallacy

https://hugotunius.se/2026/06/15/the-sword-juggling-fallacy.html
1•speckx•2m ago•0 comments

Memanto; open-source memory agent that remembers, recalls and answers

https://github.com/moorcheh-ai/memanto
2•majidfekri•2m ago•0 comments

Windows and Linux users: The deadline to update Secure Boot keys is near

https://arstechnica.com/security/2026/06/windows-and-linux-users-the-deadline-to-update-secure-bo...
2•everybodyknows•3m ago•0 comments

Ask HN: How do you decide what goes in a changelog vs. internal notes?

2•beratbozkurt0•3m ago•0 comments

Show HN: Cost-xray – per-token cost attribution, by tool, skill, prompt and more

https://github.com/tigerless-labs/cost-xray
2•ruihanli•4m ago•0 comments

Social media menagement tool with API for AI agents

https://schedpilot.com/
2•schedpilot•6m ago•1 comments

Geriatric butterfly species lives nearly three times as long as their relatives

https://phys.org/news/2026-06-geriatric-butterfly-species.html
2•gmays•6m ago•0 comments

"The Age of the Car Is Over": Fewer and Fewer Private Cars in Berlin

https://www.morgenpost.de/berlin/article412306798/die-zeit-des-autos-ist-vorbei-berlin-bei-autobe...
3•doener•6m ago•0 comments

New VPN rules for UK households on table from July after government update

https://www.birminghammail.co.uk/news/midlands-news/new-vpn-rules-uk-households-34129495
2•rzk•7m ago•0 comments

Ask HN: Whats the best and small open source model?

2•hairymouse•7m ago•0 comments

Immortals

https://immortals.com/
2•simonebrunozzi•7m ago•0 comments

We Got Anthropic's Glasswing at Home (Who Needs Mythos 5 or Fable 5?)

https://blog.attacks.ai/we-got-glasswing-at-home
2•Seventeen18•8m ago•0 comments

Show HN

https://github.com/Saptarshi2001/AsyncLoad
3•Saptarshi_Dutta•8m ago•0 comments

China's EV Price War Was Built on Cars Sold at a Loss

https://www.autoblog.com/features/chinas-ev-price-war-was-built-on-cars-sold-at-a-loss
3•TMWNN•9m ago•0 comments

Grand Theft Auto VI: Official Cover Art Reveal [video]

https://www.youtube.com/watch?v=EiQEBYDox_k
2•mikhael•9m ago•1 comments

Color Picking OKLCH for Mortals

https://hugodaniel.com/posts/color-picking-oklch/
2•birdculture•9m ago•0 comments

Show HN: Loomabase – Offline-first column-level CRDT sync for SQLite + Postgres

https://github.com/JustVugg/loomabase
2•vforno•9m ago•0 comments

Exploiting GPU Tensor Cores from Java Using Babylon

https://openjdk.org/projects/babylon/articles/hat-tensors/hat-tensors
2•0x54MUR41•12m ago•0 comments

Archaeology team unearths 'prototype' of Stonehenge just a few miles away

https://apnews.com/article/stonehenge-britain-discovery-summer-solstice-36f8517159a9e750c1042bebd...
2•geox•13m ago•0 comments

Civil Servants in the UK Were Paid to Play GTA Online

https://www.thegamer.com/gta-online-civil-servants-paid-uk/
3•theanonymousone•14m ago•0 comments

Neuralink competitor Paradromics just implanted its first brain-chip device

https://www.businessinsider.com/paradromics-brain-chip-implant-first-human-patient-speech-restora...
2•lareau•14m ago•0 comments

We Ran the Numbers. Remote Work Is Bad for Us

https://www.nytimes.com/2026/06/17/opinion/remote-work-depression.html
2•mooreds•15m ago•1 comments

Manus original investors plan to buy back AI firm from Meta for $2B

https://www.reuters.com/world/asia-pacific/manus-original-investors-plan-buy-back-ai-firm-meta-2-...
3•thm•18m ago•1 comments

Blink on iOS prototype beats Safari by 28%

https://open-web-advocacy.org/blog/28-percent-faster--the-blink-prototype-that-shows-why-apples-i...
2•pentagrama•18m ago•0 comments

The machine translation newsletter is back

https://newsletter.machinetranslate.org/p/the-machine-translation-newsletter-5c0
2•cefoo•19m ago•0 comments

Data at Scale: large-scale data processing conference (Amsterdam, 7 July)

https://www.dataatscale.dev/
2•tylerhannan•22m ago•0 comments

Show HN: Shout for Drinks – Don't scream your drinks order at festivals/bars

https://www.shoutfordrinks.com/app
2•MarkBekooy•24m ago•1 comments

Agentic AI Comes to Medicine

https://erictopol.substack.com/p/agentic-ai-comes-to-medicine
2•bookofjoe•24m ago•0 comments

HOLogram – an open protocol to obfuscate behavioral biometrics in the browser

https://www.hologramprotocol.org/
3•BaffiSan•25m ago•0 comments

Ask HN: Could Fable/Mythos be used to build Python's JIT?

2•vezycash•26m 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!