frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Repeat in Excel 97

https://unsung.aresluna.org/unsung-heroes-repeat-in-excel-97/
1•Bluestein•24s ago•0 comments

Playlist Forge – turn a sentence into a researched, ordered playlist

https://platten.github.io/playlistforge/
1•xplatten•4m ago•0 comments

Static-generics: Zero cost generic statics for Rust

https://crates.io/crates/static-generics
1•linggen•4m ago•0 comments

Artifact Server: open-source Claude Artifacts alternative

https://github.com/plannotator/artifact-server
1•ramoz•5m ago•1 comments

No Database Operations Found: What Writing a Spring Boot Analyzer Taught Me

https://foojay.io/today/no-database-operations-found-what-writing-a-spring-boot-analyzer-taught-m...
1•ejboy•6m ago•0 comments

Using semantic benchmarks to build a self-improving text-to-query agent

https://conversion.ai/blog/text-to-query-agent/
1•jimmyl02•6m ago•0 comments

Automakers urge Congress to quickly pass law banning Chinese cars

https://www.reuters.com/world/automakers-urge-congress-quickly-pass-law-banning-chinese-cars-2026...
2•tartoran•7m ago•0 comments

Dwarkesh Patel: I think pausing would increase the risk of AI takeover

https://twitter.com/dwarkesh_sp/status/2095580145603977413
1•tosh•7m ago•0 comments

H.R. 4795, Protect Economic and Academic Freedom Act of 2026

https://www.cbo.gov/publication/62739
1•homeslice69•8m ago•1 comments

Why Big Tech's War on Game Servers Should Terrify Every Home Lab Enthusiast

https://unknownuniverse.uk/privacy-security/big-tech-war-on-self-hosting/
2•RobotToaster•8m ago•0 comments

GPT-6 Astra

https://openai.com/index/gpt-6-astra/
52•kibae•8m ago•18 comments

Babylonian Lamb Stew with Beets (1750–1730 BCE)

https://babylonian-collection.yale.edu/about/babylonian-cooking
1•yubblegum•9m ago•0 comments

Maybe you don't need GraphQL

https://alexandrehtrb.github.io/posts/2026/09/maybe-you-dont-need-graphql/
3•birdculture•11m ago•0 comments

Nvidia's Open Secure AI Alliance Moves to Linux Foundation

https://techstrong.ai/articles/nvidias-open-secure-ai-alliance-moves-to-linux-foundation/
1•CrankyBear•12m ago•0 comments

How should we handle the 2LDs of the .name TLD?

https://github.com/publicsuffix/list/issues/2306
3•Bluestein•12m ago•0 comments

OpenAI launches Astra, its powerful (and controversial) new model

https://techcrunch.com/2026/09/03/openai-launches-astra-its-powerful-and-controversial-new-model/
5•tosh•13m ago•0 comments

Show HN: Tests for your Claude Code setup that run on every release

https://jameskomo.github.io/config-drift-checker/
1•smartwordworld•13m ago•0 comments

OpenAI hails 'new era of AGI' with Astra release

https://www.theguardian.com/technology/2026/sep/03/openai-artificial-general-intelligence-astra-r...
2•cmrdporcupine•14m ago•0 comments

GPT-6 Astra Benchmarks Image

https://cdn.thenewstack.io/media/2026/09/358eb84a-screenshot-2026-09-03-at-10.51.35-am.png
7•Leary•14m ago•0 comments

Eat cheap Uber eats every day

https://eatbogo.com/
1•metaversling•15m ago•0 comments

Birdcourses.com

https://birdcourses.com/
2•debo_•16m ago•0 comments

Qwen 3.8 27B available on Cerebras at 1500 tok/SEC

https://inference-docs.cerebras.ai/models/overview
59•altertable•17m ago•14 comments

Xiaomi Auto Enters European Market in 2027

https://www.xiaomiauto.com/global/newsroom/36
1•sparkling•17m ago•0 comments

Bernie Ban Artificial Superintelligence Act

https://twitter.com/AndrewCurran_/status/2095541502827233325
3•tekacs•17m ago•1 comments

PICO-8 is a fantasy console

https://www.lexaloffle.com/pico-8.php
2•Bluestein•19m ago•0 comments

Why the rise in government debt is freaking out the bond market

https://theconversation.com/why-the-rise-in-government-debt-is-freaking-out-the-bond-market-290240
1•DemiGuru•19m ago•0 comments

Per-request authorization for Temporal Nexus

https://tenuo.ai/blog/temporal-nexus-authorization.html
1•niyikiza•19m ago•0 comments

Hundreds gather to urge Scottish government to pause datacentre boom

https://www.theguardian.com/uk-news/2026/sep/03/hundreds-holyrood-pause-scotland-datacentre-boom-ai
2•edward•19m ago•0 comments

GoPro acquired, getting into 'defense, government, robotics and aerospace'

https://www.theverge.com/news/987494/gopro-starman-holding-merger-aquisition
3•tempestn•20m ago•0 comments

OpenAI launches GPT-6 Astra and says welcome to the "AGI era"

https://thenewstack.io/openai-gpt6-astra-benchmarks/
5•alvis•21m ago•1 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!