frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SPEAKE(a)R: Turn Speakers to Microphones for Fun and Profit [pdf]

https://www.usenix.org/system/files/conference/woot17/woot17-paper-guri.pdf
9•Eridanus2•10m ago•0 comments

Turtle WoW classic server announces shutdown after Blizzard wins injunction

https://forum.turtlecraft.gg/viewtopic.php?t=24891
1•HelloUsername•12m ago•0 comments

Compare Every Design Tool – Designtools.fyi

https://designtools.fyi
1•bthallplz•12m ago•0 comments

Ask HN: May be a basic question, but how can I use AI well?

1•jdw64•13m ago•0 comments

Monitor your Pi / OMP sessions

https://github.com/BlackBeltTechnology/pi-agent-dashboard
1•ankitg12•14m ago•0 comments

Running modern code on a 1960s UNIVAC computer via a RISC V emulator

https://farlow.dev/2026/04/17/running-a-minecraft-server-and-more-on-a-1960s-univac-computer
1•fanf2•14m ago•0 comments

Show HN: Unclog – find and fix Claude Code context bloat

https://github.com/thomaschill/unclog
1•tomchill•14m ago•0 comments

Fastest way to compute the greatest common divisor (2013)

https://lemire.me/blog/2013/12/26/fastest-way-to-compute-the-greatest-common-divisor/
1•tosh•17m ago•0 comments

Web Agent Bridge – An Open-Source OS for AI Agents (MIT and Open Core)

https://webagentbride.com
1•abokenan444•17m ago•0 comments

The purist's guide to phở in Hanoi

https://connla.substack.com/p/pho-in-hanoi-a-purists-guide
2•vinhnx•22m ago•0 comments

Binary GCD

https://en.algorithmica.org/hpc/algorithms/gcd/#binary-gcd
1•tosh•22m ago•0 comments

Ask HN: Is there an open source lovable/bolt?

1•dokdev•23m ago•0 comments

A Brief History of Fish Sauce

https://www.legalnomads.com/fish-sauce/
2•vinhnx•23m ago•1 comments

I built a real-time AR plane spotter, here's the math that makes it work

2•ananddhruv29•28m ago•0 comments

PCMind: Local AI analysis of docs, audio, video and images

https://pcmind.app/
1•hishamsasy•28m ago•0 comments

Claude is skeptical about OpenClaw

https://wecreatethis.com/blog/post?slug=claude-is-skeptical-about-openclaw
2•jameswhitford•31m ago•1 comments

Show HN: FFmpeg API Cloud – Run FFmpeg over HTTP

https://ffmpeg-api.cloud
1•gregzeng95•37m ago•0 comments

Apache Cloudberry 2.1.0

https://www.postgresql.org/about/news/apache-cloudberry-210-released-postgresql-based-mpp-databas...
1•salkahfi•37m ago•0 comments

A glimpse of the new software engineering

https://adlrocha.substack.com/p/adlrocha-a-glimpse-of-the-new-software
1•adlrocha•38m ago•0 comments

How much do sandboxes cost?

https://sandboxprices.swerdlow.dev/
3•benswerd•38m ago•1 comments

RAG as Similarity Engine

https://necromant2005.github.io/dev/rag-as-similarity-engine/
2•rmykhajliw•41m ago•2 comments

Token usage: Vanity metrics are back

https://jasperinsweden.substack.com/p/vanity-metrics-are-back
2•imartin2k•41m ago•0 comments

All you need is myformconnect

1•myformconnect•42m ago•0 comments

EU age verification app: "Worry-free package" with security vulnerabilities

https://www.heise.de/en/news/EU-age-verification-app-Worry-free-package-with-security-vulnerabili...
3•_tk_•44m ago•0 comments

Techie buys fake Ledger Nano S+ hardware wallet and almost falls for phishing

https://www.tomshardware.com/tech-industry/cyber-security/techie-buys-fake-ledger-nano-s-hardware...
2•NewCzech•47m ago•0 comments

Show HN: SharpSkill – I simplified the process of ITWs preparation

https://sharpskill.dev/en
2•Enjoyooor•54m ago•0 comments

Marvin Minsky – Steps Toward Artificial Intelligence (1961) [pdf]

https://courses.csail.mit.edu/6.803/pdf/steps.pdf
1•the-mitr•55m ago•0 comments

Show HN: Understand Anything – Graphs that teach > graphs that impress

https://github.com/Lum1104/Understand-Anything
1•lum1104•58m ago•0 comments

Show HN: Browser Sysinfo – See everything a webpage can learn about you

https://sysinfo.theden.sh/
2•theden•58m ago•0 comments

HN: UmaBot – a multi-agent AI assistant

https://github.com/shaktsin/umaBot
1•shaktdev•59m 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•11mo ago

Comments

semihs•11mo 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_•11mo 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•11mo 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_•11mo ago
That sounds great!