frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Whose Intelliegence is more Artificial?

https://desnitch.substack.com/p/whose-intelligence-is-more-artificial
1•desnitch•4m ago•0 comments

M2: Episode 1 (Or, Asahi Linux on M3)

https://asahilinux.org/2026/09/m2-episode-1/
1•notenlish•5m ago•0 comments

Nvidia is the central bank of AI

https://www.economist.com/interactive/briefing/2026/09/03/nvidia-is-the-central-bank-of-ai
1•__natty__•6m ago•0 comments

The Elephant in the Brownfield

https://www.subbu.org/essays/2026/the-elephant-in-the-brownfield/
1•kiyanwang•6m ago•0 comments

Rogue iOS developer creates app that simulates messages sent by carrier pigeon

https://www.tomshardware.com/software/applications/rogue-ios-developer-creates-app-that-simulates...
1•vismit2000•8m ago•0 comments

The Harness, the Horse, or the Hay – By Brett Queener

https://queener.substack.com/p/the-harness-the-horse-or-the-hay
1•kiyanwang•8m ago•0 comments

Find Your Next Book by Mood

https://bookdialogues.com/findbook
1•jasmeet0817•8m ago•1 comments

Onionspector – now let's see what The Onion knows about you

https://0ut3r.space/2026/09/06/onionspector/
1•h0ek•12m ago•0 comments

Opus (Audio Format)

https://en.wikipedia.org/wiki/Opus_(audio_format)
1•tosh•12m ago•0 comments

SeekMoon: From IDE to ADE

https://www.moonbitlang.com/blog/seekmoon-from-ide-to-ade
1•syumei•13m ago•0 comments

Podcast: We Spoke to an Amazon Worker Destroying Books for AI

https://www.404media.co/email/ed687963-910c-488c-95d5-b06f911b214e/
2•r_singh•14m ago•0 comments

Volcanic ash cloud halts flights at five Indonesian airports

https://www.theguardian.com/world/2026/sep/06/volcanic-ash-cloud-halts-flights-at-indonesias-main...
1•tosh•15m ago•0 comments

YouSpeed – Live speed-limit assistance

https://peertube.openstreetmap.fr/w/44a9cKesgtzu1Jo3FLS5gD
1•altilunium•21m ago•0 comments

Meet Claude: ABC's new regional cadet journalist

https://independentaustralia.net/business/business-display/meet-claude-abcs-new-regional-cadet-jo...
2•frays•22m ago•0 comments

Matmul as a Service, Backed by Tinygrad

https://simpleobservability.com/blog/introducing-maas
1•khazit•23m ago•0 comments

About Arks

https://arks.org/about/
1•Bluestein•28m ago•0 comments

State of the Map 2026 Video Channel

https://peertube.openstreetmap.fr/c/sotm_2026/videos
1•altilunium•28m ago•0 comments

McDonald's India: Intern Hacks Company's X Account over Unpaid Salary

https://www.freepressjournal.in/viral/macdonalds-india-controversy-intern-allegedly-hacks-company...
3•rustoo•28m ago•1 comments

Company's Digital Headquarters

https://corporatesuite.co/
6•pirminmanz•29m ago•1 comments

Stemma – one source of truth for Claude.md, AGENTS.md and Copilot

https://github.com/alexvinola/stemma-cli
2•vrilex•29m ago•0 comments

Experiment: How easy is it to buy a research paper on the black market?

https://news.err.ee/1610129869/experiment-how-easy-is-it-to-buy-a-research-paper-on-the-black-market
1•vintagedave•30m ago•0 comments

Show HN: Keen Bean – Mac meeting notes that draft the spec while you talk

https://keenbean.app/
2•SavvyMonkey•33m ago•0 comments

Court Filings in A.I. Suit Invoke Copyright Law, Culture and Sports

https://www.nytimes.com/2026/09/04/technology/openai-microsoft-new-york-times-lawsuit.html
1•1vuio0pswjnm7•35m ago•0 comments

Messageboards Are All You Need [pdf]

https://flotilla.cc/messageboards-are-all-you-need.pdf
1•ursushoribilis•36m ago•0 comments

Changing the world one vegetable at a time: UK first carbon-negative greengrocer

https://www.leicester.news/changing-the-world-one-vegetable-at-a-time/
1•DamonHD•37m ago•0 comments

Does your landing page look generated?

https://slop-detect.com/
2•stared•42m ago•3 comments

Photon – Search as you type with OpenStreetMap

https://mastodon.social/@rphyrin/117223366663059114
1•altilunium•44m ago•0 comments

Shaping the problem (of transaction foundation models)

https://sistemalabs.com/blog/shaping-the-problem
1•0xideas•47m ago•0 comments

South Korea exports surpass full-year record, hit $709.4B YTD

https://www.reuters.com/world/asia-pacific/south-korea-exports-surpass-full-year-record-hit-7094-...
2•Jhsto•48m ago•0 comments

The Era of Agentic Benchmaxxing

https://kaitchup.substack.com/p/the-era-of-agentic-benchmaxxing
3•thm•51m 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!