frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We open-sourced an event ticketing platform

https://evnelo.com/
1•mauriciogior•1m ago•1 comments

Functionally Zen

https://testdouble.com/insights/functionally-zen
2•BerislavLopac•3m ago•0 comments

Trump reveals millions of dollars' worth of share deals in big tech and AI

https://www.bbc.com/news/articles/c6p3kxpp8lezo
3•tartoran•3m ago•0 comments

OpenAI nabs key Patreon execs ahead of upcoming announcement

https://www.theverge.com/ai-artificial-intelligence/999249/openai-creators-patreon-execs-hire-sam...
1•elffjs•3m ago•0 comments

Open-weight models now carry 56% of production tokens and 14% of the spend

https://fromtheterminal.substack.com/p/your-production-traffic-already-left-the-frontier
1•oldfamily•4m ago•0 comments

Show HN: Volum – An open-source visual library for 3D model files

https://volum.didac.dev/
2•sabatesduran•4m ago•0 comments

iPhone 4 "Antennagate" Q&A – Steve Jobs, Tim Cook and Bob Mansfield (2010) [video]

https://www.youtube.com/watch?v=BiN5ERktXz0
1•Austin_Conlon•11m ago•0 comments

Containers Are No Longer a Security Boundary

https://depthfirst.com/research/containers-are-no-longer-safe
2•conor-•12m ago•0 comments

Data Centers Are Theft

https://www.machinesociety.ai/p/data-centers-are-theft
1•mikelgan•12m ago•0 comments

Is AI killing the forums and wikis your IT team relies on?

https://www.spiceworks.com/ai/is-ai-quietly-killing-the-forums-and-wikis-your-it-team-relies-on/
1•MC995•13m ago•0 comments

The science of Monkey Island: can grog dissolve a metal mug that fast?

https://jgeekstudies.org/2026/09/23/the-science-of-monkey-island-can-grog-actually-dissolve-a-met...
2•zdw•14m ago•0 comments

Top post in R/gamedev: "AI models have caught up with Unity dev."

https://www.reddit.com/r/gamedev/comments/1wo5asm/ai_models_have_caught_up_with_unity_dev_my/
2•ralfd•14m ago•1 comments

We ported the original Doom to SQL

https://cedardb.com/blog/sqldoom/
1•Vaslo•14m ago•0 comments

Show HN: A browser word game about composing Chinese characters

https://www.chunqiuyiyu.com/zigrid/
1•chunqiuyiyu•15m ago•0 comments

What's Inside Fauci's Diary [video]

https://www.youtube.com/watch?v=dFKRVfguxto
1•db48x•17m ago•0 comments

Systemd v262 Released

https://github.com/systemd/systemd/releases/tag/v262
2•dimonomid•17m ago•0 comments

AI anxiety is sweeping the globe – and cutting across party lines

https://www.politico.eu/article/poll-ai-anxiety-openai-anthropic-elon-musk-silicon-valley-across-...
1•lf88•19m ago•0 comments

Linux Implements Dynamic Bash Tab Completion

https://salivity.github.io/linux/article/how-linux-implements-dynamic-bash-tab-completion
1•ankitg12•20m ago•0 comments

I Couldn't Build Jev at OpenAI – Diogo Almeida, TypeSafe Co-Founder and CEO [video]

https://www.youtube.com/watch?v=cFx9Z3ZXca0
3•ABS•20m ago•0 comments

Performance and safety of a multi-cancer early detection test

https://www.nature.com/articles/s41591-026-04618-w
1•brandonb•20m ago•0 comments

Ethics of Agent Exploitation

https://blog.cygankiewicz.com/en/ethics-of-agent-exploitation/
1•mpkc•22m ago•0 comments

Build a devtool once. Mount it anywhere

https://devfra.me
1•flashblaze•22m ago•0 comments

Troubleshooting a weird keyboard on a Pentium III

https://www.rubenerd.au/troubleshooting-a-weird-keyboard-on-a-pentium-3/
1•speckx•23m ago•0 comments

Show HN: a Rust crate to mock concrete type without using trait

https://github.com/XTSoftwareLabs/shimforge
1•xtsoftwarelabs•23m ago•0 comments

Woman Arrested, Dragged Away After Speaking About Flock at City Council Meeting

https://www.404media.co/woman-arrested-after-city-council-denies-residents-right-to-speak-on-floc...
29•latexr•23m ago•3 comments

Anthropic made Opus 5.5 cheaper. Then it broke four things your agent depends on

https://thenewstack.io/claude-opus-agent-migration/
1•rkovashikawa•24m ago•0 comments

I Manage Homebrew from a UI

https://albertoarena.it/posts/how-i-manage-homebrew-from-a-ui/
1•albertoarena•24m ago•0 comments

An agent is not an extension of the employee who created it

https://getlago.com/blog/how-to-bill-ai-agents
1•AnhTho_FR•26m ago•0 comments

Agent Communication Protocol

https://agentcommunicationprotocol.dev/introduction/welcome
2•ChickeNES•27m ago•0 comments

Search is a 2.9 mb browser for the Mac based on WebKit

https://officecommun.com/search
1•aitanabewa•27m 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!