frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Some Thoughts on AI Safety

https://stevekinney.com/writing/thoughts-on-ai-safety
1•stevekinney•1m ago•0 comments

Is AI ruining our skills? Early results are in – and they're not good

https://www.nature.com/articles/d41586-026-01947-1
2•Michelangelo11•4m ago•0 comments

Simplicity always wins:SOTA on swe-pro,tb2,-verif on 21 models with simple-agent

https://github.com/strands-labs/benchmark-harnesses
2•gaurav71531•6m ago•1 comments

Better Graph Database Ball

https://blog.ladybugdb.com/post/better-graph-database-ball/
1•eatonphil•7m ago•0 comments

Poll: What's your primary AI coding agent/orchestrator?

1•jacobgold•9m ago•0 comments

Windows 11 update broke the Recycle Bin, OneDrive, and your PC's stability

https://www.techspot.com/news/112831-microsoft-confirms-weird-recycle-bin-bug-windows-11.html
4•speckx•11m ago•0 comments

John Jumper leaves Google to join Anthropic

https://twitter.com/JohnJumperSci/status/2068001285173834106
2•artninja1988•11m ago•2 comments

Pavel Durov accuses Meta of sabotaging access in India with BGP hijacks

https://www.theregister.com/networks/2026/06/19/telegram-founder-accuses-meta-of-sabotaging-acces...
3•rndsignals•12m ago•0 comments

Show HN: Multiplayer Usage Tracking for Claude Code, Codex and OpenCode

https://github.com/useautumn/summer
1•johnyeocx•13m ago•0 comments

Just made an app and MCP Server to convert Markdown to Google Docs

1•baroiall•14m ago•0 comments

Deep learning reveals antimicrobial peptides within prions

https://www.nature.com/articles/s41564-026-02408-1
1•bookofjoe•15m ago•0 comments

We Liked Remote Work. Then We Looked at the Data.

https://www.nytimes.com/2026/06/17/opinion/remote-work-depression.html
3•nickv•15m ago•4 comments

Geopolitical jitters push Europe's internet registry from cloud-first strategy

https://www.theregister.com/networks/2026/06/19/geopolitical-jitters-push-europes-internet-regist...
1•Bender•15m ago•0 comments

Five Things the "Nuke Bros" Don't Want You to Know About Small Modular Reactors

https://blog.ucs.org/edwin-lyman/five-things-the-nuclear-bros-dont-want-you-to-know-about-small-m...
3•cratermoon•16m ago•1 comments

Iconic Twin Cities rapper Eyedea finds new life with AI-generated album

https://www.cbsnews.com/minnesota/news/eyedea-ai-twin-cities-hip-hop-album/
2•NDlurker•16m ago•0 comments

Marktide – Performant HTML to Markdown for Python

https://github.com/zocomputer/marktide
2•benzguo•16m ago•0 comments

Microsoft discovers new lightweight backdoor that steals cryptocurrency

https://arstechnica.com/security/2026/06/microsoft-spots-new-self-propagating-malware-for-stealin...
3•Bender•17m ago•0 comments

Rebuild begins at Blue Origin launch pad; Relativity targets Mars

https://arstechnica.com/space/2026/06/rocket-report-rebuild-begins-at-blue-origin-launch-pad-rela...
2•Bender•17m ago•0 comments

Ask HN: What is the coolest tech progress outside AI?

5•vantareed•17m ago•0 comments

Mate-Selection and the Dark Triad

https://ink.library.smu.edu.sg/cgi/viewcontent.cgi?article=2384&context=soss_research
2•jruohonen•20m ago•0 comments

Show HN: Open-source Antigravity plugin for Claude Code

https://simplybychris.github.io/antigravity-plugin-cc/
2•simplybychris•22m ago•0 comments

Hospitals serving Medicaid patients prepare to take payment caps on the chin

https://healthexec.com/topics/healthcare-management/healthcare-policy/medicaid-state-directed-pay...
3•petethomas•22m ago•0 comments

Conway's Game of Life in Pure SQL

https://www.dbpro.app/blog/game-of-life-in-pure-sql
2•upmostly•23m ago•0 comments

Ask HN: How do you get feedback for beta apps

2•totaldude87•23m ago•0 comments

Learning to Program with the Cybiko Handheld Computer Using B2C

https://pic.hallikainen.org/techref/cybiko/b2c/ch1.htm
3•ForHackernews•25m ago•0 comments

LLM Quantization Project Part 1: What Even Is an LLM?

https://www.lttlabs.com/articles/2026/06/19/llm-quantization-part-1-what-even-is-an-llm
3•LabsLucas•28m ago•1 comments

Everything's bigger and better in Texas – even data breaches

https://www.theregister.com/security/2026/06/19/texas-gov-vendor-breach-exposes-data-of-3m-hunter...
2•jruohonen•29m ago•0 comments

APT28, an Evolution of Tradecraft

https://blog.sekoia.io/apt28-an-evolution-of-tradecraft/
2•mooreds•30m ago•0 comments

A New Bill Takes Aim at Government Pressure to Silence Lawful Online Speech

https://www.eff.org/deeplinks/2026/06/new-bill-takes-aim-government-pressure-silence-lawful-onlin...
21•hn_acker•30m ago•5 comments

Court Records Should Be Free

https://www.eff.org/deeplinks/2026/06/court-records-should-be-free
6•hn_acker•30m 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!