frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

2005 gamedev community, frozen in time

https://flipcode.com/
1•kbruner•58s ago•1 comments

Amazon Basics, but for Intellectual Property

https://idiallo.com/blog/amazon-basics-but-intellectual-property
1•firefoxd•1m ago•0 comments

EO 14412: Official Post-Quantum Transition Deadlines

https://www.appviewx.com/blogs/executive-order-14412-post-quantum-imperative-for-machine-identity/
1•mooreds•1m ago•0 comments

Show HN: Dike is a compliance gateway for AI products in the EU

https://d1k3.com
1•orbanlevi•3m ago•0 comments

The Carney government's expanding power to identify Canadians online

https://thehub.ca/2026/07/06/the-carney-governments-expanding-power-to-identify-canadians-online-...
1•Teever•3m ago•0 comments

Show HN: DemandMap – Memory Mapping S3 into Polars on macOS Without FUSE

https://github.com/sonthonaxrk/demandmap
1•sonthonax•8m ago•0 comments

Common prefix skipping adaptive sort

http://smalldatum.blogspot.com/2026/01/common-prefix-skipping-adaptive-sort.html
1•theanonymousone•9m ago•0 comments

Open Hands has a pretty Repo Visualization

https://www.reddit.com/r/PrincipalAi/s/eRRiNWjCft
1•fernando-ram•10m ago•0 comments

Bulletproof Hosting

https://en.wikipedia.org/wiki/Bulletproof_hosting
1•mmarian•10m ago•0 comments

Show HN: A little cat that counts your tokens (Claude and codex)

https://jpthecat.com
1•saddington•14m ago•0 comments

Spain's Solar Is So Cheap Investors Are Looking for an Exit

https://www.bloomberg.com/news/newsletters/2026-06-30/spain-s-solar-is-so-cheap-investors-are-loo...
2•mooreds•14m ago•1 comments

Ask HN: What browser extensions or front ends do you use for reading HN, if any?

4•GaryBluto•14m ago•3 comments

Show HN: DNSskills.md – agentic skills for certain DNS utilities

https://dnsskills.md
1•StuntPope•14m ago•1 comments

The Yoto Music Box Is a Ray of Hope Amid the 'Techlash'

https://www.nytimes.com/2026/07/01/technology/personaltech/yoto-music-box-screens.html
1•reaperducer•15m ago•0 comments

Ekka: Automated Diagnosis of Silent Errors in LLM Inference

https://syfi.cs.washington.edu/blog/2026-06-29-ekka/
2•matt_d•17m ago•0 comments

You Don't Know Jack About Formal Verification

https://queue.acm.org/detail.cfm
3•aravindputrevu•17m ago•1 comments

I'm playing around with SEO / AEO / GEO

https://www.youdidwhatwithai.com/
2•thewebuiguy•19m ago•0 comments

"What is the terminal?" – Jon Udell

https://blog.jonudell.net/2026/07/01/what-is-the-terminal/
2•rbanffy•19m ago•0 comments

A Mind, a Body, and a Place to Work

https://twitter.com/maurya_ian/status/2074010518650864073
2•mauryaudayan•20m ago•0 comments

Guest Post: Atari Origins – By Mark Miller

https://www.goto10retro.com/p/guest-post-atari-origins
2•rbanffy•20m ago•0 comments

Alice Sebold, the wrong man, and Syracuse's buried rape crisis

https://www.propublica.org/article/alice-sebold-anthony-broadwater-rape-exoneration-syracuse
3•Jimmc414•20m ago•0 comments

XGBoost beat LLMs at finding civilian-harm posts in Ukraine war Telegram data

https://www.bellingcat.com/resources/2026/06/25/how-to-use-ai-to-help-find-civilian-harm-conflict...
2•Jimmc414•21m ago•0 comments

AMD Ryzen AI Halo Is a Powerful Mini PC with Open-Source Software

https://www.phoronix.com/review/amd-ryzen-ai-halo
2•rbanffy•21m ago•0 comments

Judgment-Theater and Responsibility Laundering in AI Post-Training

https://medium.com/@wo.shen.me.dou.bu.zhi.dao.a/structural-audit-of-judgment-theater-and-responsi...
2•SyntagmaNull•21m ago•0 comments

DeepSeek V4 Is Earning Agentic Token Share

https://openrouter.ai/blog/insights/deepseek-v4-adoption/
3•verdverm•21m ago•0 comments

Bugs Happen: solo PQ compared to ECC+PQ

https://blog.cr.yp.to/20260704-bugs.html
1•aburan28•21m ago•0 comments

Tokentap – Print what your LLM is thinking

https://github.com/jmuncor/tokentap
1•jmuncor•22m ago•1 comments

From Trust to Verification: Lean's Impact on Mathematics

https://www.simonsfoundation.org/2026/06/23/from-trust-to-verification-leans-impact-on-mathematics/
1•digital55•23m ago•0 comments

5 frontier LLMs have the same favorite joke

https://rkique.github.io/humanitys-first-exam/joke
1•rkique•24m ago•0 comments

IOL-AI 2026 Challenge: Can Your Model Solve Linguistics Olympiad Problems?

https://huggingface.co/spaces/iol-ai-challenge/iol-ai-2026
1•amarbirsingh•24m 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!