frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Linux Eliminates the Strncpy API After Six Years of Work, 360 Patches

https://www.phoronix.com/news/Linux-7.2-Drops-strncpy
1•simonpure•2m ago•0 comments

You're Accountable for the Team. You're Not in Charge of It

https://yourdevteamcoach.com/blog/youre-accountable-for-the-team-youre-not-in-charge-of-it
1•sea-gold•4m ago•1 comments

The UK will scan asylum seekers' faces for age checks

https://www.wired.com/story/facial-age-estimate-uk-asylum-seekers/
2•Lihh27•8m ago•0 comments

Trump says he no longer views Anthropic as a threat after G7 meeting

https://thenextweb.com/news/trump-anthropic-not-national-security-threat-axios-interview
8•billybuckwheat•10m ago•0 comments

Incorrectly Generated RSA Keys: How I Learned to Recover Lost Plaintexts

https://academic.oup.com/comjnl/article-abstract/66/6/1342/6995423?redirectedFrom=fulltext
1•rbanffy•12m ago•0 comments

Seeing the world in radio waves with the QuadRF

https://hackaday.com/2026/06/20/seeing-the-world-in-radio-waves-with-the-quadrf/
3•ikbdsk•13m ago•0 comments

RFC 9958: Post-Quantum Cryptography for Engineers

https://datatracker.ietf.org/doc/html/rfc9958
2•hasheddan•14m ago•0 comments

Solo Founder Sales Playbook –sales tools for technical founders who hate selling

https://getsalesspark.com/
1•erichensley•14m ago•0 comments

Workflow builder built with just Sandboxes

https://twitter.com/karatzas_thomas/status/2061840456992919997
1•szaneer•14m ago•0 comments

Pulse – a local dashboard for Claude Code, approve tool calls from your phone

https://github.com/nikitadoudikov/claude-pulse
1•nikitadvd•15m ago•0 comments

MosaicLeaks: Can your research agent keep a secret?

https://huggingface.co/blog/ServiceNow/mosaicleaks
1•gmays•15m ago•0 comments

The Tech Billionaire Plan to Destroy Democracy – GIL Duran – TMR [video]

https://www.youtube.com/watch?v=stPijjCneXM
2•wturner•17m ago•0 comments

'Helmsniff'; a Helm Security Scanner

https://github.com/VahidR/helmsniff
1•vahid_r•19m ago•0 comments

Why the EU rewrote its landmark AI law

https://www.theparliamentmagazine.eu/news/article/why-the-eu-rewroteits-landmark-ai-law
1•thinkingemote•20m ago•0 comments

UK Home Office launches £75M 'PoliceAI' to capitalise on artificial intelligence

https://www.publictechnology.net/2026/06/15/public-order-justice-and-rights/home-office-launches-...
3•thinkingemote•20m ago•0 comments

Scaling a Monolith to 1M LOC: 113 Pragmatic Lessons

https://www.semicolonandsons.com/articles/scaling-a-monolith-to-1m-loc-113-pragmatic-lessons
1•jackkinsella•24m ago•0 comments

Show HN: Amiqo – a private app to text the friends you're drifting from

https://amiqo.life/
1•kyle11•24m ago•0 comments

GPUs and RAM Are in Short Supply, but the Real Bottleneck for AI Is Electricians

https://www.nextplatform.com/compute/2026/05/28/gpus-and-ram-are-in-short-supply-but-the-real-bot...
1•Gooblebrai•26m ago•0 comments

Ask HN: Do you use Claude Code, Codex, or something else?

3•JohnDSDev•26m ago•2 comments

Alice. Alice Is Impatient

https://brooker.co.za/blog/2026/06/19/waiting.html
2•birdculture•28m ago•0 comments

Cooren – I turned my family's dinner-voting app into a coordination API

https://github.com/McLeod-Interactive-Group-LLC/cooren-api
1•smac-mig•29m ago•0 comments

Agent-Native Code Hosting

https://gitlawb.com/
1•panikadak•30m ago•0 comments

Europe's Making Fewer Cars and Lots of Them Are Chinese

https://www.bloomberg.com/news/features/2026-06-19/stellantis-volkswagen-eye-risky-partnerships-w...
2•tchalla•31m ago•0 comments

World Cup tourists aren't leaving tips – and NYC restaurants are fighting back

https://nypost.com/2026/06/20/us-news/world-cup-tourists-arent-leaving-tips-and-nyc-restaurants-a...
2•donsupreme•31m ago•3 comments

AutoJack: A single page can RCE the host running your AI agent

https://www.microsoft.com/en-us/security/blog/2026/06/18/autojack-single-page-rce-host-running-ai...
4•p_stuart82•31m ago•0 comments

A Love Story

https://pudding.cool/2026/06/love-story/
1•simonebrunozzi•31m ago•1 comments

StoryScope: Investigating Idiosyncrasies in AI Fiction

https://arxiv.org/abs/2604.03136
2•amai•32m ago•0 comments

Show HN: Internal agent systems like Ramp Inspect for your company

https://brainbaselabs.com
1•egrigokhan•32m ago•0 comments

Show HN: OpenSpend – Invoicing for creators, popup shops and small businesses

https://openspend.riamu.io/
1•openspend•42m ago•0 comments

I built an offline tool to stabilize TV audio because nothing else worked

https://github.com/AdBusterOfficial/Adbuster--WinApp
2•Bo_Amigo_910•43m 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!