frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Reclaiming a Decade of Podcast Listening History

https://www.uncommonapps.nyc/p/reclaiming-a-decade-of-podcast-listening
1•dabluck•54s ago•0 comments

Show HN: Plarza – A social network for personal websites

https://plarza.com/
1•sidny•2m ago•0 comments

Migrating off Webflow and the worst way to use Claude Code

https://www.sisyphus.bar/blog/migrating-off-webflow
1•itunpredictable•2m ago•0 comments

Show HN: Real-Time Microphone Quality Scoring Using Web Audio API

https://howdousound.com/
1•tdhopper•3m ago•0 comments

Ask HN: As LLMs progress, how do you stay sharp and productive?

1•spiresofagartha•3m ago•0 comments

Confused Deputy: Google IdP Account Takeover via Device Code Flow Hijacking

https://weirdmachine64.github.io/research/google-oauth-device-code-hijacking.html
1•zerodaysbroker•3m ago•0 comments

DNA sequence alignment and Delannoy numbers

https://www.johndcook.com/blog/2026/06/30/dna-sequence-alignment-and-kings/
1•ibobev•3m ago•0 comments

Show HN: Marigold – Get more done with your agent

https://marigold.page
1•fachonrenpure•3m ago•0 comments

Does additional data always reduce posterior variance?

https://www.johndcook.com/blog/2026/07/03/does-additional-data-always-reduce-posterior-variance/
1•ibobev•4m ago•0 comments

Using Local Coding Agents

https://magazine.sebastianraschka.com/p/using-local-coding-agents
1•ibobev•4m ago•0 comments

Warden – a drop-in security proxy for MCP (audit, policy, injection defense)

https://github.com/AlwaysReadyAllies/warden
1•croftadams11•4m ago•0 comments

Redditor makes a cartridge system for their Steam library out of SSDs

https://old.reddit.com/r/pcmasterrace/comments/1ux13ui/steam_game_cartridges/
1•HelloUsername•5m ago•0 comments

I Built an LLM from Scratch [video]

https://www.youtube.com/watch?v=YmLp8qe87A0
1•itsjzt•6m ago•0 comments

Show HN: I've built a words game based on binary search

https://hilogame.cc/
1•ludovicianul•6m ago•0 comments

Google DeepMind and Isomorphic Labs approach to bioresilience [pdf]

https://storage.googleapis.com/deepmind-media/DeepMind.com/Blog/our-approach-to-bioresilience/iso...
1•ilreb•7m ago•0 comments

An Infinitely Large Napkin [pdf]

https://venhance.github.io/napkin/Napkin.pdf
1•Eridanus2•7m ago•0 comments

StepFun Unveils StepX Neo, the "First Agentic AI Phone"

https://www.etvbharat.com/en/technology/stepfun-unveils-stepx-neo-calling-it-worlds-first-agentic...
1•AlanAzarkin•8m ago•0 comments

Google required to open up to AI, search engine rivals under EU-mandated changes

https://www.reuters.com/world/google-required-open-up-ai-search-engine-rivals-under-eu-mandated-c...
1•atwrk•9m ago•0 comments

Google Ordered to Give A.I. Rivals More Access on Android Smartphones

https://www.nytimes.com/2026/07/16/technology/google-ordered-to-give-ai-rivals-more-access-on-and...
1•donohoe•9m ago•0 comments

Generative AI Is an Engineering Disaster

https://www.theatlantic.com/technology/2026/07/generative-ai-engineering-disaster/687901/
2•latexr•10m ago•1 comments

Brain Economy Will Come Next After the Internet Economy

https://paragraph.com/@lisaakselrod/my-thesis-about-the-future-tl%3Bdr-this-is-the-end
1•sthwnd•11m ago•0 comments

FBI Considers Using AI Tech to Review Signatures on Seized Mail-In Ballots

https://www.propublica.org/article/trump-2020-election-georgia-fulton-artificial-intelligence-fbi
2•hn_acker•12m ago•1 comments

PostgreSQL 19 Beta 2 Released

https://www.postgresql.org/about/news/postgresql-19-beta-2-released-3350/
2•pella•14m ago•1 comments

Tesseract Core: Universal components for differentiable scientific computing

https://github.com/pasteurlabs/tesseract-core
1•dionhaefner•14m ago•0 comments

Why the hardest part of proactive agents isn't finding problems

https://www.serval.com/serval-news/raising-the-automation-ceiling
1•emot•14m ago•0 comments

Claude can now securely use your Passwords with 1Password

https://www.wsj.com/tech/ai/1password-for-claude-ai-agents-password-manager-111a7a8a
1•flxfxp•15m ago•0 comments

Microsoft's July 2026 Patch Tuesday fixes 622 CVEs, 2 exploited zero-days

https://orca.security/resources/blog/microsoft-july-2026-patch-tuesday-sharepoint-zero-day/
1•nyku•16m ago•0 comments

The Long Detour: Three Part Book Series on Pre-GPU and Low-Compute ML

https://long-detour.com/
1•lymn•16m ago•0 comments

Cointer – Get notified when a BTC or ETH wallet gets a deposit (beta)

https://cointer.app/
1•bugattiguy527•16m ago•2 comments

Moist Towelette Museum

https://moisttowelettemuseum.com/
1•bookofjoe•17m 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!