frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Information and Attention (1971)

https://www.iecodesign.com/blog/2025/8/4/information-and-attention
1•RickJWagner•30s ago•0 comments

Grid Generator

https://codequest.work/generator/grid/en/
1•ORECTIC•2m ago•0 comments

Show HN: Taqta. Made an Are.na-style visual boards for Obsidian

https://github.com/djakish/obsidian-taqta
1•wasdwasdwasd•3m ago•0 comments

Apple Internals: Swift in the Kernel – By Josh Maine

https://blog.calif.io/p/apple-internals-swift-in-the-kernel
1•rbanffy•3m ago•0 comments

Just because each item makes sense doesn't mean they make sense together

https://blog.osull.com/2026/06/22/just-because-each-item-makes-sense/
1•danosull•3m ago•0 comments

Scanned React source code: 659 security issues, one real GitHub token found

https://github.com/xiaohou2503687-design/guardrail
2•shipfastcli•3m ago•0 comments

A Bitter Lesson for Memory

https://personal-website-3bed.onrender.com/blog-viewer.html?slug=A%20Bitter%20Lesson%20for%20Memory
1•wenhan_zhou•4m ago•1 comments

Is Anyone Else Excited by Swift's Progress as a Language? – Fatbobman's Weekly

https://weekly.fatbobman.com/p/fatbobmans-swift-weekly-141
2•fatbobman•4m ago•0 comments

Stargazing

https://www.futilitycloset.com/2026/06/15/stargazing/
1•surprisetalk•4m ago•0 comments

JSON Inspector – an offline-first Chrome extension to view and query JSON

https://chromewebstore.google.com/detail/jstools-json-inspector/dkgnmlmlpipjoabeolnfnpkkfmcbcjmj
1•javatuts•5m ago•0 comments

Binance set to lose permission to operate in Europe

https://www.reuters.com/business/finance/binance-set-lose-eu-licence-bid-permission-offer-service...
3•darktoto•7m ago•0 comments

Squidbleed

https://blog.calif.io/p/squidbleed-cve-2026-47729
1•Tomte•9m ago•0 comments

SpaceX Shares Poised to Fall Again as US Market Reopens

https://www.bloomberg.com/news/articles/2026-06-22/spacex-shares-poised-to-slide-again-as-us-mark...
2•johnbarron•9m ago•0 comments

How to Fix Bay Area Transit [pdf]

https://ti.org/pdfs/BayAreaTransit.pdf
1•xnx•11m ago•0 comments

Show HN: Lockin – system-level distraction blocker controlled via text

https://www.lockinmcp.com
1•Kiog-Aser•11m ago•0 comments

I Shot Films for 30 Years. Now I'm Building Safety Systems for AI Agents

https://maref.org/blog/from-steadicam-to-agent-governance
1•Athena-maref•13m ago•0 comments

Resolving Uncertainty: A Unified Overview of Rabbinic Methods [pdf]

https://u.cs.biu.ac.il/~koppel/rov-25.5.pdf
2•FergusArgyll•14m ago•0 comments

When Diets Don't Work: Parents Turn to Wegovy for Elementary School Kids

https://www.wsj.com/health/wellness/when-diets-dont-work-parents-turn-to-wegovy-for-elementary-sc...
1•JumpCrisscross•15m ago•0 comments

Show HN: Bowora – A launchpad for build-in-public founders

https://bowora.com
1•Nimaaksoy•18m ago•0 comments

Show HN: Appareo – For when you know what you want to say but can't write it

https://www.appareo.ink/
2•ShaunakInamdar•20m ago•0 comments

You Have the Pieces. Now Build It

https://www.theidentityunderground.com/post/you-already-have-the-pieces-now-build-it
1•mooreds•20m ago•0 comments

Instagram sued over illegal gambling ads in the Nederland

https://nltimes.nl/2026/06/22/instagram-sued-illegal-gambling-ads-featuring-virgil-van-dijk-ronaldo
3•giuliomagnifico•22m ago•0 comments

Llama-dash – One go-to control plane for local inference

https://llama-dash.dev
1•ndom91•22m ago•1 comments

The Things We Share

https://codeplusconduct.substack.com/p/the-things-we-share
1•mooreds•23m ago•0 comments

How Accurate Is Professor Jiang?

https://predictivehistory.com/prediction-tracker/
2•mooreds•24m ago•1 comments

Any Sufficiently Large Lookup Table Must Be Conscious

https://julianrdcosta.substack.com/p/any-realizable-implementation-of
1•Anon84•26m ago•0 comments

Alan Greenspan, former chairman of the Fed, dies at age 100

https://www.cnbc.com/2026/06/22/alan-greenspan-former-chairman-of-the-fed-dies-at-age-100.html
3•jacquesm•26m ago•0 comments

Show HN: Nigel – A web-based assistant to navigate and alter Wikipedia

https://codingbutler.webfuse.com/
2•Salomeko•27m ago•0 comments

Nexus – AI teams that attack your business plan until weak assumptions collapse

https://nexussim.ai/
3•youngyankee•28m ago•0 comments

Meta to Address Low Employee Morale With Snacks

https://mashable.com/tech/meta-facebook-morale-employee-perks
2•dccoolgai•29m 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!