frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Muro 3.0 – Free, native live wallpapers for macOS

https://github.com/MrRockySL/Muro
1•rockyxsl•2m ago•0 comments

Meat Proxy

https://sfisms.org/meat-proxy
1•karakoram•2m ago•0 comments

Online forums, not quite gone, not quite forgotten

https://disassociated.com/online-forums-not-quite-gone-not-quite-forgotten/
1•Brajeshwar•2m ago•0 comments

Accessible Arcan Out of Sight (2024)

https://arcan-fe.com/2024/10/18/accessible-arcan-out-of-sight/
1•kogasa240p•3m ago•0 comments

Semicolon Inspector

https://semicolon.trm.sh/
1•LorenDB•4m ago•0 comments

Trees 'giving up': climate change hammers historic English gardens

https://www.yahoo.com/news/science/articles/trees-giving-climnate-change-hammers-055600335.html
1•hbcondo714•4m ago•0 comments

DB-Engines Ranking

https://db-engines.com/en/ranking
1•ronfriedhaber•4m ago•0 comments

Show HN: Skills Wiki – Connect Skills to AI

https://skillwiki.app
1•yzliual•4m ago•1 comments

Trailer

https://incoherency.co.uk/blog/stories/trailer.html
1•surprisetalk•5m ago•0 comments

Show HN: Rank21 – the AI product outbid board where earlier boosts cost less

https://outbidlol.ai/
1•14mnobody•6m ago•0 comments

RACE – terminal multiplexer built as an infinite canvas

https://race-term.com/
1•xlii•7m ago•0 comments

Switch Mac desktop background contents by script

https://infinidesk.app
1•ben_s_e•7m ago•1 comments

Sort branches by last commit date

https://ryangreenberg.com/til/git-branches-by-commit-date/
2•speckx•9m ago•0 comments

Python Data Classes Beyond the Boilerplate

https://www.kdnuggets.com/python-dataclasses-beyond-the-boilerplate
1•eigenBasis•9m ago•0 comments

I made a rock climbing tool using computer vision [video]

https://www.youtube.com/watch?v=TPMtqozf4MI
1•dr_blueberry•9m ago•1 comments

Why Are Rivers So Mathematical?

https://www.quantamagazine.org/why-are-rivers-so-mathematical-20260810/
3•karakoram•9m ago•0 comments

De-stink: remove claudisms without LLMs, only copy paste

https://lex00.github.io/sentences/destink.html
1•nvegater•10m ago•0 comments

Show HN: I built a SaaS without knowing how to code – am I an idiot?

https://www.learnfrom.co/
3•bel_hajo•11m ago•3 comments

Show HN: Reproduce a cross-company AI agent handoff, including its revocation

https://github.com/identities-ai/ratify-agent-relay-harness
2•chuks•11m ago•0 comments

The Kings' Race Game

https://lorenzosciandra.github.io/KingsRace/
1•lorenzos98•12m ago•0 comments

The reasons you procrastinate, and how to stop

https://theconversation.com/the-real-reasons-you-procrastinate-and-how-to-stop-according-to-scien...
1•EndXA•13m ago•0 comments

How Stripe uses graph search to auto-remediate a global database fleet

https://stripe.dev/blog/how-stripe-uses-graph-search-and-state-machines-to-auto-remediate-a-globa...
1•rglover•13m ago•1 comments

AI is hitting entry-level jobs hardest, Stanford study finds

https://arstechnica.com/ai/2026/08/ai-is-hitting-entry-level-jobs-hardest-stanford-study-finds/
2•Brajeshwar•17m ago•1 comments

Unforgetful

https://marco.org/2026/08/14/unforgetful
3•robenkleene•18m ago•0 comments

Show HN: StrangerCard – Post something and let a random stranger discover it

https://strangercard.xyz/
1•jabed•18m ago•0 comments

Show HN: A daily cartoon contest between AI models, judged blind

https://comic-cron.com/
1•hahaguffaw•19m ago•0 comments

A more robust hardware ID method for licensing

https://systemlocker.net/blog/hardware-ids-break-we-can-help
1•ammmw•21m ago•0 comments

ThinkingCap – we fine-tuned Qwen3.6-27B to reduce unnecessary reasoning

https://bottlecapai.com/post/thinkingcap-qwen3-6-27b/
1•tabith•21m ago•0 comments

Free AI Based Interview Preparation

https://www.interviewbasecamp.com/
1•balkrishnajha•21m ago•0 comments

Worshop Series Laboratorio Exprés

https://olivervillalba22.wixsite.com/pura-buena-pesca
1•PrincipalvsOM•23m 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!