frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•kevinpeckham•26s ago

Dealing with Dickovers

https://pluralistic.net/2026/07/21/dickovers/
1•hn_acker•2m ago•0 comments

Words to Avoid (Or Use with Care) Because They Are Loaded or Confusing

https://www.gnu.org/philosophy/words-to-avoid.html#Content
1•vrganj•3m ago•0 comments

Microsoft to rent Mistral's GPUs for multibillion $

https://news.microsoft.com/source/2026/07/21/microsoft-and-mistral-expand-strategic-partnership-t...
1•LucasLanglois•4m ago•0 comments

Show HN: Instancez – Open-Source Declarative Single-Binary Supabase Alternative

https://github.com/instancez/instancez
1•saedx1•4m ago•1 comments

Show HN: Ctoken – CLI util to count LLM tokens in files, dirs or input

https://github.com/RimantasZ/ctoken
2•iezhy•6m ago•0 comments

When Less Is More: Evolutionary Dynamics of Deception in a Sender-Receiver Game

https://arxiv.org/abs/2502.02713
2•abhas9•6m ago•0 comments

Control-Theory Taxonomy of Physical AI

https://dreossi.github.io/blog/physical-ai-taxonomy/
1•maunic•7m ago•0 comments

Apple Defeats Liability for Not Scanning iCloud for CSAM

https://blog.ericgoldman.org/archives/2026/07/apple-defeats-liability-for-not-scanning-icloud-for...
4•speckx•7m ago•0 comments

Tracking the Apple to OpenAI pipeline: 283 moves, 44% from hardware

https://www.inkling.co/research/apple-to-openai
2•johnm212•9m ago•0 comments

First pull request used to be a coin flip

https://dparkmit.substack.com/p/your-first-pull-request-used-to-be
1•dparkmit•9m ago•0 comments

Branching databases like code: a CI/CD pattern for Lakebase at Glaspoort

https://www.databricks.com/blog/branching-databases-code-cicd-pattern-lakebase-production-glaspoort
1•ryantsuji•9m ago•0 comments

Where Your AI Lives Matters More Than How Smart It Is – Especially in the UAE

https://praveenvijayan.substack.com/p/where-your-ai-lives-matters-more
1•praveenvijayan•9m ago•0 comments

LLM Margin Lab

https://github.com/telemetry-sh/llm-margin-lab
1•flurly•9m ago•0 comments

Can you see seven states from Lookout Mountain? We traced every sightline

https://uptowhere.com/blog/seven-states-lookout-mountain/
1•tonvilro•9m ago•1 comments

AWS Sagemaker discontinue support for model/data quality monitoring

https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html
2•jamesblonde•9m ago•0 comments

Moiré Sea

https://dryad.technology/moiresea/
1•Gecko4072•11m ago•0 comments

Visualizing medical code hierarchy with treemaps

https://www.johndcook.com/blog/2026/07/17/visualizing-medical-code-hierarchy/
1•ibobev•11m ago•0 comments

Sum of Low Squares

https://www.johndcook.com/blog/2026/07/19/sum-of-low-squares/
1•ibobev•12m ago•0 comments

Are 128-bit symmetric keys secure against quantum computers?

https://kerkour.com/128-bit-keys-post-quantum
2•cold_pizz4•12m ago•1 comments

AI Is ThoughtWare, Not Software: The End of Thinking as We Know It

https://shrsv.hexmos.com/post/ai-is-thoughtware
1•atomicnature•12m ago•0 comments

Making `wc` 20x faster with parallel state machines

https://aarol.dev/posts/wc-dfa/
1•ibobev•12m ago•0 comments

Ask HN: Are LLMs replacing open-source ecosystems for personal project codes?

1•malteg•12m ago•0 comments

Show HN: Rowset – An open-source back end for AI agents

https://github.com/LVTD-LLC/rowset
1•rasulkireev•14m ago•0 comments

Consistent Multi-view 3D Head Reconstruction in 0.08 seconds

https://syntec-research.github.io/SHELLS/
2•smusamashah•14m ago•0 comments

Show HN: 3D map of every French building, colored by energy class (open data)

https://ecobuilding.confinia.io
1•clement_igonet•16m ago•0 comments

Study Claiming AI Helps Students Learn Retracted

https://www.plagiarismtoday.com/2026/07/15/study-claiming-ai-helps-students-learn-retracted/
1•speckx•17m ago•1 comments

Show HN: Shared photo albums using a chat interface

https://picpocket.io/
1•amr_shawky•17m ago•0 comments

Gemini 3.6 Flash released on AIStudio

https://aistudio.google.com/welcome
2•Topfi•18m ago•0 comments

TekmerDB – a database that flags contradicting facts instead of averaging them

https://github.com/raa82/tekmerdb
1•falinapterus82•19m 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!