frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Determinism Routine Online

https://sozialsoziokrat.substack.com/p/the-beta-is-over-the-universal-operating
1•Daniel_Bauer•12m ago•0 comments

Would a Submarine Work as a Spaceship? [video]

https://www.youtube.com/watch?v=EsUBRd1O2dU
1•doener•14m ago•0 comments

Izakaya Economics

https://www.theguardian.com/world/2026/jun/09/japan-traditional-izakaya-struggling-economic-hard-...
2•tosh•15m ago•0 comments

Growing Pains of Starting a Secret Society

https://mrmarket.bearblog.dev/growing-pains-of-starting-a-secret-society/
1•mrmarket•16m ago•0 comments

Eagle Computer: The rise and fall of an early PC clone

https://dfarq.homeip.net/eagle-computer-the-rise-and-fall-of-an-early-pc-clone/
4•giuliomagnifico•20m ago•0 comments

TokenTamer A proxy that reduces LLM token usage through context compression

https://github.com/borhen68/TokenTamer
1•borhensaidi•20m ago•0 comments

A Botched Master Thesis Proposal and Idea for a Decentralized VPN

https://blog.t1m.me/blog/designing-a-decentral-vpn-protocol-w-libp2p
1•rickcarlino•22m ago•0 comments

Ask HN: Thoughts on Siri AI?

2•akashwadhwani35•27m ago•0 comments

Cleaning up after AI rockstar developers

https://www.codingwithjesse.com/blog/rockstar-developers/
1•BrunoBernardino•27m ago•0 comments

Building a Smarter Crypto Market Maker with Avellaneda–Stoikov

https://medium.com/@DolphinDB_Inc/taming-inventory-risk-building-a-smarter-crypto-market-maker-wi...
3•dbaa4real•28m ago•2 comments

Understand your Team code generated by AI

https://archtocode.com/
1•grzelazny•30m ago•0 comments

The Simplest Learning Machine

https://medium.com/@VictorBanev/the-simplest-learning-machine-pt-2-e735367f546
1•xaedes•32m ago•0 comments

'They were laughing': Israel's use of rape and sexual abuse in prisons

https://www.aljazeera.com/news/2026/6/9/they-were-laughing-israels-use-of-rape-and-sexual-abuse-i...
16•abdusco•32m ago•0 comments

PingWatch uptime monitoring no server needed (alternativeto UptimeKuma)

https://pingwatch.org
1•pipka•34m ago•0 comments

React Compiler Rust Port

https://github.com/facebook/react/pull/36173
3•maelito•34m ago•0 comments

Safe Terraform auto-apply with conftest

https://www.bejarano.io/terraform-autoapply/
1•ricardbejarano•36m ago•0 comments

Data from 66,000+ musician practice sessions

https://old.reddit.com/r/piano/comments/1u0lyhe/data_from_66000_practice_sessions_how_much_does/
1•sebg•37m ago•0 comments

Show HN: SuperTree – interactive decision tree plot for sklearn,xgboost,lightgbm

https://github.com/mljar/supertree
2•pplonski86•43m ago•0 comments

How to Ditch Codecov for Python Projects

https://hynek.me/articles/ditch-codecov-python/
1•lumpa•47m ago•0 comments

Can a Lego Man Survive a Crash Test? – Invidious

https://inv.nadeko.net/watch?v=JTthuDn638U
1•frans•53m ago•0 comments

What if the GRAVITY suddenly switched off?

https://www.youtube.com/watch?v=dNWwIfjJXZY
2•Asheed•53m ago•0 comments

Htmx Is So Cool I Rolled My Own (2024)

https://dbushell.com/2024/04/16/htmx-and-modern-javascript/
2•birdculture•54m ago•0 comments

Real-Time Capital Flow Analysis Using Window Aggregation

https://medium.com/@DolphinDB_Inc/real-time-capital-flow-analysis-using-window-aggregation-57ba10...
2•Polly_Liu•56m ago•0 comments

Building and Backtesting a Dynamic Grid Trading Strategy for Crypto

https://medium.com/@DolphinDB_Inc/beyond-basic-grid-trading-building-and-backtesting-a-dynamic-st...
2•CrazyTomato•58m ago•0 comments

Palantir is turning the NHS into a tool for mass surveillance

https://www.opendemocracy.net/palantir-is-turning-the-nhs-into-a-tool-for-mass-surveillance/
5•robtherobber•59m ago•0 comments

Do you find yourself aimlessly scrolling? You're not alone

https://www.bbc.com/news/articles/czd2mq505dpo
2•01-_-•1h ago•0 comments

Apple updates child safety inspired by Australia's under-16 ban

https://www.abc.net.au/news/2026-06-09/apple-child-safety-features-revamped/106777228
2•01-_-•1h ago•0 comments

An open-source aircraft identification library in Python

https://github.com/xuhao1/pyAircraftIden
1•marklit•1h ago•0 comments

What if Germany had invested in nuclear power? (2024)

https://doi.org/10.1080/14786451.2024.2355642
3•leonidasrup•1h ago•2 comments

Forever Young: how one molecule can lock plants in a youthful state.(2025)

https://omnia.sas.upenn.edu/story/biologist-scott-poethig-plants-never-age
15•bryanrasmussen•1h ago•1 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!