frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ZKP's Aren't Age Verification Silver Bullets

https://www.eff.org/deeplinks/2026/08/zkps-arent-age-verification-silver-bullets
1•speckx•2m ago•0 comments

FTC Warns Retailers on Using Private Consumer Data to Raise Prices

https://www.wsj.com/business/ftc-warns-retailers-on-using-private-consumer-data-to-raise-prices-4...
1•impish9208•2m ago•1 comments

A Million and One Random Digits by Douglas Crockford

https://www.amazon.com/Million-Random-Digits-Millionplex-Library/dp/1949815048
1•gregsadetsky•2m ago•0 comments

Thoughts on dance music today informed by the Instagram perspective

http://energyflashbysimonreynolds.blogspot.com/2026/06/had-instagram-for-ages-but-never-got.html
2•mosiuerbarso•4m ago•0 comments

Eraser Diagrams: An open-source headless diagramming framework

https://github.com/eraserlabs/eraser-diagrams
2•jtadmor•5m ago•1 comments

Can you tell which AI-generated text is watermarked?

https://watermark-quiz.krishmatta.net/
2•nathan-barry•8m ago•0 comments

Meteoric origins of Egypt's first ironwork

https://blogs.ucl.ac.uk/museums/2013/09/01/23856/
1•Bluestein•9m ago•0 comments

WTF Are You Loading?

https://x-x.codes/posts/wtf-are-you-loading
1•abnercoimbre•10m ago•0 comments

Send a SAFE

https://www.ycombinator.com/safe
2•Finbarr•10m ago•0 comments

Show HN: Naeos – an engineering system for AI coding agents

https://github.com/NAEOS-foundation/naeos
2•bayu911•12m ago•0 comments

AiFi on AWS

https://www.coinbase.com/fr-fr/developer-platform/discover/launches/agentcore-ga
2•AnhTho_FR•14m ago•0 comments

WikiFM – Encyclopedia Radio

https://apps.apple.com/us/app/wikifm-encyclopedia-radio/id6800855289
2•t4t•15m ago•1 comments

Launch HN: OneCLI (YC S26) – OSS sandboxed agent harness for teams

https://github.com/onecli/onecli
4•guyb3•17m ago•0 comments

Attorney General Rob Bonta speaks after first day of Meta trial [video]

https://www.youtube.com/watch?v=o1gjjESzabg
2•natemurthy•18m ago•1 comments

Show HN: nanoAlphaZero – Train a grandmaster-level chess model in 24h with TPUs

https://github.com/wtedw/nanoAlphaZero
2•tdoubleu•19m ago•0 comments

Extensible Software in the Age of LLMs

https://jeremymorrell.dev/blog/extensible-software-in-the-age-of-llms/
3•coloneltcb•20m ago•0 comments

How Kubernetes Probes Work

https://ngrok.com/blog/probes
3•cyndunlop•20m ago•0 comments

InstrSem: Automatically Inferring Semantics of (Undocumented) CPU Instructions

https://roots.ec/publications/hetterich2026instrsem
2•matt_d•21m ago•0 comments

We've solved many medical mysteries. Where are the cures? [video]

https://www.ted.com/talks/saloni_dattani_we_ve_solved_many_medical_mysteries_where_are_the_cures
1•paulpauper•21m ago•0 comments

Extensibility Is the New Precondition

https://www.ivan.codes/blog/extensibility-is-the-precondition
2•deeshee•24m ago•0 comments

Things I want in a modern relational query language

https://sporks.space/2026/08/19/things-i-want-in-a-modern-relational-query-language/
1•birdculture•24m ago•0 comments

Claude watermark- science behind it

https://www.youtube.com/watch?v=FnAqruxx-QE
1•aymar_99•27m ago•0 comments

Chain-of-Thought Reasoning in the Wild Is Not Always Faithful

https://arxiv.org/abs/2503.08679
6•florianherrengt•27m ago•2 comments

How does wildfire smoke affect the economy?

https://phys.org/news/2026-08-wildfire-affect-economy.html
2•vinni2•28m ago•0 comments

Show HN: I am getting genuine questions

https://github.com/docbrain-ai/docbrain
2•bhanuhai2•29m ago•1 comments

We Stopped Paying for Linear

https://xiaofeidu.com/posts/linear-to-github-issues/
4•xiaofei_•31m ago•0 comments

If this algorithm runs too long, you can compress randomness

https://www.sidhantbansal.com/2026/Entropy-Stops-This-Algorithm/
1•sidhantbansal•35m ago•0 comments

What it felt like to hit the Hacker News front page

https://heyjonny.dev/posts/hitting-the-hacker-news-front-page/
2•heyjonny•36m ago•0 comments

AWS new AZ in eu-west-2 - beware of unexpected results

2•eddie_catflap•36m ago•0 comments

How Much Memory Does Your Agent Actually Need?

https://huggingface.co/blog/ibm-research/altk-evolve-hmm
2•Brajeshwar•37m 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!