frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Windows 11 sucks slightly less due to June update

https://www.engadget.com/2191909/windows-11-sucks-slightly-less-now-thanks-to-a-june-update/
1•NordStreamYacht•4m ago•0 comments

China-linked operatives used ChatGPT to influence data centers debate

https://www.axios.com/2026/06/10/openai-china-ai-data-center-tariffs-chatgpt
1•alephnerd•6m ago•1 comments

The Social Reckoning (official teaser trailer) [video]

https://www.youtube.com/watch?v=gM4LkaXwGuY
1•Fricken•9m ago•0 comments

WebODM: The Missing Guide

https://webodmbook.com
1•pierotofy•10m ago•0 comments

Plants Could Be Used to Grow Medicines in Space

https://today.ucsd.edu/story/plants-could-be-used-to-grow-medicines-in-space-study-shows
1•gmays•16m ago•0 comments

Starlink: The Constellation, Live

https://sheets.works/data-viz/starlink
1•jonbaer•17m ago•0 comments

Ask HN: Someone started a company same name, same city, industry

1•bxclltkfz•17m ago•0 comments

AdBreak – Jailbreaking the Kindle

https://kindlemodding.org/jailbreaking/AdBreak/
1•nivethan•18m ago•0 comments

The First 100 Wikipedia Pages

https://en.wikipedia.org/wiki/Wikipedia:First_100_pages
2•bananamogul•18m ago•0 comments

Return on Tokens (Rot)

https://www.notboring.co/p/return-on-tokens-rot
1•thedreammachine•19m ago•0 comments

Stop the Surveillance State [pdf]

https://epic.org/wp-content/uploads/2026/04/EPIC-Stop-the-Surveillance-State-5.pdf
1•Cider9986•20m ago•0 comments

Few things in DC are more predictable than Congress renewing surveillance powers

https://xcancel.com/RepThomasMassie/status/2064849178249892220
4•Cider9986•21m ago•0 comments

China's BYD aims to be biggest car firm within five years

https://www.theguardian.com/business/2026/jun/10/china-byd-car-firm-ev-maker-toyota
4•teleforce•21m ago•0 comments

A short history of Cerro Torre, the most controversial mountain

https://www.markhorrell.com/blog/2012/a-short-history-of-cerro-torre/
3•joebig•28m ago•0 comments

Vector memory database remembers everything. That's the issue

https://medium.com/@vektormemory/your-vector-memory-database-remembers-everything-thats-exactly-t...
2•vektormemory•29m ago•0 comments

AWS Graviton5's improved design increases speed and energy efficiency

https://www.amazon.science/blog/graviton5s-improved-design-increases-speed-and-energy-efficiency-...
3•tanelpoder•30m ago•0 comments

I was tired of repos that say they run but don't

https://github.com/rossbuckley1990-hash/bootproof
4•Bucko1•30m ago•1 comments

David Sinclair plans to test whole-body rejuvenation drugs in xPrize competition

https://www.technologyreview.com/2026/06/09/1138545/david-sinclair-plans-to-test-whole-body-rejuv...
3•bookofjoe•31m ago•1 comments

Show HN: Catalyst Maze: biotech trading game

https://rnpv.baybridgebio.com/maze/
3•aaavl2821•31m ago•0 comments

Show HN: Black Hole in Your Ghostty

https://twitter.com/s13k_/status/2064705517264552274
2•s13k•32m ago•0 comments

Shopee cuts jobs in Singapore amid AI push

https://www.channelnewsasia.com/singapore/shopee-job-cuts-layoff-employees-software-engineers-617...
2•kelt•34m ago•0 comments

We Saw What AI Data Centers Don't Want You to See [video][22 Mins]

https://www.youtube.com/watch?v=5p426fSlYH4
2•Bender•36m ago•0 comments

Show HN: Pacman AI – Generated with Claude Fable 5

https://pacmanai.com/
4•javierluraschi•37m ago•1 comments

Xkcd 2501 Generator

https://marshdeer.github.io/xkcd2501-generator/
2•animal_spirits•38m ago•0 comments

I am planning to drop from college, for the third time

2•alonsovm44•38m ago•0 comments

Everything at Once: Social Media, AI – – – A Digital Safety Commission (Canada)

https://www.michaelgeist.ca/2026/06/everything-all-at-once-bill-c-34-combines-platform-duties-a-k...
3•fidotron•39m ago•0 comments

Lattice Triangles Are Rare

https://axiommath.ai/territory/the-reveal
2•skogstokig•40m ago•0 comments

Sliced bread – "greatest thing since sliced bread"

https://en.wikipedia.org/wiki/Sliced_bread
2•gurjeet•40m ago•0 comments

Antirez on X: I believe what Anthropic is doing is *deeply* wrong

https://twitter.com/antirez/status/2064766429887352971
6•ethanpil•40m ago•2 comments

OmniscientIQ–We Use AI to Bring AI to Your AI

https://omniscientiq.com/
2•jayveeone•41m 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!