frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Weird Future of User Interfaces [video]

https://www.youtube.com/watch?v=f32W5BEzWN0
1•enritarta•8m ago•0 comments

Why Is This Dependency Here?

https://bomly.dev/blog/why-is-this-dependency-here
1•ahmed3lmallah•10m ago•0 comments

What Every AI Builder Learns the Hard Way [video]

https://www.youtube.com/watch?v=aLYwPoG2dNI
3•cms4dlols•13m ago•0 comments

Landmark cancer trial shows success against an 'undruggable' cancer

https://www.nature.com/articles/d41586-026-01760-w
1•prabal97•13m ago•0 comments

Breaktheprompt.xyz

https://www.breaktheprompt.xyz/
1•amenghra•20m ago•1 comments

What Did Banning Airbnbs in NYC Accomplish?

https://datastream.substack.com/p/what-did-banning-airbnbs-in-nyc-accomplish
2•racketracer•28m ago•0 comments

Making AI Code Review Measurable

https://azuanz.com/posts/making-ai-code-review-measurable/
2•azuanrb•32m ago•0 comments

Show HN: Trace – open-source, self-organizing memory for LLM agents (PyPI)

https://github.com/husain34/TRACE
2•Husain_Ghulam•33m ago•0 comments

Open-Source Firmware for PicoCalc/Cardputer/Video Game Module/ESP32/Raspberry

https://github.com/jblanked/Picoware
2•ngaut•35m ago•0 comments

Living Your Truth as an Uptight Prig

https://www.cartoonshateher.com/p/living-your-truth-as-an-uptight-prig
2•jger15•37m ago•0 comments

Unicode's Transliteration Rules Are Turing-Complete

https://seriot.ch/computation/uts35/
2•beefburger•38m ago•1 comments

EU court rejects Apple's challenges to bloc's Big Tech rulebook

https://www.euractiv.com/news/eu-court-rejects-apples-challenges-to-blocs-big-tech-rulebook/
2•doener•41m ago•0 comments

The General Court dismisses Apple's actions over its designation as a gatekeeper [pdf]

https://curia.europa.eu/site/upload/docs/application/pdf/2026-07/cp260096en.pdf
3•ColinWright•44m ago•0 comments

Crypto Pin Bars Form and How to Detect Them: Lessons from a $19B Liquidation

https://medium.com/@DolphinDB_Inc/how-crypto-pin-bars-form-and-how-to-detect-them-lessons-from-a-...
3•yiweileng•46m ago•0 comments

Grok 4.5 arriving tomorrow

https://twitter.com/elonmusk/status/2074740539874775163
1•hit8run•47m ago•2 comments

Fibonacci's Real Mathematical Legacy

https://blogs.nature.com/aviewfromthebridge/2017/04/20/fibonaccis-mathematical-legacy/
3•ColinWright•51m ago•1 comments

Fiszki flashcards without an app: your AI quizzes you, FSRS keeps score

https://fiszki.zuzanow.pl/login
1•fiszki•51m ago•0 comments

Time to kill at Temple Meads. What's up with platform 2? Where is platform 14?

https://old.reddit.com/r/uktrains/comments/1uo9lwn/had_some_time_to_kill_at_temple_meads_whats_up/
1•ColinWright•52m ago•0 comments

Apple held accountable under the DMA

https://fsfe.org/news/2026/news-20260708-01.en.html
2•softwarefreedom•53m ago•1 comments

Machine

https://xkcd.com/2916/
3•close04•53m ago•2 comments

Show HN: Diagraw – hand-drawn diagrams, real-time collab, AI assistant

https://diagraw.com/es/
2•victoragudo•56m ago•0 comments

Viability of Local Models for Coding

https://martinfowler.com/articles/exploring-gen-ai/local-models-for-coding-factors.html
1•danebalia•57m ago•0 comments

Show HN: Comcent CE – An open-source self-hosted Voice Infrastructure platform

https://github.com/comcent-io/comcent-ce
1•pavanputhra•59m ago•0 comments

GitHub cuts short offer to burn repos on CD after mockery ensues

https://www.theregister.com/devops/2026/07/06/github-cuts-short-offer-to-burn-repos-on-cd-after-m...
2•beardyw•1h ago•0 comments

Gemma 4 Technical Report

https://arxiv.org/abs/2607.02770
1•ferretj•1h ago•0 comments

Software Engineers Used to Score Goals, Now We Keep Them Out

https://eran.pinh.as/posts/software-engineers-used-to-score-goals-now-we-keep-them-out
2•eranp•1h ago•1 comments

Open ISMS platform for GDPR and NIS-2

https://github.com/NISD2/open-isms
1•cjhisey•1h ago•0 comments

ClickHouse is winning the Observability Wars

https://matduggan.com/clickhouse-is-winning-the-observability-wars/
1•clemo_ra•1h ago•0 comments

How to Scale Robotics and Physical AI? TechDrive Zurich with Robert MacKenzie

https://www.youtube.com/watch?v=6Dw6llpUxqs
1•jmiseikis•1h ago•0 comments

Show HN: Tarit – Self-host sandbox cloud and hypervisor for AI agents

https://github.com/instavm/tarit
6•mkagenius•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!