frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sync – Quality Control and Project Management System for AI Agents

https://sync.buzz
1•nikolai_evseev•1m ago•0 comments

Polis – the #1 tool for AI agent coordination

https://polis-protocol.vercel.app/#
1•lucius_gc•4m ago•0 comments

Why You Need to Become a Neuro-Punk Right Now

https://medium.com/@artem-x/why-you-need-to-become-a-neuro-punk-right-now-f266223ac440
1•theorchid•8m ago•0 comments

US and Iran reach cease fire agreement

https://www.nytimes.com/live/2026/06/14/world/iran-war-trump-us
2•koolba•13m ago•0 comments

Molecular Diversity as a Biosignature

https://www.nature.com/articles/s41550-026-02864-z
2•wslh•22m ago•0 comments

Kevin Warsh Wants the Fed to Stop Explaining Everything

https://www.wsj.com/economy/central-banking/fed-warsh-chair-communication-d2f2d226
3•Cider9986•23m ago•0 comments

BEAVER: Enterprise benchmark for LLM Text-to-SQL from private data warehouses

https://beaverbench.github.io/
2•teleforce•27m ago•0 comments

Show HN: Astro Sidey – A simple, minimalistic personal blog theme

https://github.com/odhyp/astro-sidey
2•odhy•29m ago•0 comments

Your Database Is the Bottleneck. Not Your Code

https://howtocenterdiv.com/beyond-the-div/your-database-is-the-bottleneck-not-your-code
2•mooreds•32m ago•0 comments

On, Good Advice Delivered Poorly

https://makc.co/essays/good-advice-delivered-poorly/
2•makc•33m ago•0 comments

Under the River

https://shopify.engineering/under-the-river
2•mooreds•34m ago•0 comments

The More Confident in AI Security, the More Likely Breached, Study Finds

https://www.itsecurityguru.org/2026/06/11/the-more-confident-organizations-are-in-their-ai-securi...
4•mooreds•36m ago•0 comments

The hallucinogenic mushroom that contains no known psychedelic

https://psychedelics.co.uk/news/a-mushroom-genus-that-gets-people-high-but-not-the
17•thunderbong•40m ago•1 comments

Learn to Think in Systems, It'll Put You Ahead of 99% of People [video]

https://www.youtube.com/watch?v=mjTgkm-h__M
3•ohjeez•41m ago•0 comments

Plots, love letters and remedies: The medieval secrets being revealed by AI

https://www.bbc.com/future/article/20260527-plots-love-letters-and-diplomacy-the-medieval-secrets...
3•leecoursey•49m ago•0 comments

git-stk: Git-native stacked branch workflow helper

https://github.com/lararosekelley/git-stk
3•sayonara_lara•53m ago•3 comments

The rich aren't your role models

https://theslowburningfuse.wordpress.com/2026/06/14/the-rich-arent-your-role-models-theyre-your-o...
98•Refreeze5224•53m ago•35 comments

An Introduction to Old Javanese [pdf]

https://www.aa.tufs.ac.jp/wp-content/uploads/2024/02/2015oldjavanese1.pdf
2•teleforce•57m ago•0 comments

People Like This? [video]

https://www.youtube.com/watch?v=gf0-L5om_HM
3•ThatDumbGirl•1h ago•0 comments

Gemini 3.5 Flash Looks Good for How Fast It Is

https://thezvi.wordpress.com/2026/05/22/gemini-3-5-flash-looks-good-for-how-fast-it-is/
3•gmays•1h ago•2 comments

Polypost: Draft once, format for every platform. Made by Mark Russinovich

https://markrussinovich.github.io/Polypost/
2•annjose•1h ago•0 comments

U.S. and Iran agree on peace deal to end the war, Trump and Pakistan say

https://www.cnbc.com/2026/06/14/us-iran-war-peace-deal.html
7•shinryudbz•1h ago•0 comments

Sell Digital Goods Anywhere

https://zwely.com
2•fenderdude•1h ago•0 comments

Swiss voters reject proposal to cap population at 10M

https://www.theguardian.com/world/2026/jun/14/switzerland-referendum-population-cap-svp
2•pseudolus•1h ago•0 comments

Grist

https://www.getgrist.com/
2•jawns•1h ago•0 comments

Show HN: Isitslop.xyz, a free AI-writing detector built on latest research

https://isitslop.xyz
3•gabceboli•1h ago•1 comments

Vinyl Cache and Varnish Cache

https://vinyl-cache.org/organization/on_vinyl_cache_and_varnish_cache.html#org-vinyl-varnish
2•embedding-shape•1h ago•0 comments

Amdahl's Law in Software Engineering

https://lawsofsoftwareengineering.com/laws/amdahls-law/
2•_josh_meyer_•1h ago•3 comments

Trump announces a deal with Iran has been reached [video]

https://www.youtube.com/watch?v=-FWZLUs-hSQ
3•Bender•1h ago•0 comments

OpenAI Partner Network

https://openai.com/index/introducing-openai-partner-network/
3•ilreb•1h 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!