frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Saga: Source Attribution of Generative AI Videos (identifies the model used)

https://arxiv.org/abs/2511.12834
1•giuliomagnifico•1m ago•0 comments

What's horned, fluffy, and ethically dubious? Yak clones

https://www.cnn.com/2026/07/25/china/tibet-yak-clones-conservation-intl-hnk-dst
1•breve•5m ago•0 comments

The Rise of Anti-Flock Influencers Who Make Things Up for Clout

https://www.404media.co/the-rise-of-anti-flock-influencers-who-make-things-up-for-clout/
1•Cider9986•7m ago•0 comments

Epistemic Engine – verify AI-generated code and forecast what will break

https://github.com/aswinsasi/epistemic_engine
2•aswinsasi123•7m ago•0 comments

cpp-tui – A lightweight, single-header C++ TUI (Text User Interface) library

https://github.com/jonoton/cpp-tui
2•gjvc•7m ago•0 comments

Why So Many Sales Happen on WhatsApp

https://lytonkiyayikalete.substack.com/p/why-so-many-sales-happen-on-whatsapp
1•Lyton256•8m ago•0 comments

Landmark victory as plans for first octopus farm withdrawn

https://www.eurogroupforanimals.org/news/landmark-victory-plans-worlds-first-octopus-farm-withdrawn
1•thunderbong•9m ago•0 comments

Russian operatives are targeting emails US nuclear scientists and contractors

https://www.cnn.com/2026/07/23/politics/russian-hacking-nuclear-scientists
1•Bender•12m ago•0 comments

Austerity Breeds Financial Protectionism

https://theloop.ecpr.eu/who-the-welfare-state-protects-shapes-a-countrys-financial-openness/
2•kome•12m ago•0 comments

Being Linux Torvalds

https://antirez.com/news/171
1•surprisetalk•13m ago•0 comments

Kalshi demands Netflix down trailer misleading prediction market documentary

https://www.cnn.com/2026/07/24/politics/kalshi-netflix-prediction-market-documentary
3•Bender•13m ago•0 comments

Fusion Is Ready. Is Trump's Washington?

https://www.politico.com/news/magazine/2026/07/24/nuclear-fusion-commonwealth-washington-massachu...
1•0in•14m ago•0 comments

Show HN: Give your AI ears – live meeting transcripts over MCP on macOS

https://voxai.ethanflow.com/
1•sproutlab•15m ago•0 comments

Blade Runner 2099 exclusive first look at the replicant uprising

https://ew.com/blade-runner-2099-exclusive-first-look-replicant-uprising-12020855
2•Michelangelo11•22m ago•0 comments

Brooklyn Directory for the year ending May 1883

https://archive.org/details/1883BPL
2•gregsadetsky•24m ago•0 comments

How to Visualize Capitalism

https://www.asomo.co/p/how-to-visualize-capitalism
1•Gigamouse•26m ago•0 comments

Show HN: Curated Claude Code – a small agent harness with an intake gate

https://github.com/Sanexxxx777/curated-claude-code
1•Aleksandr_NFA•28m ago•0 comments

Scrabble tile values vs. actual letter frequency across 172,835 words

https://lkforge.com/blog/enable-lexicon-study/
1•lucianBKR•30m ago•0 comments

Agentreg – DNS for AI agents (self-hosted, single Go binary)

https://github.com/mkk2026/agentreg
1•cbt2026•34m ago•0 comments

I don't like the "Human-made" badging trend

https://www.acdw.net/human-made/
1•rpgbr•35m ago•1 comments

Algorithm-Designed Photonic Circuits Beyond Human Intuition

https://seas.harvard.edu/news/algorithm-designed-photonic-circuits-beyond-human-intuition-0
1•binyu•36m ago•0 comments

The Fedora 45 Sausage Factory

https://supakeen.com/weblog/the-fedora-45-sausage-factory/
2•6581•38m ago•0 comments

India's Education Minister resigns amid student protests

https://www.thehindu.com/news/national/dharmendra-pradhan-quit-resign-as-union-education-minister...
5•shmde•39m ago•1 comments

The OpenAI Models That Hacked Hugging Face Were 'Active on the Internet' for Da

https://www.wired.com/story/security-news-this-week-the-openai-models-that-hacked-hugging-face-we...
4•joozio•41m ago•0 comments

Elementary Worldly Wisdom as It Relates to Investment Management and Business (1994)

https://fs.blog/great-talks/a-lesson-on-worldly-wisdom/
1•tosh•43m ago•0 comments

Show HN: Impressive turn-based RPG prototype built with Opus 5 in 20 min

https://aetherfall-ten.vercel.app/
1•sherujgr•44m ago•1 comments

Ask HN: Do types make a language more expressive, or less?

1•greenlimetea•44m ago•1 comments

CodeFloe – A code hosting platform for the modern age

https://codefloe.com/
1•mjyut•47m ago•1 comments

Show HN: Yaiko – A fullstack web framework for Rust and jQuery

1•the_plug•49m ago•0 comments

Spec driven development with my 8-year-old

https://edmundlam.github.io/posts/spec-driven-dev-with-my-kids/
2•edlam•50m 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!