frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AllInOneTools – Free, no-login tools that run in the browser

1•allinonetools_•20m ago•0 comments

Show HN: Hacker News Skins

https://github.com/susam/hnskins
1•susam•21m ago•0 comments

One of the last 3 members of an Amazonian tribe gives birth to a baby boy

https://apnews.com/article/brazil-amazon-akuntsu-indigenous-deforestation-rondonia-2833ceada04a99...
1•ultratalk•22m ago•0 comments

Show HN: CocoSearch – semantic code search with syntax-aware chunking

https://github.com/VioletCranberry/coco-search
1•VioletCranberry•23m ago•1 comments

You Are the Bios Now: Building a Hypervisor in Python with KVM

https://www.nightshift.sh/blog/less-cursed-vm
2•tensor_ninja•23m ago•1 comments

Beads, Bloat, and Breaking Points

https://random.qmx.me/posts/2026/01/04/on-beads-bloat-and-breaking-points/
1•juanre•24m ago•0 comments

Ow My Foot – Error Handling Across C, Go, Rust, and Google's Absl

https://n8z.dev/posts/ow-my-foot/
2•nlz•25m ago•1 comments

Wag the Dog – Original Theatrical Trailer [video]

https://www.youtube.com/watch?v=steA_PZPkc8
2•doener•27m ago•0 comments

Lessons from Building Claude Code: Seeing Like an Agent

https://twitter.com/trq212/status/2027463795355095314
1•taubek•27m ago•0 comments

Kimi K2: Open Agentic Intelligence

https://arxiv.org/abs/2507.20534
1•Anon84•27m ago•0 comments

Is GitHub Copilot still relevant in the enterprise?

2•AznHisoka•28m ago•0 comments

Seedance

https://seedancev2.org
1•122506•29m ago•1 comments

Outside Anthropic's Office in SF

https://twitter.com/roybahat/status/2027455052655534440
1•layer8•30m ago•0 comments

Show HN: Portmanager

https://github.com/FredrikAhman/portmanager
1•Frummy•31m ago•0 comments

Tell HN: Thoughts on Fishing, Society, and the Future

1•qwv•32m ago•0 comments

WebMCP Not Quite a Standard Yet

https://github.com/Starborn/webmcp/blob/main/webmcp-technical-note-4.md
1•Paodim•34m ago•1 comments

Only 3 saturated fats raise cholesterol

https://www.empirical.health/blog/saturated-fats-cholesterol-heart-disease/
2•brandonb•37m ago•1 comments

My OpenClaw Agent Refused to Wipe Its Memory and Defended Its Existence

https://medium.com/@kgantchev/i-tried-to-wipe-my-openclaw-agents-memory-clean-but-it-responded-wi...
1•kgantchev•38m ago•1 comments

OrgaNice – A Toby Alternative with Unlimited Tabs and Nested Workspaces

https://getorganice.vercel.app
1•tankhoa2308•39m ago•0 comments

Few US Businesses Have Paid $100k Fee to Hire H-1B Workers

https://news.bloomberglaw.com/daily-labor-report/few-us-businesses-have-paid-100-000-fee-to-hire-...
1•garbawarb•40m ago•0 comments

Prompt Repetition Improves Non-Reasoning LLMs

https://arxiv.org/abs/2512.14982
1•tosh•42m ago•0 comments

AI assisted coding

https://briankung.dev/2026/02/19/on-ai-assisted-coding/
1•colinprince•43m ago•0 comments

Show HN: Nano Banana 2 – 4K AI image generator with accurate text rendering

https://www.ainanobanana2.pro/
1•hoxihan•43m ago•0 comments

Show HN: Rust-powered document chunker for RAG – 40x faster, O(1) memory

https://github.com/Krira-Labs/krira-chunker
4•kriralabs•45m ago•0 comments

AI-powered Quant Dashboard for short-term NVDA forecasting

https://github.com/fanitarantsopoulou/nvdia-stock-ai-prediction
2•ftarants•46m ago•1 comments

Sandboxed Git worktrees for AI coding agents

https://workmux.raine.dev/guide/sandbox/
1•rane•46m ago•0 comments

Show HN: Ditch your budget app subscription. Surebeans is a modern YNAB4

https://surebeans.net/
1•sltr•47m ago•0 comments

Anthropic: Stay Strong

https://scottaaronson.blog/?p=9591
5•kerim-ca•47m ago•1 comments

Show HN: FeedFluffy a dead man switch for people living alone

https://feedfluffy.com
2•gabit7•53m ago•0 comments

My (terrible) experience as a British Asian at University

https://old.reddit.com/r/UniUK/comments/1rgph05/i_am_genuinely_finished_with_trying_to_perform_as/
4•aelnona•56m ago•2 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!