frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

BLLM / ALLM – before and after LLM

1•orian•1m ago•0 comments

VMware Intros Private AI Cloud

https://www.nextplatform.com/cloud/2026/09/01/vmware-intros-private-ai-cloud-ai-factory-as-worklo...
1•jonbaer•9m ago•1 comments

I was offered money to scare you of AI [video]

https://www.youtube.com/watch?v=lPdmYMHrWKg
1•nomilk•10m ago•1 comments

Show HN: Laterbot – an anti-todo app for all the stuff you save for later

https://laterbot.app/
1•blitzritz•13m ago•1 comments

More of the universe appears to be more playable than we expected

https://contraptions.venkateshrao.com/p/the-curiously-playable-universe
1•thedreammachine•13m ago•0 comments

The Psychological Warfare of the Modern Sterile Interior

https://lussoarchive.substack.com/p/the-psychological-warfare-of-the
1•evo_9•16m ago•0 comments

Show HN: SetDPI – Change image DPI without re-encoding (runs in browser)

https://setdpi.com/
1•caseymarlin•17m ago•0 comments

The importance of stupidity in scientific research

https://fermatslibrary.com/s/the-importance-of-stupidity-in-scientific-research
1•wslh•18m ago•0 comments

Show HN: Say Toucan – my feedback board 3x'd its price, so I built my own

https://saytoucan.com
1•artoonie•22m ago•0 comments

AI-Assisted Design of a Post-Quantum Cryptographic Accelerator

https://arxiv.org/abs/2609.04058
1•sbulaev•24m ago•0 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
2•KiaanKothari•24m ago•0 comments

Routed: Local, zero-token hybrid router for AI agent skills (<20ms)

https://github.com/bshea-1/Routed
2•bshea1•26m ago•0 comments

Boston, 1960s Video

https://www.youtube.com/watch?v=v23f7rQ4E6Q
1•sheri•27m ago•0 comments

Make infectious disease data boring again

https://www.statnews.com/2026/09/04/pennsylvania-measles-deaths-data-cdc-director-rfk-jr/
2•EA-3167•33m ago•0 comments

The Innovative HP Computer Behind a Hedge Fund Pioneer

https://thechipletter.substack.com/p/the-innovative-hp-computer-behind
1•chmaynard•35m ago•0 comments

What Linux does when you malloc()?

https://medium.com/@ankitadhiman650/what-linux-actually-does-when-you-malloc-162caa460052
1•syumei•37m ago•0 comments

Nvidia Personal AI Router (Pair)

https://github.com/NVIDIA/Personal-AI-Router
2•ystad•37m ago•0 comments

Spike – alerts when a competitor's YouTube video hits N views in T hours

https://spike.yt
1•astarostenkov•38m ago•0 comments

Accelerating LLM Inference with Lossless Speculative Decoding Algorithms (2025)

https://arxiv.org/abs/2502.05202
1•wslh•40m ago•0 comments

Title: A local signed notebook for AI agents, with CLI and MCP interfaces

https://github.com/davidnichols-ops/aafp-commons
1•davidnicholsops•42m ago•1 comments

Show HN: Slicky – a desktop robot for macOS that opens your apps

https://github.com/ananthasharma/Slicky
1•apsharma•42m ago•0 comments

How to sideload apps onto Android Auto

https://www.engadget.com/2246259/how-to-sideload-android-auto-apps/
1•cf100clunk•45m ago•0 comments

Show HN: Read Binary from Screenshots in the Browser

https://onlinebinarytranslator.com/
1•jackking1•47m ago•1 comments

Teardown: DeepSeek Harness

https://github.com/jimy-r/agent-workspace-architecture/blob/main/teardowns/2026-09-05-deepseek-ha...
2•jimyr•48m ago•0 comments

I Missed Tilix, So I Built the Terminal I Wanted

https://medium.com/@yalovoy/i-missed-tilix-so-i-built-the-terminal-i-wanted-ccd7535f4c94
2•zero-ground-445•49m ago•0 comments

Show HN: ChessNotate – Fix a broken PGN without branching into a new variation

https://chessnotate.app/
2•gantengx•50m ago•0 comments

The ZZZ backup page was a response to a wiki outage

https://mob.so/darkforest/p/f609e41e-57f6-476f-9210-6ffb28755c08
1•david_shi•51m ago•0 comments

The Logic of Surveillance (2013)

https://www.ianwelsh.net/the-logic-of-surveillance/
1•bediger4000•54m ago•0 comments

EvoMind: A local-first cognitive AI architecture with runtime safety gates

https://zenodo.org/records/20580153
1•Salt19•55m ago•0 comments

Disruption of the OTP in the adult male forebrain reveals its diverse functions

https://academic.oup.com/endo/article-abstract/167/4/bqag029/8525632?redirectedFrom=fulltext&logi...
3•wslh•56m 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!