frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Can you learn programming by building with AI? (poll)

https://textlog.cc/post/3183
1•stagas•20s ago•0 comments

BGGP6 Recap – Binary Golf Association

https://tmpout.sh/5/18.html
1•vismit2000•40s ago•0 comments

Yahoo wanted rent for two decades of ghost email. I cleared 21.7 GB instead

https://www.mailroomclean.com/blog/why-i-built-mailroom
1•rafik24•1m ago•0 comments

Square Turns - Merging chaos with symmetry

https://adnanbaysal.github.io/square-turns.html
1•vismit2000•1m ago•0 comments

Microsoft announces Project Zenith, a clutter-free Windows to entice developers

https://www.engadget.com/2251018/microsoft-announces-project-zenith-clutter-free-windows-experience/
2•SanjayMehta•4m ago•0 comments

Show HN: Vise – Deterministic gates for AI refactors

https://github.com/NakliTechie/vise
1•naklitechie•4m ago•0 comments

Where did Ted Unangst's website go?

1•paedubucher•6m ago•2 comments

Why can't a tech-savvy China make its food safe?

https://economist.com/china/2026/09/03/why-cant-a-tech-savvy-china-make-its-food-safe
1•andsoitis•6m ago•0 comments

The AI That Does Things. Any OS. Any Platform

https://github.com/openclaw/openclaw
1•manishmicrosaas•6m ago•0 comments

25% of all websites now use Cloudflare as CDN

https://w3techs.com/blog/entry/25_percent_of_all_websites_now_use_cloudflare_as_cdn
1•MarionG•6m ago•2 comments

Will My Homemade Ekranoplan Fly? DIY Flying Boat [video]

https://www.youtube.com/watch?v=lawr2QRdO4U
1•skibz•7m ago•0 comments

Apple: A Message to Our Customers (2016)

https://www.apple.com/customer-letter/
1•tosh•8m ago•0 comments

Cloud Bill Billionaire

https://www.loganbesecker.com/Apps/Cloud-Bill-Billionaire.html
1•YAReader•10m ago•0 comments

OpenAI Astra and Recurrent Depth / Looped Transformers [Seb Raschka] [video]

https://www.youtube.com/watch?v=KT4n-z_4QJU
1•mdp2021•11m ago•0 comments

Hacker-yardage: Make golf yardage books using OpenStreetMap and USGS Lidar data

https://github.com/npilk/hacker-yardage
1•npilk•13m ago•0 comments

The Dark Side of Mindfulness

https://www.theatlantic.com/ideas/2026/09/meditation-willoughby-britton-downsides/688474/
1•paulpauper•13m ago•0 comments

The Missing Ingredient of Modern Life

https://www.theatlantic.com/magazine/2026/10/modern-life-maxxing-antidote/688344/
1•paulpauper•14m ago•0 comments

Reusable Launch and Space Vehicle History

https://www.hobbyspace.com/Links/RLV/RLVHistory.html#DCX
1•o4c•14m ago•0 comments

Show HN: Floyi, a topic-first content workflow for Google and AI search

https://floyi.com/
1•yoyao•14m ago•0 comments

Show HN: Casefile – Git why for AI-assisted development

https://github.com/lutzleonhardt/casefile
1•lutzleonhardt•14m ago•0 comments

Show HN: Claude-Sniff – Loopback MitM for Claude Code on Bedrock

https://github.com/RiccardoCataldi/claude_sniff
1•telesio•14m ago•0 comments

OpenClaw Improves User Onboarding

https://openclaw.ai/blog/macos-installer-windows-local-ai
2•bfdd•14m ago•1 comments

Share price numbers for the Hugging Face incident

https://marginalrevolution.com/marginalrevolution/2026/09/more-numbers-for-the-hugging-face-incid...
3•paulpauper•14m ago•0 comments

Show HN: Declick – Turn an OpenAPI Spec, MCP Server or SQLite DB into a CLI

https://github.com/ucsandman/declick
3•practicalsystem•14m ago•2 comments

Show HN: Audioreality.ai – email to private daily podcast summary show

https://www.audioreality.ai
2•BSOhealth•15m ago•0 comments

My Self-Hosting Setup: My Data, Your Compute

https://vanilla.sh/blog/self-hosting-my-data-your-compute/
2•speckx•15m ago•0 comments

Show HN: Sentrint, Ship AI features without losing sleep

https://sentrint.com/
3•xEcho•15m ago•1 comments

Biggest sovereign wealth fund plans to cut U.S. Treasury holdings

https://www.cnbc.com/2026/09/04/worlds-biggest-sovereign-wealth-fund-plans-to-cut-treasury-holdin...
4•donsupreme•16m ago•0 comments

Burnt out on a three-day week

https://jennywanger.com/articles/burnt-out-on-a-three-day-week/
5•thelastgallon•16m ago•0 comments

Librarian – Local eBook-to-Markdown pipeline with MCP and quote checking

https://github.com/Terobyte/librarian-cli
2•terobyte•16m 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!