frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Whistling-only WhatsApp groups are taking off in Brazil

https://www.theguardian.com/world/2026/may/05/brazil-craze-whistling-only-whatsapp-groups
2•sahar_builds•1m ago•0 comments

Porting Starlark to Pure Python with Claude

https://dbohdan.com/starlark-python
1•networked•2m ago•0 comments

[Odds of hitting] a home run off the top of the foul pole

https://www.nytimes.com/athletic/7261633/2026/05/08/oneil-cruz-home-run-foul-pole-pirates/
1•Kaibeezy•8m ago•1 comments

A Technical Dive into Formalization of Chess Tactics

https://lichess.org/@/heroku/blog/gofchess--a-technical-dive-into-formalization-of-chess-tactics/...
1•heroku•18m ago•0 comments

Show HN: My New Projects Website

https://apps.weichart.de
1•surrTurr•19m ago•0 comments

The Making of Steven Spielberg's Jurassic Park (2012)

https://www.blu-ray.com/news/?id=8186
1•susam•19m ago•0 comments

Deepsec: The security harness for finding vulnerabilities

https://vercel.com/blog/introducing-deepsec-find-and-fix-vulnerabilities-in-your-code-base
1•gmays•21m ago•0 comments

Watts Wasting Texas Water [pdf]

https://www.sierraclub.org/sites/default/files/2026-05/texaswaterreport_final.pdf
1•littlexsparkee•21m ago•0 comments

Aurora: A Leverage-Aware Optimizer for Rectangular Matrices

https://blog.tilderesearch.com/blog/aurora
1•sanxiyn•22m ago•0 comments

Snapseed 4.0 – Note from the Team

https://old.reddit.com/r/snapseed/comments/1t7j7yt/snapseed_40_a_note_from_the_snapseed_team/
1•satvikpendem•24m ago•0 comments

Fertilizer time bomb threatens to drive up Europe's food prices

https://www.politico.eu/article/europe-farmer-fertilizer-prices-iran-war-inflation/
1•leonidasrup•25m ago•0 comments

Italy looks to Libyan gas fields to replace supply shortages from Iran war

https://www.politico.eu/article/italy-libya-gas-replace-supply-shortage-iran-war/
1•leonidasrup•27m ago•0 comments

How to Build Vector Search from Scratch in Python

https://www.kdnuggets.com/how-to-build-vector-search-from-scratch-in-python
1•eigenBasis•27m ago•0 comments

Cloud Embeddings vs. Local Sovereign Memory

https://medium.com/@vektormemory/cloud-embeddings-vs-local-sovereign-memory-ai-agent-memory-layer...
1•vektormemory•30m ago•0 comments

Using Claude Code: The unreasonable effectiveness of HTML

https://twitter.com/trq212/status/2052809885763747935
9•pretext•31m ago•0 comments

The Two Abstractions of System Design: Hide or Reduce

http://muratbuffalo.blogspot.com/2026/05/the-two-abstractions-of-system-design.html
1•eigenBasis•32m ago•0 comments

OpenAI: Investigating the consequences of accidentally grading CoT during RL

https://alignment.openai.com/accidental-cot-grading/
1•pretext•33m ago•0 comments

Fabricated citations: an audit across 2.5M biomedical papers

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(26)00603-3/fulltext
1•jruohonen•34m ago•0 comments

InfoSylvita – Bilingual directory of 17,000 Latin-owned Canadian businesses

https://infosylvita.com
1•alealearce•40m ago•0 comments

Azthengar Build 2026.05.20 Now with Music

https://azthengar.itch.io/azthengarbuild20260508
1•RobotHouse•43m ago•0 comments

HTTP/3 over QUIC in Node.js

http://www.jasnell.me/posts/quic-part-4
1•maxloh•44m ago•0 comments

Show HN: Nanorust – Minimal server-driven UI in Rust

https://github.com/skorotkiewicz/nanorust
1•modinfo•59m ago•0 comments

The Cursed Computer Iceberg Meme (2021)

https://suricrasia.online/iceberg/
1•medbar•1h ago•0 comments

Hard Drive Smart Stats and Failure Rates

https://www.backblaze.com/docs/cloud-storage-hard-drive-smart-stats-and-failure-rates
1•mmh0000•1h ago•0 comments

Cyberattack hits Canvas system used by schools as finals loom

https://www.politico.com/news/2026/05/08/cyberattack-hits-canvas-system-used-by-thousands-of-scho...
2•1vuio0pswjnm7•1h ago•1 comments

Apple, Intel Have Reached Preliminary Chip-Making Agreement

https://www.wsj.com/tech/apple-intel-have-reached-preliminary-chip-making-agreement-69eb9370
1•tosh•1h ago•0 comments

Canvas outage delays college finals across the country

https://www.axios.com/2026/05/08/canvas-cyberattack-outage-finals-colleges-universities
1•1vuio0pswjnm7•1h ago•1 comments

California tech company Cloudflare to lay off more than 1k workers, cites AI

https://www.latimes.com/business/story/2026-05-07/california-tech-company-cloudflare-to-lay-off-m...
1•1vuio0pswjnm7•1h ago•1 comments

What do figureheads on ships represent?

https://thedockyard.co.uk/news/what-do-figureheads-on-ships-represent/
1•thunderbong•1h ago•0 comments

What is Amazon Linux 2023?

https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html
1•tosh•1h 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!