frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to Give a Technical Presentation (2005)

https://homes.cs.washington.edu/~mernst/advice/giving-talk.html
1•simojo•37s ago•0 comments

Measuring tech debt in tokens instead of engineering hours

https://heysoup.co/notes-tech-debt-token-function
1•heysoup•51s ago•0 comments

Prime Day Is Restaurant Week

https://www.marginpoints.com/issues/2026-06-23-prime-day-is-restaurant-week
1•historian1066•57s ago•0 comments

ACL Recovery with Cross Brace Protocol

https://aadeshnpn.substack.com/p/recovery
1•aadeshnpn•1m ago•0 comments

I turned the Dialog leak into a searchable conflict of interest database

https://build-a-cult.com
4•jakevonportland•4m ago•0 comments

LLM-CTF benchmark – 2,639 real data points from NeurIPS and original runs

https://www.kaggle.com/datasets/manitejamaram/can-ai-hack-llm-ctf-benchmark
1•velotessi•4m ago•1 comments

Why Companies Are Dumping OpenAI and Anthropic [video]

https://www.youtube.com/watch?v=V46Fw9LPNXI
1•mgh2•4m ago•0 comments

Bigger bodies were a late addition for humans

https://www.reading.ac.uk/news/2026/Research-News/Bigger-bodies-were-a-late-addition-for-humans
2•gmays•5m ago•0 comments

Show HN: Budget Control in Claude Code Harness with Codex Handoff

https://blog.rduffy.uk/posts/the-speedometer-i-made-up/
1•rduffyuk•6m ago•0 comments

Flying Skateboards? [video]

https://www.youtube.com/watch?v=uhAEEi0gjrg
1•aunekiaru•6m ago•0 comments

Experience: I feel other people's pain (2011)

https://www.theguardian.com/lifeandstyle/2011/mar/19/i-feel-other-peoples-pain
1•networked•9m ago•0 comments

LDAPLite yet another single binary LDAP server

https://github.com/smarzola/ldaplite
3•smarzola•10m ago•0 comments

CryptoLogin: Show HN – No email, no password. Just a master secret

https://github.com/erabytse/CryptoLogin
1•takouzlo•15m ago•0 comments

The fastest search engine for award travel

https://seats.aero/
1•momentmaker•19m ago•0 comments

The Galactic Empire Was Always Gonna Fail

https://jimmyalfonsolicon.substack.com/p/the-galactic-empire-was-always-gonna
1•jger15•20m ago•0 comments

Walkable Neighborhoods Finder

https://close.city/
2•momentmaker•21m ago•0 comments

Save Wisdom Questions

https://savewisdom.org/the-1000-word-save-wisdom-questions/
1•momentmaker•22m ago•0 comments

Tech Slide Deepens as AI Fears Get Worse

https://www.wsj.com/livecoverage/stock-market-today-dow-sp-500-nasdaq-06-23-2026
3•doener•24m ago•1 comments

A scientist says he can scan prisoners' brains for signs of evil

https://www.theguardian.com/us-news/ng-interactive/2026/jun/23/scientist-us-legal-system-violence...
4•mellosouls•24m ago•1 comments

The Warfare of the Future Is Here

https://www.noemamag.com/the-warfare-of-the-future-is-already-here/
2•sharjeelsayed•25m ago•0 comments

Not so empty nesters: record-high number of US adults under 35 live at home

https://www.theguardian.com/society/2026/jun/18/us-adults-under-35-living-at-home
2•littlexsparkee•25m ago•0 comments

Write Like Paul Graham

https://paulgraham.mooch.agency/
2•tahigichigi•27m ago•0 comments

The Struggle Is Valuable

https://blog.jobelenus.dev/blog/struggle-creates-value/
2•mooreds•30m ago•0 comments

Envoy AI Gateway 1.0 – A Stable, Production-Ready AI Gateway

https://aigateway.envoyproxy.io/blog/v1.0-release-announcement/
3•zoltano•37m ago•0 comments

Twenty Years Later, Everything Is the Truman Show (2018)

https://www.vanityfair.com/hollywood/2018/06/truman-show-anniversary-jim-carrey-peter-weir-laura-...
7•thoughtpeddler•38m ago•0 comments

How to Think About AI Before It's Too Late

https://www.theatlantic.com/podcasts/2026/06/how-to-think-about-ai-before-its-too-late/687644/
2•joebuckwilliams•39m ago•0 comments

TOP500 – June 2026 List

https://top500.org/lists/top500/2026/06/
3•NKosmatos•40m ago•0 comments

Generate per-session LoRA adapters in <1s for agentic inference efficiency

https://github.com/theoddden/Tessera
2•Facingsouth•40m ago•1 comments

Show HN: AnswerJournal – An MCP server to save and share AI answers

https://answerjournal.com/
4•daniban•43m ago•0 comments

Deciphering Basmalah

https://blog.plover.com/2026/06/23/
3•frizlab•47m 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!