frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Electric shock gloves in use by police departments in Bellevue, Omaha

https://nebraskapublicmedia.org/en/news/news-articles/electric-shock-gloves-already-in-use-by-pol...
1•rendx•1m ago•0 comments

Detexify Got Vibed

https://detexify.kirelabs.org/
1•ks2048•2m ago•1 comments

A Call for Action: The "Leiden Declaration on AI and Math"

https://www.ams.org/journals/notices/202608/noti3386/noti3386.html
2•pykello•6m ago•0 comments

Show HN: Kinodesk – Unlimited Remote Desktop Sharing

https://kinodesk.net/
1•AutomationGoat•6m ago•0 comments

The Kill Chain Has a Thinking Problem

https://foxandlion.pub/analysis/the-kill-chain-has-a-thinking-problem
3•asdfwebdf•9m ago•0 comments

Ubuntu to soon have more WSL users than native Linux users

https://itsfoss.com/news/canonical-wsl-growth/
1•notRobot•11m ago•0 comments

Doom, in a Terminal

https://twitter.com/ParsaKhaz/status/2090227125341286856
2•parsak•12m ago•0 comments

Minecraft, in a Terminal

https://twitter.com/ParsaKhaz/status/2090831600753995880
2•parsak•12m ago•0 comments

Basics of Futexes (2018)

https://eli.thegreenplace.net/2018/basics-of-futexes/
1•cassepipe•13m ago•0 comments

Show HN: ChickenButt a Native GTK Chat Client for Ollama on Linux

https://www.chickenbutt.dev/
1•HimTortons•15m ago•0 comments

Futuristic 'hologram' tech promises ultra-realistic human telepresence (2018)

https://www.nbcnews.com/mach/science/futuristic-hologram-tech-promises-ultra-realistic-human-tele...
3•peter_d_sherman•15m ago•1 comments

Replacing 223-node agent graph with a single OSS LLM

https://www.netic.ai/blog/replacing-node-agent-graph-with-open-source-llm
1•yester01•17m ago•0 comments

Show HN: OzBrain, a shared brain for knowledge between agents and your team

https://ozbrain.com
5•dariusmonsef•18m ago•1 comments

Gutterwire is a new kind of news "excerpt aggregator"

https://www.gutterwire.com/
1•jeffgoldblumle•19m ago•0 comments

Modplay by Mark J Cox

https://esoom.com/mark/dev/modplay.html
1•bananaboy•21m ago•0 comments

Pentagon dismisses Stars and Stripes leadership after opposition to interference

https://apnews.com/article/stars-stripes-pentagon-censorship-media-d42affb0c17fef31c6089645c8dbbe70
5•petethomas•24m ago•0 comments

Turn Claude Code into a 24/7 Agent

https://github.com/gtapps/claude-code-hermit/
1•gtapps•24m ago•1 comments

A look at CrossPoint e-reader firmware

https://lwn.net/Articles/1087635/
2•pykello•25m ago•0 comments

I own 28,000 books – here's what I've learned

https://www.shelvd.org/blog/28000-books
20•bvanbranden•28m ago•2 comments

AI Building Exoskeletons – Keeping Creative Inspiration

https://johnoestmannmusic.com/ai-building-exoskeletons/
1•soundworlds•30m ago•0 comments

Ask HN: What do you care about the most at this moment in time?

2•0sake_rs•33m ago•3 comments

Rose-9?

https://belkadan.com/blog/2026/08/ROSE-9/
2•frizlab•34m ago•0 comments

Scammers built a fake Zoom call from real videos of Singapore leaders

https://www.channelnewsasia.com/singapore/zoom-scam-5-million-analysis-full-video-6332621
2•sohkamyung•35m ago•0 comments

ZDOS – a bootable Linux distro and bare-metal Zlang runtime URL

https://github.com/high-cde/ZDOS
1•High-cde•37m ago•0 comments

Disney will drop medical insurance for some employees' spouses

https://www.businessinsider.com/disney-spouse-healthcare-coverage-employee-benefits-2026-8
5•petethomas•39m ago•0 comments

You Shouldn't Exist

https://www.marcnitzsche.de/you-shouldnt-exist/
3•mrccc•40m ago•1 comments

The Icelandic Phallological Museum: The world's only penis museum

https://www.phallus.is/
1•NaOH•40m ago•0 comments

The Scales Can't Fall from Our Eyes Fast Enough

https://www.nytimes.com/2026/08/20/opinion/trump-maga-immigration-woke-democrats.html
3•whack•47m ago•0 comments

Jock, a Nock Combinator Language

https://jock.is/
2•MrBuddyCasino•48m ago•0 comments

List of inventors killed by their own inventions

https://en.wikipedia.org/wiki/List_of_inventors_killed_by_their_own_invention
6•tibbar•50m 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!