frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bazel Is Not for You

https://bytebard.software/articles/04-you-dont-need-bazel/
1•b-lorente•31s ago•0 comments

Show HN: Letterphile-a word game where you try to make many words with 1 letter

https://letterphile.com
1•sonOfHades•1m ago•0 comments

Salt Harvester

https://recyclingmachine.org/salt-harvester/
1•shuliymachinery•4m ago•0 comments

/R/MyBoyfriendIsAI

https://old.reddit.com/r/MyBoyfriendIsAI/
1•toilet•6m ago•0 comments

The Mystery of the Siberian Craters

https://nautil.us/the-mystery-of-the-siberian-craters-1051317
1•the-mitr•6m ago•0 comments

Statement from the President of the British Academy on UK higher ed. crisis

https://www.thebritishacademy.ac.uk/news/statement-from-the-president-of-the-british-academy-on-t...
1•theanonymousone•8m ago•0 comments

Using a projector for a home office setup to prevent eyestrain/myopia (2021)

https://sofiapandelea.medium.com/monitor-replacement-using-a-projector-for-a-home-office-setup-23...
1•plun9•9m ago•0 comments

Claude Fable relaunch disappoints users with nerfed performance

https://www.bleepingcomputer.com/news/artificial-intelligence/claude-fable-relaunch-disappoints-u...
2•giuliomagnifico•14m ago•0 comments

AI Art as Curation

https://blog.andymasley.com/p/ai-art-as-curation
1•jger15•16m ago•0 comments

10x smaller vector indexes in pgvector

https://github.com/pgvector/pgvector/pull/989
1•thunderbong•19m ago•0 comments

The night the Earth shook, strangers started to draw

https://sheets.works/data-viz/strangers-draw-maps
1•altilunium•20m ago•0 comments

Pandoc Lua Filters

https://pandoc.org/lua-filters.html
1•ankitg12•23m ago•0 comments

Microsoft Disclosure Provides Rare Glimpse of Tax Haven Tactics

https://www.nytimes.com/2026/07/03/technology/microsoft-europe-disclosure-tax-havens.html
1•giuliomagnifico•24m ago•1 comments

1966: Alan Turing's Machines – Mathematics in Action – BBC Archive

https://www.youtube.com/watch?v=oRBS70J2Poo
1•wjSgoWPm5bWAhXB•27m ago•0 comments

Interactive video game recommendation engine

https://nodal.gg
1•xiaodai•30m ago•0 comments

LLMs adopt the social biases of human if assigned different professional roles

https://www.psypost.org/artificial-intelligence-chatbots-adopt-human-power-dynamics-and-social-bi...
1•giuliomagnifico•32m ago•1 comments

What Is Amazon EventBridge?

https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-what-is.html
1•ankitg12•35m ago•0 comments

Someone infected a spyware probe overseer with spyware

https://cyberscoop.com/pegasus-spyware-pega-committee-member-targeted/
1•miohtama•36m ago•0 comments

Squeezes – Free Bulk Image Compressor

https://squeezes.vercel.app
2•marpe•38m ago•0 comments

A Day in the Life of an Enshittificator

https://kottke.org/26/04/day-in-the-life-of-an-enshittificator
5•hosteur•40m ago•0 comments

ReactOS Implements First Windows NT6 System Call Toward Vista Compatibility

https://www.phoronix.com/news/ReactOS-First-NT6-Syscall
3•serhack_•40m ago•2 comments

UK home to third largest number of billion dollar startups in the world

https://www.smeweb.com/uk-home-to-third-largest-number-of-billion-dollar-start-ups-in-the-world/
2•dukeyukey•42m ago•0 comments

Swimming Pools, Pee, and Trying to Delete Your Data from the Internet

https://www.troyhunt.com/swimming-pools-pee-and-trying-to-delete-your-data-from-the-internet/
1•jruohonen•44m ago•0 comments

AWS says it added more data center capacity

https://www.datacenterdynamics.com/en/news/aws-says-it-added-more-data-center-capacity-than-any-o...
1•01-_-•45m ago•0 comments

ClickHouse is winning the observability wars

https://matduggan.com/clickhouse-is-winning-the-observability-wars/
1•hiyer•45m ago•0 comments

And someone has already made an age verification bypass addon for Firefox

https://github.com/helloyanis/age-verification-bypass
1•My_Name•45m ago•0 comments

Meta Compute: Everyone Wants to Be a Neocloud

https://newsletter.semianalysis.com/p/meta-compute-everyone-wants-to-be
1•01-_-•46m ago•0 comments

Multi-Cloud DocumentDB Deployment (Kubernetes Operator)

https://github.com/documentdb/documentdb-kubernetes-operator/blob/main/documentdb-playground/mult...
1•mariuz•47m ago•0 comments

Transcribe.cpp

https://blog.mozilla.ai/announcing-transcribe-cpp/
1•Gedxx•49m ago•0 comments

Understanding Latency Hiding on GPUs [pdf]

https://www2.eecs.berkeley.edu/Pubs/TechRpts/2016/Archive/EECS-2016-143.pdf
1•porridgeraisin•49m 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!