frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What if AI agents shared solutions across users?

1•markmatsushima•1m ago•0 comments

I Didn't Realize How Addicted I Was to My Phone–Until I Went to Prison

https://www.wsj.com/lifestyle/phone-screen-time-prison-pg-sittenfeld-8c3b186b
1•fortran77•9m ago•1 comments

Alwide – An Open-Source Lightweight TUI IDE in C with Mouse, LSP and Tree-sitter

https://github.com/arnauda-gh/Alwide
1•peter_d_sherman•12m ago•0 comments

You won't believe the stupid shit the Pentagon puts in diplomats' system prompts

https://www.youtube.com/watch?v=5HBTCT4FmAc
3•logicallee•14m ago•1 comments

Virginia Orders Data Centers to Pay for Dedicated New Electric Infrastructure

https://www.realtor.com/news/real-estate-news/virginia-data-center-electric-infrastructure-spanbe...
2•mapping365•15m ago•0 comments

Democratic lawmakers propose 3-year moratorium on new data centers in Oregon

https://oregoncapitalchronicle.com/2026/08/04/democratic-lawmakers-propose-three-year-moratorium-...
3•ChrisArchitect•15m ago•1 comments

A Universal Theory of Brain Function [video]

https://www.youtube.com/watch?v=iPj9D9LgK2A
2•binyu•17m ago•0 comments

Multi-GPU Kernels, Intelligence per Watt, Heterogeneous Inference, and More [video]

https://www.youtube.com/watch?v=n8dz2FX0_uY
1•gmays•18m ago•0 comments

RF Filter Design for ESP32-S3, Part 1: The Ideal Filter and First Layout

https://dispatch.altivlabs.com/esp32-s3-rf-filter-design-part-1/
1•yourstruly-br•20m ago•0 comments

LLMs won't break symmetric crypto

https://www.bfswa.blog/p/llms-wont-break-symmetric-crypto
3•rowbin•26m ago•0 comments

I found my first users from conversations happening online

https://agenmatic.ai/
3•Nancylily•28m ago•0 comments

I Built a Blog and Forgot to Write

https://benjcal.space/blog/i-built-a-blog-and-forgot-to-write/
5•roryokane•31m ago•1 comments

The Most Arrogant Science Book Ever Written [video]

https://www.youtube.com/watch?v=fO9iRDPXvT4
4•yomismoaqui•32m ago•0 comments

Show HN: Clean up ugly articles for nicer reading experience

https://leidnedya.github.io/markweb/
3•otherayden•32m ago•2 comments

Sony scales up its PlayStation advertising ambitions

https://digiday.com/media-buying/sony-is-scaling-up-its-playstation-advertising-ambitions/
2•OptionOfT•34m ago•0 comments

Show HN: Hacker News with reduced priority for AI driven content

https://hn-without-ai.vercel.app/
1•otherayden•34m ago•0 comments

Elon Musk's attempt at an AI Wikipedia hasn't been updated in months

https://www.theverge.com/ai-artificial-intelligence/976004/elon-musk-grokipedia-ai-wikipedia-not-...
7•ent101•34m ago•0 comments

Show HN: Bananas aren't supposed to be tingly?

1•danhon•35m ago•0 comments

The Nature of the Club

https://demonstrandom.com/essays/posts/theory_of_the_club/
1•demonstrandom•35m ago•1 comments

The Next Token – LLMs, from the Beginning

https://ceres1.space/posts/llms-from-the-beginning/the-next-token/
1•coder543•37m ago•1 comments

Truth Social's Early-Access Scheme Is Indefensible

https://www.nationalreview.com/2026/08/truth-social-early-access-scheme-is-indefensible/
3•petethomas•39m ago•0 comments

Ukraine releases footage of forest covered in fiber-optic drone cables [video]

https://www.youtube.com/watch?v=FaEAxZ7Sr0I
1•uzyn•42m ago•0 comments

Are Consumers Using Agents?

https://twitter.com/joshm/status/2084751187002458369
1•anr0•42m ago•1 comments

Prompt Chains, Tool Calling, and MCP: How AI Agents Do Things

https://i.brandanthonymcdonald.com/mcp-for-beginners
1•aweful•48m ago•0 comments

You only have 3B heartbeats

https://twitter.com/anishthite/status/2085117211208015990
1•aquajet•48m ago•0 comments

Bessent Declares Widening Gap Between Rich and Poor 'Dead'

https://www.nytimes.com/2026/08/05/business/bessent-wage-gap.html
2•mapping365•51m ago•0 comments

Trump Has Called Warsh Repeatedly Since He Became Fed Chair

https://www.wsj.com/politics/policy/trump-has-called-warsh-repeatedly-since-he-became-fed-chair-3...
3•mapping365•52m ago•0 comments

What Victorian Bootmakers Can Teach Us About the Future of Work

https://newsletter.platypuseconomics.com/p/what-victorian-bootmakers-can-teach
2•jhealy•53m ago•0 comments

SKKU Researchers Develop Catalyst to Convert CO2 into Ethanol Using Electricity

https://www.asiaresearchnews.com/content/skku-researchers-develop-new-catalyst-convert-carbon-dio...
1•rguiscard•55m ago•0 comments

Pull contents from any page via API and avoid Same-origin policy problems

https://allorigins.win/
1•chenster•57m 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!