frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NLNet Labs LLM Policy

https://nlnetlabs.nl/llm-policy/
1•birdculture•2s ago•0 comments

Clockwork, a browser engine of intermeshing gears and impossible motion

https://sand-morph.up.railway.app/clockwork
1•echohive42•47s ago•0 comments

Germany urges EU to suspend methane rules after US pressure

https://www.ft.com/content/c5c97c40-6afe-4a22-a9b8-aea456b85326
2•littlexsparkee•4m ago•1 comments

How to Write an Effective Software Design Document · Refactoring English

https://refactoringenglish.com/excerpts/write-an-effective-design-doc/
1•mpweiher•8m ago•0 comments

Gstack

https://github.com/garrytan/gstack
1•grajmanu•11m ago•0 comments

Russian hackers were behind $2.5B hack of Jaguar Land Rover

https://techcrunch.com/2026/06/26/russian-hackers-were-behind-2-5-billion-hack-of-jaguar-land-rov...
2•01-_-•11m ago•0 comments

Free-For.dev

https://github.com/ripienaar/free-for-dev
1•grajmanu•12m ago•0 comments

Git Push No-Mistakes

https://github.com/kunchenguid/no-mistakes
1•grajmanu•12m ago•0 comments

Digital Donkeys: An Allegory for the Algorithmic Feed

https://om.co/2026/05/25/we-are-living-in-pinocchios-world/
1•merqurio•15m ago•0 comments

Om Malik, Whose Blog Shaped How Silicon Valley Saw Itself, Dies at 59

https://www.nytimes.com/2026/06/26/technology/om-malik-dead.html
4•philip1209•20m ago•0 comments

Selfhost.directory – a directory of self-hostable projects with live updates

https://selfhost.directory/
1•internetak•21m ago•1 comments

The Copy and the Guru

https://om.co/2026/05/26/the-copy-and-the-guru/
2•tosh•28m ago•0 comments

The text/Markdown Media Type

https://datatracker.ietf.org/doc/html/rfc7763
1•foxfired•29m ago•0 comments

They quit the West for Russia's traditional values, but it wasn't as expected

https://www.bbc.co.uk/news/articles/cn075j04pnyo
5•mellosouls•31m ago•1 comments

The Cost Yagni Was Never About

https://newsletter.kentbeck.com/p/the-cost-yagni-was-never-about
1•mpweiher•32m ago•0 comments

RelayMatch | Get your idea in front of the right people in 5 minutes.

https://relaymatch.pro
1•nikitafaesch•33m ago•0 comments

Apple's Vision Pro and Smart Glasses Chief to Join OpenAI

https://www.bloomberg.com/news/articles/2026-06-26/apple-s-vision-pro-and-smart-glasses-chief-pau...
4•aurenvale•34m ago•0 comments

IBM has unveiled chip technology that could help extend Moore's Law another dec

https://www.technologyreview.com/2026/06/25/1139696/ibm-unveils-sub1nm-chip/
2•joozio•40m ago•0 comments

Corgi makes things worse, claims Postmark is overcharging (despite being Free)

https://twitter.com/SergioGarc20223/status/2070629753506476376
2•mmunj•42m ago•0 comments

Reversing Ukraine's Population Loss After Four Years of War

https://www.thinkglobalhealth.org/article/reversing-ukraines-population-loss-after-four-years-of-war
1•littlexsparkee•43m ago•0 comments

Show HN: Hikaru Labs – image tools that run directly on your device

https://hikarulabs.xyz
2•CFBL•50m ago•0 comments

Show HN: Statemently – Bank statement PDFs to Excel/CSV, totals verified

https://statemently.io
1•pro_methe5•52m ago•0 comments

A small plane crashed into Beijing's tallest building

https://www.bbc.com/news/videos/c8j2rjrzjero
4•linzhangrun•54m ago•0 comments

Ask HN: How do founders get early beta testers?

2•KNihalani•56m ago•1 comments

Searching for a [72,36,16] extremal code

https://valbert4.github.io/selfdual_site/
1•EvgeniyZh•57m ago•0 comments

Were the blitzed areas of London still being cleared out in the 80s even later?

https://www.quora.com/Were-the-blitzed-areas-of-London-still-being-cleared-out-in-the-70s-80s-eve...
2•zeristor•1h ago•0 comments

API errors may be worse for retention than crashes

https://rejourney.co/engineering/2026-05-18/ambiguity-kills-app-growth
2•mrr7337•1h ago•0 comments

The BBC switches off its oldest service

https://www.economist.com/britain/2026/06/25/the-bbc-switches-off-its-oldest-service
3•austinallegro•1h ago•0 comments

Should you join the Antler startup incubator program? It depends (2025)

https://developerwithacat.com/blog/062025/join-antler-startup/
2•mmarian•1h ago•2 comments

Why web browsers don't support Markdown

https://unstory.eu/qaa/
1•skeledrew•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!