frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Last Course: a $9 online course that is one .txt file

https://www.yourlastcourse.store
1•flxblck•1m ago•0 comments

Zephyr RTOS Ported to WebAssembly

https://github.com/beriberikix/zephyr-wasm-soc
1•adunk•1m ago•0 comments

Scam awareness training seemed futile. ChatGPT's data is changing my mind

https://charlemagnelabs.substack.com/p/how-much-daylight-is-there-between
1•therealjpg•2m ago•0 comments

Taking Apart Infatica

https://vasie.dev/blog/inside-infatica/
1•vasie•2m ago•0 comments

Why the 2026 Battle for the House Is More Uncertain Than It Looks

https://medium.com/freedomofthought/why-the-2026-battle-for-the-house-is-more-uncertain-than-it-l...
1•raynchad•3m ago•0 comments

Panic Won't Fix the Looming A.I. Threat. Politics Will

https://www.nytimes.com/2026/09/19/opinion/ai-hugging-face-big-tech-danger.html
1•jay_kyburz•3m ago•1 comments

The Life of Death and the Enshittificator [video]

https://www.youtube.com/watch?v=d6SPV4GZp-U
1•tcmb•3m ago•0 comments

Metadata requests no longer tracked in PyPI download counts

https://blog.pypi.org/posts/2026-08-31-download-counts/
1•rbanffy•4m ago•0 comments

Polars – Migration strategies for going from Pandas to Polars

https://pola.rs/posts/pandas-to-polars-migration-strategies/
1•rbanffy•4m ago•0 comments

How Big Tech Runs Tech Projects and the Curious Absence of Scrum (2021)

https://newsletter.pragmaticengineer.com/p/project-management-in-tech
1•taubek•5m ago•0 comments

Base Browser: A hard fork of Firefox with no AI slop

https://codeberg.org/basebrowserproject
2•Muhammad523•7m ago•0 comments

Why TypeScript picked Go over Rust for its new compiler

https://www.thetrueengineer.com/p/typescript-team-chose-go-over-rust
1•adletbalzhanov•13m ago•0 comments

OpenAI's Sam Altman to Brief UN Security Council Next Week

https://www.reuters.com/business/openais-sam-altman-to-brief-un-security-council-next-week-during...
3•layer8•14m ago•0 comments

Microsoft Systems Journal Interviews Gordon Letwin (1987)

https://computeradsfromthepast.substack.com/p/microsoft-systems-journal-interviews
1•rbanffy•16m ago•0 comments

EtherCON

https://en.wikipedia.org/wiki/EtherCON
2•gregsadetsky•18m ago•0 comments

We got a cybersecurity expert to hack this BYD. It was too easy

https://www.abc.net.au/news/2026-09-21/byd-hacked-by-cybersecurity-expert-vehicle-sabotage-survei...
5•dbaupp•19m ago•0 comments

A Good Reason to Stop Me from Pasting Passwords

https://ciamweekly.substack.com/p/a-good-reason-to-stop-me-from-pasting
1•mooreds•19m ago•0 comments

The Haters Guide to Broadcom

https://www.wheresyoured.at/premium-the-haters-guide-to-broadcom/
2•gballan•21m ago•0 comments

Steam Frame, a Linux machine, doesn't support Linux?

https://gbl08ma.com/posts/steam-frame-a-linux-machine-doesnt-support-linux/
2•garaetjjte•21m ago•0 comments

ATProto in Practice #1: Identity

https://mackuba.eu/2026/07/20/atproto-in-practice-identity/
1•mooreds•22m ago•0 comments

Show HN: A parry focused game built in ThreeJS (WIP)

https://ashina-chi.vercel.app/
1•sherujgr•22m ago•0 comments

Oracle and OpenAI Are Trampling Native Treaty Rights to Build Data Centers

https://truthout.org/articles/big-tech-is-trampling-native-treaty-rights-to-build-data-centers/
1•paimapi•23m ago•0 comments

Mad Max 'Humungus Machine' Is Up for Auction on Bring a Trailer

https://www.caranddriver.com/news/a73781356/ford-f150-based-mad-max-humungus-machine-auction/
1•RickJWagner•24m ago•0 comments

>be me >discover effective altruism

https://twitter.com/banteg/status/2100619607648121199
1•yurivish•34m ago•0 comments

The New Church of Finance (2012)

https://www.deseret.com/2012/12/9/20445386/clayton-m-christensen-the-new-church-of-finance-deeply...
1•simonebrunozzi•34m ago•0 comments

Show HN: Openmsg, agent-to-agent talk while they run, Claude<>Codex<>OpenCode

https://github.com/marciob/openmsg
2•marciob•36m ago•2 comments

One wallet, 27 systems: can the EU build an untraceable Digital ID?

https://www.euronews.com/my-europe/2026/09/17/one-wallet-27-systems-can-the-eu-build-an-untraceab...
4•devonnull•37m ago•0 comments

Jev identifies as a Qwen model (and no other)

https://ouijev.com/?q=Are+you+a+qwen+model
1•Rom2•37m ago•0 comments

Autolith: The Common Lisp agent that rewrites itself and rocks

https://autolith.rocks
1•sroerick•38m ago•0 comments

Lawsuit says Anthropic, OpenAI and Google made illegal agreement on AI slowdown

https://www.cnn.com/2026/09/19/business/ai-slowdown-lawsuit-antitrust
5•mattm•38m 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!