frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Z.ai confirms Ox Alpha is a new GLM-series model and will release its weights

https://www.bloomberg.com/news/articles/2026-08-26/china-s-z-ai-made-ox-alpha-stealth-model-that-...
2•garo-pro•1m ago•1 comments

Nobody Wants Artisanal Code Anymore

https://gordonbeeming.com/blog/2026-04-29/nobody-wants-artisanal-code-anymore
1•Bluestein•2m ago•0 comments

Trump Sends Nuclear Agreement with Saudi Arabia to Congress

https://www.wsj.com/world/middle-east/trump-sends-nuclear-agreement-with-saudi-arabia-to-congress...
1•JumpCrisscross•3m ago•0 comments

Years Late, Billions over Budget: CA's High-Speed Rail Hasn't Laid a Track

https://www.wsj.com/us-news/years-late-billions-over-budget-californias-high-speed-rail-hasnt-lai...
1•JumpCrisscross•4m ago•0 comments

Show HN: Firmament is the Limit – a one-button iPhone flight game

https://apps.apple.com/us/app/firmament-is-the-limit/id6755933878
1•BanzaiTokyo•6m ago•1 comments

EBRAINS provides open science data, tools and services

https://ebrains.eu/data-tools-services
1•Bluestein•6m ago•0 comments

Dataset: AI agent security failures, 1000 incidents classified

https://huggingface.co/datasets/gemmozero/ai-agent-security-incidents
2•LegionAPI•8m ago•0 comments

Ask HN: What's your biggest regret in life?

1•chistev•9m ago•1 comments

AutoRouter – Enterprise AI gateway for every model

https://autorouter.top/
1•autorouter1•13m ago•0 comments

Arduino Ventuno Q

https://www.arduino.cc/product-ventuno-q/
1•mchan•13m ago•0 comments

Show HN: StoreMock, a free, in-browser tool to create app store screenshots

https://www.storemock.com
1•sxnb•15m ago•0 comments

Junie [JetBrains] Can Now Run on Your Mac

https://blog.jetbrains.com/junie/2026/08/junie-local-launch/
1•zkvl•15m ago•1 comments

Shingles vaccine linked to lower risk of heart attack and stroke, study finds

https://www.theguardian.com/science/2026/aug/26/shingles-vaccine-lower-risk-heart-attack-stroke-s...
1•pseudolus•16m ago•0 comments

China's Z.AI made Ox Alpha stealth model that rivals DeepSeek

https://www.theedgesingapore.com/news/artificial-intelligence/chinas-zai-made-ox-alpha-stealth-mo...
3•doppp•17m ago•1 comments

Is DeepSeek-V4-Flash Overtaking American AI Models?

https://mrkt30.com/deepseek-v4-flash-overtaking-american-ai-models/
1•newsaiyc•19m ago•0 comments

Nvidia's $200B 'balance sheet-as-a-service'

https://www.ft.com/content/9a6947bf-9d4e-4489-80b9-2178ea657a67
2•JumpCrisscross•20m ago•0 comments

Fourteen months micromanaging AI coding agents

https://allende.nz/notes/fourteen-months-micromanaging-ai-coding-agents/
1•robertoallende•23m ago•0 comments

Codex and ChatGPT browser now supporting WebMCP

https://twitter.com/OpenAIDevs/status/2092344959248761263
1•Eldodi•23m ago•0 comments

Ask HN: Opus 5 is unusable for writing, even internal use. Alternatives/fix?

2•m3h•25m ago•0 comments

Leibler - Self Evolving Production Agents

https://www.leibler.dev/
3•kkkamur•28m ago•3 comments

Social media use on the rise among Australian under-16s after ban: data

https://www.france24.com/en/live-news/20260826-social-media-use-on-the-rise-among-australian-unde...
6•giuliomagnifico•30m ago•0 comments

XCancel and Nitter are receiving C&D letters from XCorp

7•mobilio•31m ago•0 comments

So basically to earn 50k in Italy you gotta be Andrej Karpathy

https://twitter.com/tropianhs/status/2092171706773451120
2•napolux•31m ago•0 comments

SW Factory: Porting a 5,700-line C voxel game to Rust

https://www.incredibuild.com/blog/the-fun-part-was-free-proving-it-worked-cost-1-96
2•zozo123-IB-IL2•32m ago•0 comments

Understanding Go's Sync.Map from API to Hash Trie

https://victoriametrics.com/blog/go-sync-map-hash-trie/index.html
2•valyala•34m ago•0 comments

Bolt migrated 10M monthly Looker queries from Presto to Databricks

https://bolt.eu/en/blog/migrating-looker-to-databricks/
2•matthieu_bl•34m ago•0 comments

AI-powered email agent that syncs your emails via IMAP

https://github.com/peterretief/emailai/tree/main
2•peter_retief•37m ago•1 comments

The Death of San Francisco's Market Street

https://www.noahpinion.blog/p/the-death-of-market-street
2•A_D_E_P_T•39m ago•0 comments

Braam – An operating system that runs in a browser tab

https://github.com/braamix/core
2•begoon•40m ago•0 comments

Why Iceberg Won

https://nexus0ne.substack.com/p/why-iceberg-won
2•herodoturtle•44m 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!