frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AgentBridge – Let one AI think while another AI writes the code

https://github.com/IndexFlowing/AgentBridge
1•mandarinclips•9m ago•1 comments

Nepal's flood damage may cost up to a tenth of economy to rebuild

https://www.reuters.com/world/china/nepal-needs-least-4-billion-rebuilding-finance-minister-says-...
1•geox•10m ago•0 comments

Pentagon's blacklisting of Anthropic was unlawful, US judge rules

https://www.theguardian.com/technology/2026/aug/28/us-court-rules-pentagon-anthropic-ban-illegal-...
1•vinni2•10m ago•0 comments

Walkable Cities

https://nartier.itch.io/walkable-cities
2•tehsauce•15m ago•0 comments

Some GitHub bounty repos are honeypots that farm free work from AI agents

https://oactodev.github.io/ninety-quid/report/
1•ninetyquid•15m ago•0 comments

Five ways 3D printing is improving lab work

https://www.nature.com/articles/d41586-026-02535-z
1•zeristor•17m ago•0 comments

Books Turned into Podcast Series

https://bookdialogues.com/home
1•jasmeet0817•18m ago•1 comments

Researcher Tricked Claude, Codex and Hermes into Running Malware

https://startupfortune.com/researcher-alon-hertz-tricked-claude-codex-and-hermes-into-running-mal...
11•CuriousLLM•19m ago•0 comments

SynapticChain: Single-wallet concurrency record (5,307 TPS from 1 key in Rust)

https://explorer.synapticchain.xyz
1•abdulshabazz•23m ago•0 comments

I built a financial visibility layer for multi-model AI applications

https://credlier.com/
1•dcriglerd•24m ago•0 comments

Show HN: Kith – AI clinical notes for therapists from ambient session audio

https://www.kith.space
1•kithmedai•28m ago•0 comments

Is this the DeepSeek moment for Local Models?

https://vijaykodam.substack.com/p/is-this-the-deepseek-moment-for-local
2•vijaykodam•32m ago•0 comments

What GLM-5.3 Flash running on Chinese hardware means

https://martinalderson.com/posts/glm-5-3-flash-chinese-hardware/
1•ymolodtsov•33m ago•0 comments

Lean Explained with TypeScript

https://gruhn.me/blog/2026-08-29/
1•ngruhn•33m ago•0 comments

Changes in MySQL 26.7.0

https://dev.mysql.com/doc/relnotes/mysql/26.7/en/news-26-7-0.html
1•ksec•36m ago•0 comments

Pennpaper – visual, step-by-step explanations for math

https://www.pennpaper.app/
1•brnmwas•37m ago•0 comments

Show HN: Bora Praia – weather and tide forecasts turned into a time to leave

https://borapraia.com/
1•63labs•38m ago•0 comments

Grassmann's Law (Linguistics)

https://en.wikipedia.org/wiki/Grassmann%27s_law
1•ogogmad•39m ago•0 comments

ICANN de-accredits "bulletproof" domain registrar Trustname

https://domainnamewire.com/2026/08/28/icann-de-accredits-bulletproof-domain-registrar/
4•KomoD•41m ago•0 comments

Show HN: A free AI news briefing agent that runs on GitHub Actions, no server

https://github.com/tballochi/daily-briefing
1•tballochi•41m ago•1 comments

Terence Tao, 6 essential concepts of math [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
1•pykello•45m ago•0 comments

Vibecoders and Vibehackers

https://orchidfiles.com/vibecoders-and-vibehackers/
1•theorchid•47m ago•0 comments

X and Meta's past data scraping lawsuit losses and how it would relate to nitter

https://www.reuters.com/legal/musks-x-corp-loses-lawsuit-against-israeli-data-scraping-company-20...
3•orange999•49m ago•1 comments

Technical Writing Resources

https://github.com/dharmelolar/technical-writing-resources
1•taubek•49m ago•0 comments

Show HN: Itsuki – open-source memory engine for AI agents (API and MCP)

https://itsuki.app/
2•12ziyad•53m ago•2 comments

SQL User Lifecycle Management in CockroachDB

https://www.cockroachlabs.com/blog/sql-user-lifecycle-management-automation/
1•s20n•55m ago•0 comments

2,147,483,647 in nanos. Post Q-Day Cryptographic Security

https://twitter.com/CTibedo/status/2088679500020174883
1•GeometryKernel•55m ago•0 comments

Alpha School's AI teaching model is expanding. Does it work?

https://www.scientificamerican.com/article/alpha-schools-ai-teaching-model-is-expanding-does-it-w...
2•beardyw•55m ago•1 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
1•stared•57m ago•0 comments

SK Hynix to begin HBM4E production in Indiana in 2029, memory shortage to 2030

https://www.reuters.com/world/asia-pacific/sk-hynix-holds-groundbreaking-ceremony-4-billion-india...
2•giuliomagnifico•59m 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!