frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Is there an anti-mosquito system that actually works?

1•simonebrunozzi•3m ago•0 comments

You can't buy anything on these food delivery and shopping sites

https://www.cbc.ca/lite/story/9.7313588
1•colinprince•4m ago•0 comments

He Said He Was the Healthiest Man. Then Came a Diagnosis

https://www.nytimes.com/2026/08/21/us/bryan-johnson-biohacker-autoimmune-gastritis.html
1•whack•6m ago•0 comments

One Step Away from Terminators

https://www.ukrinform.net/rubric-ato/4155812-one-step-away-from-terminators.html
1•rwmj•6m ago•0 comments

Ante: Self-contained coding agent that lives in your terminal and self-organizes

https://docs.antigma.ai/
1•Bluestein•8m ago•0 comments

Chinese robot runs 100M sprint quicker than Usain Bolt's world record

https://www.theguardian.com/sport/2026/aug/22/chinese-robot-runs-100m-sprint-quicker-usain-bolt-w...
3•bookofjoe•8m ago•0 comments

We Need a New Science of Progress (2019)

https://www.theatlantic.com/science/archive/2019/07/we-need-new-science-progress/594946/
1•ronfriedhaber•10m ago•0 comments

Official RC2014 repository for hardware schematics / software

https://github.com/RC2014Z80/RC2014
1•Bluestein•11m ago•0 comments

The New MCP Roadmap

https://blog.modelcontextprotocol.io/posts/mcp-roadmap/
1•pentagrama•16m ago•0 comments

Reading List Hotkey: Save Web Pages to Apple Reminders Using Shortcuts App

https://rdamodar.com.np/thought/2026/08/2026-08-22-reading-list-hotkey/
1•fhcxvbdb•19m ago•0 comments

Fine-Grained Shader Validation in Three.js

https://ben3d.ca/blog/fine-grained-shader-validation-in-threejs
1•bhouston•20m ago•0 comments

A Kantian Critique of "Sorry" by Justin Bieber

https://decodingvibes.com/blog/a-kantian-critique-of-sorry-by-justin-bieber/
8•altmanaltman•23m ago•1 comments

A Most Comfortable Dead End

https://monokai.com/articles/a-most-comfortable-dead-end/
2•monokai_nl•25m ago•0 comments

Font League – new website typography

https://fontleague.com/
4•stephenkelman_•28m ago•1 comments

Show HN: A Ruby IDE running on a microcontroller

https://github.com/engneer-hamachan/area512
2•hamachang•29m ago•0 comments

I finally did it.Custom 4K screens with analog knobs,beautiful feedbadk fractals

https://www.youtube.com/watch?v=koDCabeh5kQ
2•thelightherder•31m ago•0 comments

The fun thing about Electron apps

https://yoavmoshe.com/blog/electron/
3•yoavm•32m ago•0 comments

Improving matrix multiplication exponent w. modern optimization and AlphaEvolve

https://arxiv.org/abs/2608.16884
2•theanonymousone•32m ago•0 comments

Are we cooked? Algorithms have rewired our language

https://www.npr.org/2026/08/21/g-s1-139147/are-we-cooked-algorithms-have-rewired-our-language
2•theanonymousone•34m ago•0 comments

AI Stock Research Assistant · Streamlit

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

Show HN: Forst – migrate TypeScript back ends to Go

https://forst-lang.org/docs
2•haveyaseen•35m ago•0 comments

Boeing engineers, tech workers reject contract offer

https://www.kuow.org/topics/business/2026-08-21/boeing-engineers-tech-workers-reject-contract-offer
4•Wuzzl•36m ago•1 comments

National Security Science and Technology Strategy [pdf]

https://www.whitehouse.gov/wp-content/uploads/2026/08/NSSTS-082026.pdf
3•jonbaer•36m ago•0 comments

Visual Studio Code 1.0 (2016)

https://code.visualstudio.com/blogs/2016/04/14/vscode-1.0
3•prvt•37m ago•1 comments

Show HN: K8s-audit – 30-second Kubernetes security check (kubectl and jq only)

https://github.com/k8s-security-pro/k8s-audit
2•k8ssecuritypro•39m ago•0 comments

PDPR – Public Dark Pattern Registry

https://pdpr.lyfmail.com/
2•LYFMail•40m ago•1 comments

The Art of the Fugue: Minimizing Interleaving in Collaborative Text Editing

https://arxiv.org/abs/2305.00583
2•danbitengo•41m ago•0 comments

'Darth Vader' makes the case for Flock cameras at city council meeting [video]

https://www.youtube.com/watch?v=7xOURK7-UMs
2•kingleopold•42m ago•0 comments

Show HN: Knoku – cited AI answers from docs, files, and team knowledge

https://knoku.com
1•knoku•43m ago•0 comments

I made a sweater from scratch (it made me insane) [video]

https://www.youtube.com/watch?v=L7QMgbMlaek
1•ot•44m 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!