frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Can an AI model fit on a single pixel?

https://github.com/dvelton/ai-pixel
1•deevelton•3m ago•0 comments

Reflections on Vibe Researching

https://joshuagans.substack.com/p/reflections-on-vibe-researching
1•NomNew•5m ago•0 comments

The Signal Ledger: Turning technical reading into compounding research

https://blog.pjhoberman.com/build-a-knowledge-base-that-compounds
2•hookedonwinter•7m ago•0 comments

Naftiko Open-Source Spec-Driven Integration

https://github.com/naftiko/framework/
3•apievangelist•7m ago•1 comments

Nutshell Newsletter – Daily Customizable RSS Summarizer

https://www.nutshellnewsletter.com/
2•jhiggins777•8m ago•1 comments

Ask HN: Is there any tool that can stop LLM calls at runtime (not just monitor)?

2•8dazo•9m ago•0 comments

We built a tool for custom timeouts on your Unity Cloud builds

https://buildstash.com/blog/custom-timeouts-on-your-unity-cloud-builds
2•r0bbie•10m ago•1 comments

The Wealthy Investors That Powered Private Credit Are Rushing for the Exits

https://www.wsj.com/finance/investing/the-wealthy-investors-that-powered-private-credit-are-rushi...
1•toomuchtodo•11m ago•0 comments

Global democracy is in better shape than you think

https://economist.com/interactive/democracy-index-2025
1•andsoitis•14m ago•0 comments

Show HN: Kerf-CLI – SQLite-backed cost analytics for Claude Code

https://github.com/dhanushkumarsivaji/kerf-cli
3•dhanushkumars•15m ago•0 comments

Why Anthropic's new model has cybersecurity experts rattled

https://www.platformer.news/anthropic-mythos-cybersecurity-risk-experts/
1•leecoursey•16m ago•0 comments

VFX HQ: Visual Effects Headquarters (2000)

https://www.vfxhq.com/index.html
1•exvi•18m ago•0 comments

US, Iran say they have agreed to a two-week ceasefire

https://apnews.com/live/iran-war-israel-trump-04-07-2026
4•djoldman•19m ago•1 comments

Mass. lawmakers looking to usher in 'most restrictive' social media ban in USA

https://www.independent.co.uk/news/world/americas/social-media-ban-massachusetts-bill-b2953302.html
1•c420•23m ago•0 comments

Running OpenClaw in Production: Integrating with Your Mobile & Web Apps

https://docs.mesibo.com/tutorials/openclaw-production-mobile-web-integration/
2•mesibo•26m ago•0 comments

Launching My Product. Part 1: Finding an Idea That Works (and Keeps You Going)

https://www.indiehackers.com/post/launching-my-product-part-1-finding-an-idea-that-actually-works...
1•vital_pavlenko•26m ago•0 comments

Predict and Profit, automated Kalshi bots for weather and CPI/PCE

https://predictandprofit.io
1•stfarm•27m ago•0 comments

The BSDs in the AI Age

https://lists.nycbug.org/pipermail/talk/2026-April/018894.html
2•jaypatelani•29m ago•0 comments

Trump agrees to 2-week ceasefire if Iran opens Strait of Hormuz

https://www.foxnews.com/politics/trump-agrees-2-week-ceasefire-iran-opens-strait-hormuz
2•koolba•32m ago•1 comments

Is Claude Code an agent or a harnness?

https://agenticloopsai.substack.com/p/is-claude-code-an-agent-or-a-harness
1•vbanthia__•34m ago•0 comments

AI Assistance Reduces Persistence and Hurts Independent Performance

https://arxiv.org/abs/2604.04721
1•dougb5•35m ago•1 comments

The Strait Jacket of Hormuz – Solved and Resolved

https://jeffreylminch.substack.com/p/the-strait-jacket-of-hormuz-solved
2•rmason•37m ago•1 comments

Scaling AI Vulnerability Scanning Beyond One File at a Time

https://brian-chastain.com/field-notes/scaling-ai-vuln-scanning/
1•ZeroDumb•37m ago•0 comments

We need re-learn what AI agent development tools are in 2026

https://blog.n8n.io/we-need-re-learn-what-ai-agent-development-tools-are-in-2026/
2•healsdata•39m ago•0 comments

DocumentDB Fuse – FS interface for the database

https://github.com/xgerman/documentdbfuse
1•xgerman•42m ago•1 comments

Mindfulness, Programming, and the Mistake I Made

https://yonatanmedan.github.io/blog/mindfulness-programming-and-the-mistake-i-made/
2•eranation•42m ago•0 comments

AI coding assistant skill (Claude Code, Codex, OpenCode, OpenClaw, Factory Droid

https://github.com/safishamsi/graphify
1•safishamsi•50m ago•0 comments

Trump suspends Iran attack for two weeks, subject to Hormuz Strait opening

https://www.cnbc.com/2026/04/07/trump-iran-ceasefire-hormuz-strait.html
2•shinryudbz•50m ago•1 comments

Behind the curtain. A comprehensive guide to Russia internet censorship in 2026

https://en.zona.media/article/2026/04/07/russian_internet_censorship_2026
1•rudnevr•52m ago•0 comments

Crag – One governance file, every AI coding tool (50 repos, 96.4% accuracy)

https://github.com/WhitehatD/crag
3•whitehatd•52m 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!