frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beware of EU-Washing

https://blog.avas.space/eu-washing/
1•BrunoBernardino•27s ago•0 comments

How API Drift Silently Breaks Data Pipelines

https://medium.com/data-science-collective/how-api-drift-silently-breaks-data-pipelines-and-how-t...
1•mkhorasani•4m ago•0 comments

gopher://gopher.floodgap.com/

https://gopher.floodgap.com/gopher/gw
1•susam•6m ago•0 comments

Lens Aberrations Explained (2023)

https://phillipreeve.net/blog/lens-aberrations-explained-part-1/
1•sirpilade•7m ago•0 comments

Spy: language semantics for a statically-typed compiled variant of Python

https://antocuni.eu/2026/03/25/inside-spy-part-2-language-semantics/
1•fanf2•7m ago•0 comments

"Long-Term Support" doesn't mean what you think

https://pointieststick.com/2026/05/23/long-term-support-doesnt-mean-what-you-think/
1•naves•8m ago•0 comments

Layman with no degree directs AI agents to derive Newton's G to 1.86 ppm

https://github.com/oldrich-research/gravitational-constant-relation
1•Oldrich333•8m ago•0 comments

Bullwhip Effect

https://en.wikipedia.org/wiki/Bullwhip_effect
1•olalonde•8m ago•0 comments

The Booing Will Continue Until Commencement Speeches Improve

https://gizmodo.com/the-booing-will-continue-until-commencement-speeches-improve-2000762929
1•makerdiety•10m ago•0 comments

Show HN: Lightweight, OpenSource, zero-dependency App tour & user onboarding SDK

https://www.npmjs.com/package/@qocial/tour
1•qocialApp•10m ago•0 comments

Show HN: Treasury – Ask your money anything

https://treasury.sh/
1•junead01•11m ago•0 comments

A Language for Describing Agentic LLM Contexts

https://arxiv.org/abs/2605.01920
1•mpweiher•18m ago•0 comments

Conifer, launching June first (free and open source): local inference runtime

https://conifer.build/feedback/
2•loctran0323•20m ago•0 comments

Show HN: MailMark – Cold email tool where you own your domain and mailboxes

1•debasishbarai•26m ago•0 comments

A PR proposes to stabilize the Rust allocator API

https://github.com/rust-lang/rust/pull/156882
1•afdbcreid•26m ago•0 comments

Hyper – an API framework for Bun, distributed as source

https://hyperjs.ai/
1•mmcclure•26m ago•0 comments

QuickGrab – Magic Video Downloader

https://quickgrab.app/
1•exhunter•29m ago•0 comments

TrapDoor Cross-Ecosystem Crypto Stealer Campaign

https://haltingproblems.com/analysis/trapdoor-cross-ecosystem-crypto-stealer/
1•s4mw1se•29m ago•0 comments

Show HN: Voxxy – a minimal, fast voice-to-text app for macOS

https://www.voxxy.io
9•mrguenter•32m ago•0 comments

Anita Calculators: The Technology Explained

http://www.anita-calculators.info/html/the_technology_explained.html
2•rolph•33m ago•0 comments

Flying planes in a geese formation could save carbon emissions

https://www.virgin.com/about-virgin/latest/how-flying-in-a-geese-formation-could-save-carbon-emis...
1•simonebrunozzi•36m ago•1 comments

Show HN: I built a TikTok style video debate app

https://tussup.com
1•frantzarty•36m ago•0 comments

AI agents just got their own web browser via a Firefox fork

https://blog.adafruit.com/2026/05/19/ai-agents-just-got-their-own-web-browser-via-a-firefox-fork/
2•MilnerRoute•46m ago•1 comments

Best TTS models, a blind benchmark

https://techstackups.com/articles/best-tts-2026-blind-benchmark/
1•sixhobbits•53m ago•1 comments

West Coast Cities Turn to Vacancy Taxes to Grapple with Housing Crisis

https://www.theurbanist.org/west-coast-cities-turn-to-vacancy-taxes-to-grapple-with-housing-crisis/
4•harambae•57m ago•0 comments

Rank My Salary

https://rankmysalary.com
3•zakkishahh•57m ago•0 comments

A collection of small, low stakes and low effort tools

https://delphi.tools/
1•anyonecancode•58m ago•0 comments

Ask HN: I only use 30% of my Claude max x5 all model quota

2•firemelt•59m ago•1 comments

Cheap attack drones break through Israel's Iron Dome

https://www.dw.com/en/cheap-attack-drones-break-through-israels-iron-dome/a-77235132
3•Teever•1h ago•0 comments

Machine Code For Beginners (1983) [for the Z80/6502]

https://drive.google.com/file/d/0Bxv0SsvibDMTcHNXalEtYkVtU00/view?resourcekey=0-YtCcUG7ytBL-ls8gc...
3•peter_d_sherman•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!