frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Studis – Turn product photos into social media ads with AI

https://studis.io/
1•marjanatanasov•1m ago•0 comments

Analysing the Urban Attack: Insights from Soviet doctrine as a 'model checklist'

https://researchcentre.army.gov.au/library/land-power-forum/analysing-urban-attack-insights-sovie...
1•omnibrain•2m ago•0 comments

From Today, Software Engineering Is Dead

https://building138.com/from-today-software-engineering-is-dead
2•usernamed7•4m ago•0 comments

Forget the AI job apocalypse. AIs real threat is worker control and surveillance

https://www.theguardian.com/technology/2026/may/11/ai-worker-control-surveillance
1•beardyw•6m ago•1 comments

Open weights are quietly closing up – and that's a problem

https://martinalderson.com/posts/open-weights-are-quietly-closing-up/
1•birdculture•6m ago•0 comments

Rockstar fit a city into PlayStation 2 memory [video]

https://www.youtube.com/watch?v=cIbCxbrBCys
2•brandrick•7m ago•0 comments

Notes from a Gopher Hole

https://brookjeynes.dev/writings/2026/notes-from-a-gopher-hole/
1•chooky•10m ago•0 comments

An Immigrant's Love Letter to the West by Konstantin Kisin

https://www.sandordargo.com/blog/2026/05/09/an-immigrant-s-love-letter-by-kisin
1•ibobev•13m ago•0 comments

Using AI for just 10 minutes might make you lazy and dumb

https://www.wired.com/story/using-ai-negative-impact-thinking-problem-solving-study/
2•nottorp•14m ago•1 comments

Benchmarking Claude Opus 4.6 Vulnerability Detection

https://github.com/ZeroPathAI/opus-benchmark
1•jviide•14m ago•0 comments

What AI harnesses should learn from OAuth

https://ryanhiebert.com/oauth-for-ai-harnesses/
2•ryanhiebert•14m ago•1 comments

Concurrent, atomic MSI hash tables

https://nullprogram.com/blog/2026/05/06/
1•ibobev•14m ago•0 comments

Atomic Queue

https://uvdn7.github.io/atomic-queue/
1•ibobev•14m ago•0 comments

Bashunit 0.36.0 – Branch coverage, NPM distribution, and faster reports

https://github.com/TypedDevs/bashunit/releases/tag/0.36.0
1•Chemaclass•15m ago•0 comments

Wagering on War – How Insider Trading Destroys Armies [video]

https://www.youtube.com/watch?v=6lz3vTUbClc
2•mattashii•17m ago•0 comments

Where V-JEPA 2.1's Dense Features Hold Up (and Where They Don't)

https://poissonlabs.ai/research/vjepa-2-1-robustness/
1•taykolasinski•17m ago•0 comments

We need a safe alternative to Telegram for agents like OpenClaw or Hermes

3•oger•19m ago•0 comments

Sprite Scaling on the Master System: Building the New on the Ruins of the Old

https://nicole.express/2026/zoom-zoom.html
1•nicole_express•20m ago•0 comments

Show HN: Goshs – Single-binary server for red teamers: HTTP/S,SMB,NTLM,DNS/SMTP

https://github.com/patrickhener/goshs
1•patrickhener•21m ago•0 comments

Show HN: Veles – Hybrid (BM25 and semantic) local code search MCP, in Rust

https://github.com/julymetodiev/Veles
1•juliusml•26m ago•0 comments

Vivid Velvia

https://www.macfilos.com/2022/12/02/vivid-velvia-ten-fujifilm-landscape-photographs-scanned-after...
2•handfuloflight•27m ago•0 comments

Hormuz closure extends well beyond oil to threaten Chinese EVs

https://www.reuters.com/commentary/hormuz-closure-extends-well-beyond-oil-threaten-chinese-evs-20...
3•JumpCrisscross•29m ago•0 comments

I built a website to track sewerage spills by England's water companies

https://fullofsh.it
2•risquer•30m ago•0 comments

Claude Skills Bible: Lessons from 235 Production Skills

https://medium.com/@alirezarezvani/claude-skills-bible-lessons-from-235-production-skills-26860bc...
1•jungard•34m ago•0 comments

Show HN: Codex Automatic /Review Loop

https://github.com/Szpadel/codex-mcp-code-review
1•Szpadel•34m ago•0 comments

How AI mania is disguising big companies' hit from Iran war

https://www.ft.com/content/5e9008e6-75dc-438d-8eb0-1b507c426847
3•JumpCrisscross•35m ago•0 comments

Fasting Tracker: 16:8 and Vrat

https://play.google.com/store/apps/details?id=com.happyverse.fasting&hl=en_IN
1•activitydeck•36m ago•0 comments

Ghfs – GitHub Issues as a Filesystem

https://ghfs.dev/
2•ankitg12•37m ago•0 comments

I built an open-source visual AI agent builder – PandaFlow

1•ajaysheoran2323•38m ago•0 comments

OpenPrinter: A repairable, compact, and robust printer designed to last

https://www.opentools.studio/
2•mchan•39m 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!