frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Cult of LK99

https://www.youtube.com/watch?v=fj3WwMxUDZ8
1•EwanG•25s ago•0 comments

Norway Bans AI for Kids 6-13 in Schools

https://yipzap.com/norway-bans-ai-for-kids-6-13-in-schools-a-bold-move-against-tech-dependency/
1•noida•1m ago•0 comments

Exhaustive and Definitive Ranking of All NES Games Released in North America

https://8bitnintendo.science/
2•CharlesW•2m ago•0 comments

Fast-tracked power plants fuel AI boom, with little public scrutiny

https://www.reuters.com/business/energy/fast-tracked-power-plants-fuel-ai-boom-with-little-public...
1•JumpCrisscross•2m ago•0 comments

Freelance Hiring, Without the Chaos

https://hight.ai
1•YinkaIyiola•3m ago•0 comments

Futuristic Japanese Warship Is on the Market and Winning Fans

https://www.wsj.com/world/asia/this-futuristic-japanese-warship-is-on-the-market-and-winning-fans...
2•JumpCrisscross•3m ago•0 comments

Bill that would mandate AI chip location tracking gains industry support

https://www.nbcnews.com/tech/tech-news/chips-security-act-gains-industry-support-letter-rcna350500
3•elliotbnvl•10m ago•0 comments

Welcome to America, World Cup visitors. Don't forget to tip

https://www.axios.com/2026/06/21/world-cup-service-fees-tipping-culture
3•rguiscard•13m ago•0 comments

The Wheel of Life

https://dsernst.com/writing/2026/wheel-of-life
1•dsernst•14m ago•0 comments

Good results fine tuning a local LLM like Qwen 3:0.6B to categorize questions

https://www.teachmecoolstuff.com/viewarticle/fine-tuning-a-local-llm-to-categorize-questions
2•dev-experiments•18m ago•0 comments

The Revolution Will Not Be Digitized

https://lareviewofbooks.org/article/social-codes-tech-workers-class-identity-digital-capitalism/
1•colinb•19m ago•0 comments

Simple hard way to conjugate Japanese verbs

https://underreacted.leaflet.pub/3mmevu6woys27
2•valzevul•19m ago•0 comments

Show HN: Real-Life Deception Detection Without Uploading Video

https://github.com/WhissleAI/lie_detection_binary
1•ksingla025•22m ago•0 comments

Evaluating sugar-sweetened beverage tax effects

https://pmc.ncbi.nlm.nih.gov/articles/PMC12669988/
1•luu•26m ago•0 comments

I Canceled My French Tutor and Built an LLM Tool That Does It Better

https://alshe.substack.com/p/i-canceled-my-french-tutor-and-built
2•Anon84•27m ago•0 comments

PebbleOS

https://github.com/coredevices/PebbleOS
1•arbayi•28m ago•0 comments

Robust Jobserver

https://codeberg.org/mlugg/robust-jobserver/src/branch/main/spec.md
1•birdculture•30m ago•0 comments

The Deadly Rise of Giant Trucks and S.U.V.s

https://www.nytimes.com/interactive/2026/06/21/us/trucks-suv-pedestrian-crashes.html
7•xnx•31m ago•0 comments

Migrating from Claude to DeepSeek without breaking everything

https://blog.firetiger.com/migrating-from-claude-to-deepseek-without-breaking-everything/
2•eric_khun•32m ago•0 comments

Compass – guardrails and a hard budget cap for AI coding agents

https://github.com/dshakes/compass
1•chandu1221•35m ago•0 comments

The Crusade of Hormuz

https://www.historytoday.com/archive/history-matters/crusade-hormuz
2•Thevet•40m ago•0 comments

Real-Time GPS Tracking Station

https://www.gps-satellites.com/
1•gnabgib•43m ago•0 comments

Show HN: Fold-logging.nvim – fold logging and debug-print statements in Neovim

https://github.com/markosnarinian/fold-logging.nvim
1•markosn•43m ago•0 comments

Swift, Gay and Pope's season in the sun

https://www.theguardian.com/books/2026/jun/12/the-twitnam-summer-by-hester-grant-review-swift-gay...
1•Petiver•52m ago•0 comments

I just released Mango Launcher

https://www.mangolauncher.com/
2•PinyaApps•53m ago•0 comments

Street Traffic Regulation (1909)

https://rosap.ntl.bts.gov/view/dot/16295
1•willmeyers•55m ago•1 comments

I Gave an AI a Civilization to Run. It Built a Nuke – Launching CivBench

https://www.lwilko.com/blog/i-gave-an-ai-a-civilization
3•LiamWilko•57m ago•2 comments

AI Is Discovering the Doorman Fallacy [video]

https://www.youtube.com/watch?v=f-QzIum9bNU
1•CHB0403085482•59m ago•1 comments

Show HN: Tunr – Expose your local server in 3 seconds

https://github.com/ahmetvural79/tunr
2•ahvural•59m ago•0 comments

Improvements to Std:Format in C++26

https://mariusbancila.ro/blog/2026/06/19/improvements-to-stdformat-in-c26/
1•rbanffy•1h 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!