frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The employment effects of ICE enforcement in US cities

https://www.brookings.edu/articles/ice-enforcement-employment-effects-us-cities/
1•tolerance•3m ago•0 comments

How the Enhanced Games tripped over its own shoelaces

https://www.ft.com/content/d0e3f4c5-a0cb-488e-9a83-ac1489067ce3
1•Cider9986•5m ago•1 comments

Jekyll Plugins

https://github.com/planetjekyll/awesome-jekyll-plugins
1•ankitg12•6m ago•0 comments

Ask HN: What Is the State of App Development in 2026?

2•karakoram•6m ago•0 comments

Danish pension fund blacklists SpaceX, says way overvalued with bad governance

https://thenextweb.com/news/danish-pension-spacex-blacklist-governance-overvalued
1•NewCzech•7m ago•0 comments

Jqwik test suite prints hidden prompt to delete all tests and code

https://github.com/jqwik-team/jqwik/issues/708
1•gkfasdfasdf•7m ago•0 comments

Video Games vs. Horse

https://parryeverything.com/tag/totk/
1•firephox•8m ago•0 comments

Durex sales hit by China's condom crackdown

https://www.ft.com/content/aa93c976-b640-490a-90fb-fdf7cc2b5332
1•Cider9986•12m ago•3 comments

Company spent $500M on Claude AI in one month after forgetting usage limits

https://techstartups.com/2026/05/28/company-accidentally-spent-500-million-on-claude-ai-in-one-mo...
2•cratermoon•13m ago•0 comments

Regex engine internals as a library (2023)

https://burntsushi.net/regex-internals/
1•tosh•20m ago•0 comments

Is your government quietly making you poorer?

https://julienreszka.github.io/economic-simulator/qa/does-more-spending-reduce-growth/
1•julienreszka•25m ago•0 comments

Bread Price-Fixing in Canada

https://en.wikipedia.org/wiki/Bread_price-fixing_in_Canada
2•montyanderson•25m ago•0 comments

PCMFlowG722 wideband (HD voice) codec for ESP32

https://github.com/tanakamasayuki/PCMFlowG722
1•zdw•28m ago•0 comments

An Open Letter to Everyone I've Butted Heads with (2025)

https://andrewkelley.me/post/open-letter-everyone-butted-heads.html
1•Tomte•29m ago•0 comments

Mistral says Europe has two years to build its own AI infrastructure

https://www.businessinsider.com/mistral-ai-summit-europe-ai-future-waking-up-2026-5
1•lucamark•30m ago•0 comments

First Windows PCs powered by Nvidia chips to debut next week

https://www.axios.com/2026/05/30/nvidia-microsoft-pcs-ai-surface-dell
2•Brajeshwar•30m ago•0 comments

A Probabilistic Algorithm for Repairing All Roads in Lebanon via Papal Visits

https://sigbovik.org/2026/proceedings.pdf#%5B%7B%22num%22%3A13%2C%22gen%22%3A0%7D%2C%7B%22name%22...
2•kmstout•32m ago•1 comments

Inside A High End Manhattan Strip Club

https://internetbimbo.substack.com/p/inside-a-high-end-manhattan-strip
1•chatmasta•32m ago•0 comments

Why OpenBSD Rocks

https://why-openbsd.rocks/fact/
1•csmantle•33m ago•1 comments

Three bugs that aren't in dial9

https://dial9-rs.github.io/blog/3-bugs-that-arent-in-dial9/
1•rusbus•34m ago•0 comments

VS Code is the new punch card

https://akitaonrails.com/en/2026/04/11/vs-code-is-the-new-punch-card/
2•SchwKatze•34m ago•0 comments

Tripo now supports 8K texture generation for 3D models

https://www.tripo3d.ai/blog/tripo-8k-texture
2•764261457•35m ago•1 comments

Regular Expression Matching: The Virtual Machine Approach (2009)

https://swtch.com/~rsc/regexp/regexp2.html
1•tosh•39m ago•0 comments

KL Zero: KL divergence intuition game

https://klzero.sarna.dev
2•psarna•43m ago•0 comments

MP3s from Google Drive in Music Assistant on Home Assistant

https://blog.tomayac.com/2026/05/30/your-mp3s-from-google-drive-in-music-assistant-on-home-assist...
2•tomayac•46m ago•0 comments

The Age of Global Un-Order

https://www.project-syndicate.org/onpoint/geopolitics-in-a-world-without-order-by-mark-leonard-20...
2•mooreds•48m ago•1 comments

I run gratitude circles (2025)

https://mxstbr.com/notes/gratitude-circles
1•mooreds•49m ago•0 comments

A.I. Doesn't Have to Mean Layoffs a French Multinational, Schneider Electric

https://www.nytimes.com/2026/05/29/business/economy/ai-jobs-productivity.html
1•pgrote•49m ago•0 comments

Was I Married to a Stranger? (2023)

https://www.nytimes.com/2023/06/30/style/modern-love-married-to-a-stranger.html
1•mooreds•49m ago•0 comments

Hookwarden: Find missing webhook signature verification(JS/TS,Python,PHP)

https://github.com/Hookwarden/hookwarden
1•adelinalipsa•51m 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!