frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Even if 90% of AI-discovered vulnerabilities are made up, it's still terrifying

https://kerkour.com/ai-slop-vulnerabilities-terrifying
1•redcannon218•1m ago•0 comments

You Have Become a Fat King

https://highstandards.substack.com/p/you-have-become-a-fat-king
1•speckx•2m ago•0 comments

Agents can now run the full SDLC. What do engineers do now?

https://www.augmentcode.com/blog/what-do-engineers-do-when-agents-run-the-full-sdlc
1•knes•2m ago•0 comments

Show HN: A prompt to make LLMs write property-based tests

https://github.com/e35zhang/property-testing-skill
1•e35zhang•3m ago•0 comments

Self-Hosted VPN Servers

https://bryanhu.com/easyVPN/
1•thatxliner•3m ago•1 comments

DKIM2: Successor to Arc and DKIM

https://dmarcguard.io/blog/arc-to-dkim2-future/
1•meysamazad•4m ago•0 comments

Ask HN: Why is this Microsoft Outlook page sending me elsewhere?

1•zwilderrr•4m ago•0 comments

Cloudflare Identifies Race Condition in Hyper's HTTP/1 Implementation

https://www.infoq.com/news/2026/07/cloudflare-hyper-bug-fix/
1•theanonymousone•4m ago•0 comments

Silverstone 2026 British GP

https://edleeman.co.uk/posts/silverstone-2026-british-gp/
1•meysamazad•4m ago•0 comments

Debian New Maintainers' Guide

https://www.debian.org/doc/manuals/maint-guide/index.en.html
1•gregsadetsky•5m ago•0 comments

Designing APIs for Agents

https://www.freestyle.sh/blog/opinion/designing-apis-for-agents
1•benswerd•5m ago•1 comments

How This Blog Is Deployed

https://connermccall.com/blog/2026/07/06/deployment/
1•meysamazad•5m ago•0 comments

Show HN: Anonymous LLM proxy. Pay in crypto, no account needed

https://nullsink.is/
1•not_wowinter13•7m ago•0 comments

Prefect Acquires Dagster

https://www.prefect.io/prefect-acquires-dagster
2•theanonymousone•8m ago•0 comments

Show HN: Topsoil – I turned my MacBook's notch into a dashboard for coding agent

https://topsoil-two.vercel.app/
1•davey2wavey•9m ago•0 comments

Alberta government wins secrecy award for opaque access-to-information process

https://cfe.torontomu.ca/news/blanket-smother-alberta-government-wins-secrecy-award-opaque-access...
1•lukeinator42•9m ago•0 comments

Bobbin: A diskless, API-only AppView for Tangled

https://blog.tangled.org/bobbin/
1•toomuchtodo•11m ago•0 comments

If You Can't Be Replaced You Can't Be Promoted

https://www.scarletink.com/if-you-cant-be-replaced-you-cant-be-promoted-career-growth-through-suc...
2•sharjeelsayed•12m ago•0 comments

Google Gemini's SynthID AI Watermark Detector Appears to Mix Up Results in Chat

https://leadstories.com/analysis/2026/07/google-gemini-synthid-detector-confuses-results-within-s...
1•mschenk•12m ago•0 comments

Show HN: Claude Organizer, folders and search for Claude.ai, all local

https://chromewebstore.google.com/detail/claude-organizer-folders/pnbhfiebkknicpbljchmgibnpmlgebif
1•Birodar•12m ago•0 comments

Just Let Me Write Digits

https://gendignoux.com/blog/2026/07/13/input-digits.html
1•gendx•13m ago•0 comments

Ask HN: If AI existed before CRMs, what would we have?

1•nutanc•13m ago•1 comments

Eurostar orders trains that can cope with 55C 'Saudi' Summers

https://www.ft.com/content/b9ed4857-18bc-41c8-b24e-806534a35c23
1•crowdhailer•14m ago•0 comments

Apple's new SpeechAnalyzer API, benchmarked against Whisper and its predecessor

https://get-inscribe.com/blog/apple-speech-api-benchmark.html
7•get-inscribe•14m ago•1 comments

Show HN: Spellfolio – my stock market game with news events and inside info

https://www.spellfolio.com/
2•pandaman28•15m ago•0 comments

Statistically Undetectable Backdoors in Deep Neural Networks

https://arxiv.org/abs/2607.09532
1•sbulaev•15m ago•0 comments

Altman vs. Musk

https://twitter.com/sama/status/2075982617976230043
3•sanj•15m ago•1 comments

Friendship Is an Exponential Function

https://brianschrader.com/archive/friendship-is-an-exponential-function/
1•sonicrocketman•16m ago•0 comments

Show HN: Containerized AI development with cross-compatibility

https://github.com/daitangio/take-ai-control
1•daitangio•17m ago•0 comments

Pritset: Generate PDFs using DOCX files as templates via API

1•daviatorstorm•18m 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!