frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI Announces Rosalind Biodefense

https://openai.com/index/strengthening-societal-resilience-with-rosalind-biodefense/
1•JustSkyfall•32s ago•0 comments

Bijou64: A variable-length integer encoding

https://www.inkandswitch.com/tangents/bijou64/
2•justinweiss•2m ago•0 comments

Infinite Mac

https://infinitemac.org/
1•bookofjoe•2m ago•0 comments

Show HN: Tab Council – turn your AI tabs into a model council

https://github.com/vaddisrinivas/tab-council
1•srinivasvaddi•3m ago•0 comments

Partitioned Global Address Space

https://en.wikipedia.org/wiki/Partitioned_global_address_space
1•tosh•5m ago•0 comments

ON1 (G116 V8): 38μs Black-Box AI Memory Retrieval on Virtual Chip ISA

https://github.com/ON1-Hao/ON1
1•ON1-Hao•5m ago•0 comments

Million Programme – successful Swedish program to build 1M new homes over 10y

https://en.wikipedia.org/wiki/Million_Programme
1•Markoff•5m ago•0 comments

It Will Never Be the Year of the Linux Desktop

https://unix.foo/posts/it-will-never-be-the-year-of-the-linux-desktop/
5•cylo•6m ago•0 comments

Show HN: Stillis – An open-ended anonymous polling platform for anything

https://stillis.xyz
1•goldylochness•7m ago•0 comments

Million Users, Million Forks

https://www.anantjain.xyz/posts/million-users-million-forks
1•anant90•8m ago•0 comments

Show HN: Yavchn – Yet Another Vibe-Coded Hacker News Wrapper

https://yavchn.parkscomputing.com/hn/
1•paulmooreparks•9m ago•0 comments

It's hard to justify buying a Framework 12

https://www.jeffgeerling.com/blog/2026/its-hard-to-justify-framework-12/
2•watermelon0•10m ago•0 comments

Do U.S. Presidents Always Make This Much Money? [video]

https://www.youtube.com/watch?v=X5MzTvfjcOM
2•Kapura•11m ago•0 comments

Benchmarking SurrealDB 3.x vs. Postgres, Mongo, Neo4j and Redis (With Fsync)

https://surrealdb.com/blog/surrealdb-3-x-by-the-numbers
1•itsezc•12m ago•0 comments

HN jobs section led to a job for anyone?

https://www.workatastartup.com/
1•ahmadhamza19•14m ago•0 comments

Ask HN: Made new model type (not LLM) no idea how to sell it

1•sarahoates•15m ago•0 comments

Free Official YouTube Content – A List/Collection of Official YouTube Channels

https://github.com/SuperAB123/Free-Official-Youtube-Content
1•liketomakemoney•16m ago•1 comments

Discovering Dennis Ritchie's Lost Dissertation (2020)

https://computerhistory.org/blog/discovering-dennis-ritchies-lost-dissertation/
3•taubek•19m ago•0 comments

Linkano – Create durable links between what you work on

https://www.mjanssen.nl/linkano/index.html
1•marc0janssen•21m ago•0 comments

Plan/Optimse your internet connection

https://stabilitypulse.com/plan
1•sudhir0112•22m ago•0 comments

Ask HN: Question for Startup Founders on tracking emotions and cognitive signals

1•tonyrice•23m ago•1 comments

The geometry of superior athletic performance

https://nickmark.substack.com/p/the-geometry-of-superior-performance
2•fanf2•23m ago•0 comments

The Nvidia Tax

https://www.cringely.com/2026/05/29/the-nvidia-tax/
2•HotGarbage•24m ago•0 comments

BarrelCast – Live Surf Companion

https://barrelcast.surf
2•peachfuzzweb•24m ago•1 comments

I Am Retiring from Tech to Live Offline

https://openpath.quest/2026/i-am-retiring-from-tech-to-live-offline/
52•PinkG•25m ago•8 comments

StemDeck: Open-Source

https://github.com/stemdeckapp/stemdeck
3•thclpr•25m ago•0 comments

What's cooking on Sourcehut? Q2 2026

https://sourcehut.org/blog/2026-05-28-whats-cooking-q2-2026/
2•birdculture•25m ago•0 comments

William Adams, the Bombay bureaucrat, visions of a solar future

https://theconversation.com/my-unsung-hero-of-science-william-adams-the-bombay-bureaucrat-whose-v...
1•zeristor•26m ago•0 comments

Experts say increased US spending doesn't mean better students

https://www.thecentersquare.com/national/article_d9563a6a-6b85-4506-aceb-fe93a2f54639.html
1•Vaslo•26m ago•1 comments

Pavona: Open-Source Hardware Ecosystem for Secure Chips

https://spectrum.ieee.org/pavona-open-source-hardware
2•rbanffy•27m 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!