frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How on Earth do you code in r3forth? [video]

https://www.youtube.com/watch?v=4JN1ywONiN4
1•phreda4•3m ago•0 comments

Wrong antibody used in over 50 cell aging studies

https://www.nature.com/articles/d41586-026-02352-4
1•Murfalo•4m ago•0 comments

SIMD Softmax, Neon to WASM, with Google Highway

https://uchenml.tech/simd-softmax-google-highway/
1•euos•7m ago•0 comments

The asteroid currently hitting front end web development

https://nolanlawson.com/2026/08/23/the-asteroid-currently-hitting-frontend-web-development/
1•cdrnsf•7m ago•0 comments

The Real Imposter Syndrome

https://minimallysustained.com/blog/2026-08-19
1•blondie9x•9m ago•0 comments

Show HN: Own the Day – Own a page for 24 hours, starting at $1

https://ownthe.day
2•alexcloudstar•19m ago•0 comments

Show HN: GPT Image 2 – Generate images with sharper in-image text

https://gpt-image2.art
1•littlepp•20m ago•0 comments

GitHub – schlarpc/re-shell: Nix-powered agentic reverse engineering environment

https://github.com/schlarpc/re-shell/
2•lifeisstillgood•31m ago•0 comments

I built a low-latency AI companion that plays Skyrim with me

https://pantel.is/projects/ai-gaming-companion/
2•pantelisk•32m ago•0 comments

Brandolini's Law

https://en.wikipedia.org/wiki/Brandolini%27s_law
1•vismit2000•33m ago•0 comments

Know Your Paradoxes

https://blog.coredump.cx/p/know-your-paradoxes
3•surprisetalk•34m ago•0 comments

The Free Instance Search

https://liamprosser77.github.io/gronnfalk/
1•Gronnfalk•35m ago•0 comments

'The Debt That Apple Owes to the CIA'

https://www.wsj.com/tech/steve-jobs-apple-next-cia-161b65f9
1•MilnerRoute•36m ago•1 comments

Show HN: UBOM now has attributes and artifacts

https://github.com/comalice/ubom-v4
1•all2•49m ago•0 comments

Show HN: Dddiscover – a rabbit hole for images, quotes, podcasts, and facts

https://dddiscover.com
1•hidelooktropic•57m ago•0 comments

MIT Researchers Develop Generative AI Tool to Boost Database Searches

https://aibusiness.com/data/mit-researchers-develop-generative-ai-tool-to-boost-database-searches
1•caruasdo•57m ago•0 comments

Durable tribal knowledge for all your AI agents

https://fixdoc.dev/
1•supercech•58m ago•0 comments

Show HN: A directory of vibe-coded or AI built games

https://aibuiltgames.com/
4•rrmdp•1h ago•4 comments

Tracker in rare book ends up in Amazon facility destroying books to train AI

https://www.tomshardware.com/tech-industry/artificial-intelligence/secret-tracking-device-placed-...
8•emptybits•1h ago•1 comments

Everything I own, owned

https://schlarp.com/posts/everything-i-own-owned/
90•schlarpc•1h ago•23 comments

Top Shit: The Wheel of Paid Mediocrity

https://topshit.lol
1•insomnie•1h ago•0 comments

Why Aging May Be a Program, Not a Breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
2•marojejian•1h ago•1 comments

Flock CEO calls for 'compromise' as surveillance company faces growing backlash

https://techcrunch.com/2026/08/23/flock-ceo-calls-for-compromise-as-surveillance-company-faces-gr...
3•cocacola1•1h ago•0 comments

Cal Fire/USFS Aerial Firefighting Drop Safety (2019) [video]

https://www.youtube.com/watch?v=ONdSoiI4zIA
1•CaliforniaKarl•1h ago•0 comments

GCC Patch Adjusting AMD Zen 5 Misprediction Cost Nets 12% Win in Benchmark

https://www.phoronix.com/news/AMD-Zen-5-Mispredict-Cost
3•Alephinitesimal•1h ago•0 comments

Coupling free electrons to a trapped-ion quantum computer

https://arxiv.org/abs/2601.11446
1•rbanffy•1h ago•0 comments

I Tried to Solve Hangman

https://ballparkfigures.substack.com/p/hangman
1•jffry•1h ago•1 comments

GOP issues stark warning to AI companies

https://www.axios.com/2026/08/19/gop-data-center-memo-ai-election
2•adletbalzhanov•1h ago•3 comments

Show HN: World Models 101 - an interactive guide to World Models

https://worldmodels101.com/chapters/what-is-a-world-model
2•Niluk•1h ago•0 comments

Higher-Order List Operations

https://matt.might.net/articles/higher-order-list-operations/
2•azhenley•1h 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!