frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Birds Are Shit

https://birdsareshit.com/
1•ohjeez•1m ago•0 comments

By Opening a Model, a Chinese A.I. Lab May Test the World's Cybersecurity

https://www.nytimes.com/2026/08/25/science/cybersecurity-zai-open-weights.html
1•bookofjoe•3m ago•1 comments

Show HN: I might have built the best Linear alternative

https://github.com/croffasia/itsaplan
1•Croffasia•8m ago•0 comments

PCSX2 2.8.0 is now out This release is PACKED

https://pcsx2.net/blog/2026/pcsx2-2.8/
2•sergiotapia•9m ago•0 comments

"We want it to confuse people, but also make people happy."

https://unsung.aresluna.org/we-want-it-to-really-confuse-people-but-also-really-make-people-happy/
1•zdw•10m ago•0 comments

Defrag98: Windows 98 Disk Defragmenter Simulator Online

https://defrag98.com
2•throw0101a•12m ago•1 comments

Twitter (Not affiliated with X Corp)

https://twitter.now/maintenance/
4•JetSpiegel•14m ago•0 comments

The issue with AI video generation

https://dimension.so/
1•samit_manjunath•14m ago•0 comments

Free K–12 lessons to prepare students for life

https://www.commonsense.org/education/digital-literacy
1•mooreds•15m ago•0 comments

Some frameworks for helping each other amidst the mess

https://jembendell.com/2026/08/17/here-are-some-frameworks-for-helping-each-other-amidst-the-mess/
3•mooreds•18m ago•0 comments

How the weather in space can affect us on Earth

https://www.bbc.com/news/articles/czjlzdw8gp0o
1•mooreds•19m ago•0 comments

Show HN: Live AI video streams that write themselves one shot at a time

https://tv.mormon.garden
1•mormonnegro•20m ago•0 comments

States can regulate prediction markets as gambling, federal appeals court rules

https://www.cnn.com/2026/08/28/business/states-prediction-markets-gambling-federal-appeals-court
1•healsdata•20m ago•0 comments

Goubau line (single wire transmission line)

https://en.wikipedia.org/wiki/Goubau_line
1•RicoElectrico•21m ago•0 comments

Kubernetes Secrets Management

https://infisical.com/blog/kubernetes-secrets-management
1•vmatsiiako•22m ago•1 comments

AI should be illegal until we figure out how to deal with its consequences

https://ivanca.github.io/ai/2026/08/29/ai-should-be-illegal-until-we-figure-out-how-to-deal-with-...
2•AmbroseBierce•23m ago•1 comments

August 27 outage: Incident report

https://proton.me/blog/august-27-outage-incident-report
1•Cider9986•26m ago•1 comments

A free and public search engine for all browser extensions

https://extensions.proxied.tech/
1•proxiedtech•28m ago•0 comments

What does it mean for data to be AI ready?

https://sina.bio/posts/what-does-it-mean-for-data-to-be-ai-ready.html
1•sinab•28m ago•0 comments

Show HN: Delete yourself from data brokers without a subscription

https://github.com/k7cfo/remove-your-data
4•k7peak•31m ago•4 comments

Getting Ridge Regression Right

https://k9s.gr/ramblings/getting_ridge_regression_right.html
2•rafael859•38m ago•0 comments

The Myth of the Cynical Genius

https://www.psychologytoday.com/us/blog/trust-games/202111/the-myth-the-cynical-genius
2•John7878781•40m ago•0 comments

Steve Jobs 8th Grade Science Fair Project: The Silicon-Controlled Rectifier

https://www.rrauction.com/auctions/lot-detail/351632607484006-steve-jobs-personally-built-8th-gra...
3•reaperducer•40m ago•0 comments

Efficient Decode Context Parallelism with vLLM for Long Context Workloads

https://vllm.ai/blog/2026-08-07-decode-context-parallelism
1•aray07•44m ago•0 comments

Omnipresent availability risks in cloud software

https://surfingcomplexity.blog/2026/08/29/omnipresent-availability-risks-in-cloud-software/
2•azhenley•45m ago•0 comments

AI surveillance in schools raises safety and equity concerns

https://www.brookings.edu/articles/ai-surveillance-in-schools-raises-safety-and-equity-concerns/
2•hn_acker•48m ago•4 comments

US Kobo Sales Double?

https://www.publishersweekly.com/pw/by-topic/digital/content-and-e-books/article/101053-rakuten-k...
2•seam_carver•52m ago•1 comments

Research: Why You Shouldn't Treat AI Agents Like Employees

https://hbr.org/2026/05/research-why-you-shouldnt-treat-ai-agents-like-employees
1•njrc•53m ago•1 comments

Sony Music, Warner sue Anthropic, alleging a "brazen campaign" of intellectual

https://techcrunch.com/2026/08/29/sony-music-warner-sue-anthropic-alleging-a-brazen-campaign-of-i...
2•sbulaev•56m ago•0 comments

The Server Called Paranoia: Defend Autistici/Inventati

https://micahflee.com/the-server-called-paranoia-defend-autistici-inventati/
3•oriettaxx•59m 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!