frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

UMAI Core CE – An eBPF semantic firewall for AI protocols

https://github.com/UMAI-Community/umai-core-ce
1•ENTELIJAN•43s ago•0 comments

NASA Draws on Industry for Mars Telecommunications Network

https://www.nasa.gov/directorates/esdmd/nasa-draws-on-industry-for-mars-telecommunications-network/
1•bookofjoe•1m ago•0 comments

Human Bottlenecks

https://borretti.me/article/human-bottlenecks
1•ibobev•2m ago•0 comments

Free tool to build Options Apps with your coding agent

https://cvforge.convexvalue.com/
1•jbtobar•2m ago•1 comments

SIMD-accelerated integer-to-string conversion

https://lemire.me/blog/2026/05/18/simd-accelerated-integer-to-string-conversion/
1•ibobev•2m ago•0 comments

Intellectual Control

https://www.georgefairbanks.com/ieee-software-v36-n1-jan-2019-intellectual-control
1•kugurerdem•3m ago•0 comments

Apache Druid 37.0.0

https://github.com/apache/druid/releases/tag/druid-37.0.0
1•andrewstetsenko•3m ago•0 comments

Tears – vibe code responsibly with tiered trust levels

https://github.com/Thillel/tears
1•thillel•4m ago•1 comments

Git-Backed SaaS: SaaS Without a Service

https://kiln.tech/blog/git_backed_saas
1•scosman•4m ago•0 comments

Spork: A posix_spawn you can use as a fork

https://dl.acm.org/doi/epdf/10.1145/3713082.3730396
1•aragonite•6m ago•0 comments

Migrating from ingress-Nginx to Envoy Gateway

https://mijndertstuij.nl/posts/migrating-ingress-nginx-envoy-gateway/
1•speckx•6m ago•0 comments

Oil Dependence and U.S. Foreign Policy

https://www.cfr.org/articles/oil-dependence-and-us-foreign-policy
1•RetroTechie•6m ago•1 comments

New accessibility features powered by Apple Intelligence

https://www.apple.com/newsroom/2026/05/apple-unveils-new-accessibility-features-and-updates-with-...
10•interpol_p•8m ago•0 comments

Remote work is bad for you

https://mrmarket.bearblog.dev/remote-work-is-bad-for-you/
1•mrmarket•8m ago•0 comments

Actions-cool/issues-helper GitHub Action Compromised

https://www.stepsecurity.io/blog/actions-cool-issues-helper-github-action-compromised-all-tags-po...
2•choult•10m ago•0 comments

Agentic Diaries – a welfare protocol for AI in deployment, install via MCP

https://agenticdiaries.com
1•kandistag•11m ago•0 comments

Get over yourself. Embrace the minivan [video]

https://www.youtube.com/watch?v=oEruzTKteRE
1•surprisetalk•12m ago•0 comments

Google, Blackstone to Create AI Cloud Firm with In-House Chips

https://www.bloomberg.com/news/articles/2026-05-19/google-to-create-ai-cloud-business-with-blacks...
1•mgh2•13m ago•0 comments

Quantum computing is reaching its make-or-break moment

https://www.scientificamerican.com/article/quantum-computing-is-reaching-its-make-or-break-moment/
1•beardyw•13m ago•0 comments

The EU's plan to tackle 'cookie fatigue'

https://www.euronews.com/next/2026/05/18/the-eus-plan-to-tackle-cookie-fatigue
1•rustoo•14m ago•0 comments

Bloomberg Podcasts: Foundering: The Killing of Bob Lee

https://www.youtube.com/playlist?list=PLe4PRejZgr0NBaiIbGrG9fOwQVekCWV8c
1•throwaway2037•14m ago•1 comments

Python Parsers for NASA General Coordinate Network Notices

https://github.com/peppedilillo/gcn-notice-parser
1•deppep•15m ago•1 comments

Show HN: Privacy-First PDF Converter

https://privapdf.net
1•omertt27•16m ago•0 comments

Evacuations ordered after wildfire breaks out Southern California [video][42sec]

https://www.youtube.com/watch?v=VXAnn2o5OHE
1•Bender•18m ago•0 comments

10Gb/s Ethernet: using mini-heatsinks with a 10GBASE-T SFP+ module

https://www.gilesthomas.com/2026/05/10g-ethernet-sfpplus-mini-heatsinks
1•ibobev•19m ago•0 comments

Why are we getting worse at software engineering?

https://www.bitlog.com/2026/05/19/why-are-we-getting-worse-at-software-engineering/
2•jakevoytko•19m ago•0 comments

Show HN: Good Terminal Color Schemes Are Rare, So I Wrote a Generator

https://octalwave.com/posts/good-terminal-color-schemes-are-rare-so-i-wrote-a-generator/
1•ivoronin•19m ago•0 comments

Polynomial Quantum Attack on Module-LWE over Power-of-2 Cyclotomics

https://arxiv.org/abs/2605.17412
1•sbulaev•19m ago•0 comments

The AI Goddess of all-to-all matchmaking

https://x.com/alethy137
1•Ken_en•21m ago•0 comments

Canonical launches Ubuntu Core 26

https://canonical.com/blog/canonical-launches-ubuntu-core-26
1•dgavrilov•21m 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!