frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Somewhat enraged by the technical illiteracy of "the algorithm"

1•ggm•40s ago•0 comments

DJCJ Arcade – MAME front end for macOS

https://github.com/DJCJ-website/DJCJArcade
1•chriscjcj•5m ago•1 comments

Google Compute shut down my server for distributing malware

1•farzher•11m ago•0 comments

Show HN: Engrim – A universal, local-first SQLite memory engine for AI CLIs

https://github.com/timgordontg/engrim
1•timgordontg•13m ago•0 comments

TiVo to charge money for skipping commercials in your own recordings

https://cordcuttersnews.com/tivo-plans-to-end-free-automatic-commercial-skipping-in-november-test...
3•dmitrygr•21m ago•0 comments

Show HN: The Duck Has WiFi, a music video drawn with Python

https://www.youtube.com/watch?v=_h1KgS169iM
1•modinfo•24m ago•0 comments

HPE Gives Oracle Right to Buy 4.2M Shares for 1 Cent Each

https://www.forbes.com/sites/antoniopequenoiv/2026/09/03/hewlett-packard-enterprise-gives-oracle-...
2•gurjeet•24m ago•0 comments

I refused to train the AI that could replace me

https://restofworld.org/2026/ai-training-jobs-expert-replacement/
4•colinprince•24m ago•0 comments

The Instinct Thesis: Why Memory Is Becoming the Moat

https://twitter.com/ashwingop/status/2093026452929405356
1•yarapavan•24m ago•0 comments

Marginal Revolution University: Economics for Everyone,taught by econ professors

https://mru.org
1•gurjeet•28m ago•0 comments

I just don't care about your skill files

1•drunkpotato•29m ago•0 comments

From NAND to Tetris (book and course) [video]

https://www.youtube.com/watch?v=LqirVc5SlW0&list=PLrDd_kMiAuNmSb-CKWQqq9oBFN_KNMTaI
1•nomilk•29m ago•1 comments

Show HN: Server hardening playbook where every item is failure/fix/verify

https://github.com/Sanexxxx777/server-hardening-playbook
1•Aleksandr_NFA•31m ago•0 comments

A HN that is better than HN

https://hn.4mn.org/
3•HNSucksDick•32m ago•1 comments

Samsung Debuts zHBM Prototype, Stacking Memory Directly on AI Accelerators

https://www.thelec.net/news/articleView.html?idxno=12835
1•peter_d_sherman•35m ago•1 comments

He's Letting AI Agents Invest His Money. They Even Have Names

https://www.wsj.com/tech/ai/the-ai-shift-turning-everyday-investors-into-mini-quant-funds-ebe4d45f
3•thm•38m ago•0 comments

Show HN: GasMeUp – A gas app that factors in detour time and tank size

https://gasmeup.app/
1•Sharanxxxx•38m ago•0 comments

Show HN: GuidedReview – Review AI-generated code before you sign your name to it

https://github.com/nshntarora/guidedreview
1•nshntarora•39m ago•0 comments

I made legacy SOAP APIs usable by AI agents

https://github.com/bvenkata/legacy2mcp
1•balajijoe5•42m ago•0 comments

Show HN: Golden hour API and a 3D globe of the best light

https://golden.sendafun.com/
2•gpszys•44m ago•0 comments

Coop – Isolated VM Environments for Running Claude Code and Codex

https://github.com/trailofbits/coop
2•aggrrrh•44m ago•0 comments

Iran's Hormuz leverage wanes as US economic squeeze bites

https://www.reuters.com/business/energy/irans-hormuz-leverage-wanes-us-economic-squeeze-bites-202...
1•kaycebasques•44m ago•0 comments

Filepack

https://rodarmor.com/blog/filepack/
1•greyface-•51m ago•0 comments

'RAMageddon' hits consumer electronics as AI drains chip supply

https://www.ft.com/content/ea9a9dcc-b1df-49b0-b80c-f320161b9efa
5•sbulaev•55m ago•0 comments

Tell HN: Anthropic should make Claude the Author and me the Co-Author

3•xeonax•55m ago•1 comments

US Republicans revolt against Flock AI surveillance as backlash intensifies

https://www.ft.com/content/b207536e-6def-4080-878f-d0eba61d11e0
4•sbulaev•55m ago•0 comments

British Museum faces question over Peter Thiel's private Bayeux Tapestry viewing

https://www.londondaily.news/__sentry/balanced/british-museum-faces-questions-over-peter-thiels-p...
4•frm88•57m ago•1 comments

A makeover for college: No gym, no meal plan and two years of work

https://www.npr.org/2026/09/01/nx-s1-5935431/college-reinvented-vermont-work-experience
1•juanplusjuan•58m ago•0 comments

Indonesia's Anak Krakatau eruption halts flights, schools, fishing

https://www.reuters.com/business/environment/indonesias-jakarta-airport-suspends-flights-due-ash-...
1•wslh•1h ago•0 comments

Show HN: Cartoon Photography

https://mkornreich.me/projects/cartoonphotography/
1•enjoyyourlife•1h 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!