frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Free URL Shortener – No Account, No Expiry, No Signup

https://at-use.com/tools/url-shortener
1•atuse•52s ago•0 comments

Better Posture Linked to Better Decision Making and Mood

https://nautil.us/better-posture-linked-to-better-decision-making-and-mood-1283327
1•rbanffy•1m ago•0 comments

Show HN: A Catalog of Website Design.md

https://github.com/scroobius-pip/fudge-design-md/tree/main
1•sim04ful•3m ago•0 comments

The secret codewords that scammers hate

https://www.bbc.com/future/article/20260804-why-your-family-needs-a-secret-codeword
1•darkoob12•3m ago•0 comments

Pointing a Cloudflare Domain to Netlify Without Changing Nameservers

https://preslav.me/2026/07/28/cloudflare-to-netlify-dns/
1•speckx•4m ago•0 comments

I once wrote a programming language by hand and now I feel like a dinosaur

https://marcobambini.substack.com/p/that-time-is-gone
1•marcobambini•5m ago•1 comments

The Universe May Not Be Accelerating After All

https://www.popularmechanics.com/science/a73329682/universe-may-not-be-accelerating/
1•atombender•6m ago•0 comments

Judge a Book by Its Cover

https://www.mediumrare.site/judgeabook/
1•surprisetalk•6m ago•0 comments

JetBrains: IntelliJ Idea Goes LSP

https://blog.jetbrains.com/idea/2026/08/intellij-idea-goes-lsp/
1•esher•7m ago•0 comments

George R. R. Martin: Better Late Than Never

https://georgerrmartin.com/notablog/2026/08/03/better-late-than-never/
1•doener•9m ago•0 comments

Mapping finite nD lattices to 2D

https://thlp-method.netlify.app/
1•unitX•9m ago•0 comments

Why $100 in Your 20s is Worth $500 in Your 60s

https://ofdollarsanddata.com/why-100-in-your-20s-is-worth-500-in-your-60s/
1•speckx•10m ago•0 comments

Anthropic AI created fake profiles and impersonated people in attempted hack

https://www.bbc.co.uk/news/articles/c1w1lvn7d9go
2•zeristor•10m ago•0 comments

Ask HN: Show your micro-SaaS / MRR updates (August 2026)

1•genekrapivin•11m ago•0 comments

Natura Non Facit Saltus

https://en.wikipedia.org/wiki/Natura_non_facit_saltus
1•nill0•12m ago•0 comments

MDHero: A Markdown viewer and editor Windows was missing

https://mdhero.app/windows/
1•thunderbong•13m ago•0 comments

Blitz Agent Your specialized agent -> https://blitzagent.studio

1•rvey•13m ago•0 comments

Show HN: Six years of running a period tracker app with no subscription, no ads

https://simpluna.app/en
2•gaishimo•18m ago•0 comments

Show HN: Feedback widget with screenshots, annotations, and AI triage

https://github.com/makethisbetter/makethisbetter-js
3•ken2049•19m ago•0 comments

1. Show HN: Paste a job listing, see if it's still live on employer's own site

https://rolesweep.com/is-it-live
1•chetanba•19m ago•0 comments

Three Six Mafia – Data about "6/6/6 dating" (2024)

https://divingintheshallowend.com/three-six-mafia/
30•embedding-shape•21m ago•5 comments

Spec-Driven Development: The New Waterfall

https://medium.com/@ramtop/spec-driven-development-the-new-waterfall-8426a908d4da
2•tarkaTheRotter•21m ago•0 comments

Why is Anthropic destroying books?

https://www.theguardian.com/commentisfree/2026/aug/05/anthropic-ai-destroying-books
5•robaato•22m ago•0 comments

27B model running sub 7W

https://www.youtube.com/watch?v=fyL96mW3SaU
2•thomaslanning•23m ago•1 comments

The Fish Who Could Not Imagine Air

https://www.novaspivack.com/essays/the-fish-who-could-not-imagine-air
2•surprisetalk•26m ago•0 comments

An Invasive Mosquito Spreading with Alarming Speed, Threatening Africa's Cities

https://www.nytimes.com/2026/08/04/us/politics/mosquito-africa-anopheles-stephensi.html
2•thelastgallon•27m ago•0 comments

Show HN: Pistachio – Declarative schema management for PostgreSQL

https://github.com/winebarrel/pistachio
1•winebarrel•27m ago•0 comments

Identity and Substitutivity(1971) [pdf]

https://ncatlab.org/nlab/files/Cartwright-IdentityAndSubstitutivity.pdf
1•nill0•27m ago•0 comments

Data-centre reality check could slam brakes on AI earnings boom

https://www.reuters.com/commentary/reuters-open-interest/data-centre-reality-check-could-slam-bra...
1•mapping365•28m ago•0 comments

Show HN: SSPLAX – model and solve constrained operational decisions

https://ssplax.com/app/
1•abanoubey•28m 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!