frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Map Hidden in America's Birth Certificates

https://nobodynamed.com/blog/your-states-signature-name/
1•michaelcolenso•26s ago•0 comments

French-Iranian author Marjane Satrapi, author of 'Persepolis', dies at 56

https://www.france24.com/en/culture/20260604-french-iranian-author-marjane-satrapi-author-of-pers...
1•fidotron•35s ago•0 comments

Show HN: Meditate-CLI – breathe with your terminal

https://github.com/walktalkmeditate/meditate-cli
1•momentmaker•1m ago•0 comments

Zorv-Self-hosted autonomous AI that fixes CVEs

https://zorv.openyf.dev
1•youelfedr•1m ago•0 comments

Network Scanner Script NWSS 3.2.0

https://github.com/ryanbr/network-scanner
1•mp3geek•1m ago•1 comments

Knox – Govern AI agent tool calls before they execute

https://github.com/qoris-ai/knox
1•Qoris_AI2026•3m ago•0 comments

When su replaced login for becoming another Unix login

https://utcc.utoronto.ca/~cks/space/blog/unix/SuAsLoginReplacement
2•ankitg12•4m ago•0 comments

Show HN: We've built a standalone Apple Watch app running LLMs offline, locally

https://nobodywho.ooo/posts/apple-watch-vision-pro-apps/
1•pielouNW•4m ago•0 comments

Field Notes from the AI Battlefield

https://taoofmac.com/space/blog/2026/06/04/1222
2•rcarmo•7m ago•0 comments

Show HN: HomeButler – A CLI that tells you what changed on your home server

https://github.com/Higangssh/homebutler
1•swq115•8m ago•0 comments

Anthropic's Series H and Draft S-1 Point to a Bigger Shift in Frontier AI

https://eido-askayo.blogspot.com/2026/06/anthropics-series-h-and-draft-s-1-point.html
1•Gryph0n77•9m ago•0 comments

Show HN: Cost.dev (YC W21) – making agents cost-aware and 79% cheaper to call

1•akh•9m ago•0 comments

Show HN: Coursly – iOS app that syncs your Moodle and makes quizzes from slides

https://apps.apple.com/us/app/coursly-student-planner/id6773110086
1•torsianWorld•11m ago•0 comments

Claude Code Commands Reference

https://www.gradually.ai/en/claude-code-commands/
1•ankitg12•12m ago•0 comments

Carola Frediani, Journalist covering surveillance, privacy, hacktivism, is dead

https://www.guerredirete.it/addio-carola/
1•No_CQRT•13m ago•0 comments

Ask HN: Heavy coding-agent users what's your context plumbing? Where it fails?

1•srbsa•15m ago•0 comments

Rust Is for People Who Want to Be Punished: Now He Trusts It More Than Python

https://belderbos.dev/blog/jochen-rust-cohort-beat-cpython/
1•lumpa•15m ago•0 comments

ReARM 26.06.5: Agentic Coding Guardrails and DevOps

https://rearmhq.com/news/2026-06-01-rearm-26-06-5-release/
1•taleodor•15m ago•0 comments

My Hermes and Obsidian Use Cases: Fitness Coach, Idea and Recipe Inbox, Bill Pay

https://metedata.substack.com/p/013-my-hermes-and-obsidian-set-up
1•young_mete•16m ago•0 comments

Productivity and the Workweek (2000)

https://groups.csail.mit.edu/mac/users/rauch/misc/worktime/
1•downbad_•17m ago•0 comments

Why Choose Paragon-Knives.com?

https://www.paragon-knives.com/
1•bgzlsxaz•17m ago•0 comments

SpaceX Announces Launch of IPO

https://spacexipo.com/
4•meetpateltech•20m ago•1 comments

Build Personal AI Agents on Windows PCs with New Tools from Microsoft and Nvidia

https://developer.nvidia.com/blog/build-personal-ai-agents-on-windows-pcs-with-new-tools-from-mic...
1•ibobev•21m ago•0 comments

Living in an Alive World

https://longreads.com/2026/06/02/jenny-odell-deep-listening-soft-eyes/
1•mooreds•21m ago•0 comments

First U.S. screwworm case confirmed in South Texas

https://www.texastribune.org/2026/06/03/new-world-screwworm-texas-reported-case/
1•tnorthcutt•21m ago•0 comments

'Teachers Are Going to Hate It': How Social Media Apps Hooked Teens at School

https://www.nytimes.com/2026/06/04/us/social-media-schools.html
2•broost3r•22m ago•0 comments

How the Invention of Rope Gave Us Modern Civilization [video]

https://www.youtube.com/watch?v=JThQIaluXPg
1•mooreds•22m ago•0 comments

Ian's Secure Shoelace Knot

https://www.fieggen.com/shoelace/secureknot.htm
1•mooreds•22m ago•0 comments

Omfreebdy – Omarchy-Inspired FreeBSD

https://omfreebdy.dba.wtf/
1•fbuilesv•24m ago•0 comments

Amazon Ring's Familiar Faces – Perfect Privacy and Environmental Storm

https://www.thatprivacyguy.com/blog/amazon-ring-familiar-faces-is-textbook-example-for-ecd/
1•AlexanderHanff•27m ago•1 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!