frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Does AI watermarking present a new attack vector?

1•nathanfig•28s ago•0 comments

Just sit in silence for a moment and see what happens. You might like it

http://www.wowwwman.com
1•vektormemory•1m ago•3 comments

Self Study in the Age of LLMs

https://archcloudlabs.com/projects/selfstudy/
1•DLLCoolJ•1m ago•0 comments

Open-Sourced It

1•hamzabinmubeen•8m ago•1 comments

Send postcard online little web app no subscriptions or upselling

https://postcard-pigeon.com
1•wajerrr•9m ago•0 comments

Show HN: Open Vibe Coded Elite – Harmless

https://github.com/atomic14/harmless
1•iamflimflam1•11m ago•0 comments

Ask HN: Can I make a living making diagrams?

1•roschdal•11m ago•0 comments

SquashImage

https://squashimage.com
1•archemistz•11m ago•0 comments

Reed Hastings on life after Netflix and the coming 'creative destruction'

https://www.semafor.com/article/08/13/2026/reed-hastings-ceo-signal
1•andsoitis•12m ago•0 comments

Manjhi – The Mountain Man

https://en.wikipedia.org/wiki/Manjhi_%E2%80%93_The_Mountain_Man
1•thunderbong•13m ago•0 comments

Pokemon Bank shuts down, cutting off the only transfer path from older games

https://www.gamesradar.com/games/pokemon/pokemon-bank-shuts-down-next-year-cutting-off-the-only-t...
1•haunter•13m ago•1 comments

We've flown a radiation-blocking vest to the Moon and back, and it worked

https://arstechnica.com/science/2026/08/weve-flown-a-radiation-blocking-vest-to-the-moon-and-back...
1•rbanffy•15m ago•0 comments

TDD inside the agent loop – theater or actual value?

https://martinfowler.com/articles/exploring-gen-ai/tdd-in-the-agent-loop.html
1•Garbage•17m ago•0 comments

Scientist is helping build a missing map of childhood

https://www.technologyreview.com/2026/08/14/1141354/deanne-taylor-gene-expression-children/
1•joozio•18m ago•0 comments

Alpaca Push – Rebuilding 2004 ICQ Slide-a-Lama in HTML5

https://alpacapush.com/
2•Judzi•18m ago•0 comments

OpenAI annual revenue set to top $40B

https://www.semafor.com/article/08/14/2026/openai-revenue-set-to-top-40-billion
2•Bluestein•19m ago•0 comments

Show HN: A macOS menu bar app showing Claude subscription usage

https://github.com/palamim/usagent
1•leopalamim•19m ago•0 comments

Show HN: Monolith – Real-time global news, markets, and source context

https://monolith.news/
1•parsahej•19m ago•0 comments

Playing to Learn

https://www.observed.life/playing
1•andsoitis•21m ago•0 comments

Migrating from Tauri to Electron: Performance Comparison

https://twitter.com/richiemcilroy/status/2087851482288640185
1•mcilroy•22m ago•0 comments

Show HN: Built an ESP32 remote that groups Sonos speakers and sets group volume

https://github.com/herget/sonos-esp32-remote
1•gaborme•22m ago•0 comments

Napkin Sketches Beat Gantt Charts

https://julienreszka.com/blog/napkin-sketches-beat-gantt-charts/
2•julienreszka•26m ago•0 comments

New things in Python 3.15 [video]

https://www.youtube.com/watch?v=khIUGLwK-9U
1•vismit2000•26m ago•0 comments

Meraki (μεράκι): Infusing Purpose and Passion into Every Moment

https://statecashmere.com/blogs/stories/meraki-infusing-purpose-and-passion-into-every-moment
1•andsoitis•29m ago•0 comments

Scratch a simple data model, find a complex one

https://codeblog.jonskeet.uk/2026/08/14/scratch-a-simple-data-model-find-a-complex-one/
1•ingve•29m ago•0 comments

Show HN: Am-1 Arpeggio Machine – A Love Letter to Berlin School Music

https://crux.garden/zacos/am-1
1•willstepp•31m ago•1 comments

30× faster binary multivector ColBERT late interaction in Vespa

https://oskrim.github.io/engineering/2026/08/13/chunked-hamming-maxsim.html
1•oskrim•34m ago•0 comments

Show HN: Genosyn – Automate running of companies with AI

https://genosyn.com
1•ndhandala•34m ago•0 comments

Why AI-generated vulnerability patches still require expert human review

https://1password.com/blog/why-ai-generated-patches-still-require-human-review
2•wrxd•35m ago•0 comments

Everyone talks about AI agents. This is what one looks from the inside

https://pssah4.github.io/vault-operator/guides/capabilities
4•pssah4•36m 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!