frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A browser MMO snake where ~1000 players share one CPU core

https://growordie.io
1•ncakes•1m ago•0 comments

Crypto firms prepare defenses as quantum threat to encryption draws nearer

https://www.reuters.com/legal/government/crypto-firms-prepare-defenses-quantum-threat-encryption-...
1•tartoran•2m ago•0 comments

A Windows utility for a problem that kept stealing 10 minutes at a time

https://www.indiehackers.com/post/i-launched-a-windows-utility-for-a-problem-that-kept-stealing-1...
1•enlightpixel•3m ago•0 comments

An AI coal mine security camera network powered by plaintext passwords

https://eaton-works.com/2026/07/08/coal-india-camera-hack/
2•EatonZ•4m ago•0 comments

A jigsaw puzzle where every piece is a slice of live video

https://jumpcutjigsawpuzzles.com/
1•tjsbbi•7m ago•0 comments

Show HN: Runo – open-source web scraping that returns typed JSON

https://github.com/rhymeswithlimo/runo
1•barebearcountry•8m ago•0 comments

Meta AI glasses disable the camera if the capture LED is destroyed

https://9to5google.com/2026/07/07/meta-ray-ban-smart-glasses-privacy-light-camera-update/
3•p_stuart82•8m ago•0 comments

Show HN: Arbor – code graph MCP server so agents stop grep-reading your codebase

https://github.com/Anandb71/arbor/releases/tag/v2.4.0
1•anandb71•9m ago•1 comments

How to tell if a photo is AI-generated from its metadata (C2PA, XMP, EXIF)

https://photoinvestigator.co/blog/how-to-tell-if-a-photo-is-ai-generated-metadata/
1•Danbana•10m ago•0 comments

macOS 28 will not support encrypted HFS+ volumes

https://support.apple.com/en-us/125615
5•Lihh27•13m ago•0 comments

Be Grateful to Own Nothing

https://mkultra.monster/gaming/2026/07/03/physical-shmysical/
1•speckx•13m ago•0 comments

Ask HN: Software Engineering Guide – seeking recommendations

1•jph•13m ago•0 comments

California Institute for Machine Consciousness – Research Program Whitepaper [pdf]

https://cimc.ai/cimcWhitepaper.pdf
1•helloplanets•16m ago•0 comments

Van Wijngaarden Grammar

https://en.wikipedia.org/wiki/Van_Wijngaarden_grammar
2•stevefan1999•16m ago•0 comments

In San Francisco, Some Home Sellers Now Ask for OpenAI or Anthropic Stock

https://www.nytimes.com/2026/07/08/technology/san-francisco-home-sales-openai-anthropic-ipo.html
2•reaperducer•17m ago•0 comments

Stell-R – trace musical influence paths via minimum spanning tree

https://stell-r.com/Stellar/index_/
1•ebagou•18m ago•1 comments

The CEO of AWS on why Amazon is hiring 11,000 interns and junior employees

https://www.platformer.news/matt-garman-aws-ceo-interview-ai-jobs/
1•maybiiLen•18m ago•0 comments

Show HN: Fluffy Sparrow – Frictionless, Fast, Note Taking App

https://tmahmood.github.io/fluffy_sparrow/
1•t_mahmood•18m ago•0 comments

Show HN: Visually orchestrate Claude Code agents

https://github.com/rondoflow/rondoflow
1•arzzen•19m ago•0 comments

GPT‑Live

https://openai.com/index/introducing-gpt-live/
61•logickkk1•21m ago•22 comments

EmTech AI 2026: The Rise of the AI Platform

https://www.technologyreview.com/2026/07/08/1140223/emtech-ai-2026-the-rise-of-the-ai-platform/
1•joozio•23m ago•0 comments

Hash Functions

http://www.cse.yorku.ca/~oz/hash.html
1•gregsadetsky•24m ago•0 comments

Show HN: Orbit – native Mac app for many Google accounts, isolated, no server

https://orbitformac.com/
1•andrew_kwak•24m ago•1 comments

Show HN: Pretend to Vibe Code, but Meditate

https://tomreinert.de/no-effort/
4•tom2948329494•26m ago•2 comments

Rage: Fiber-based Ruby web framework with Rails ergonomics and a unified runtime

https://github.com/rage-rb/rage
1•thunderbong•28m ago•0 comments

Why the tech industry can't keep up with the AI backlash

https://www.platformer.news/ai-backlash-data-centers-jobs-inflation/
2•speckx•29m ago•0 comments

GhostLock, a stack-UAF that has existed in ALL Linux distributions for 15 years

https://nebusec.ai/research/ionstack-part-2/
4•ranger_danger•30m ago•0 comments

EU now one step away from reviving private message scanning rules

https://cyberinsider.com/eu-now-one-step-away-from-reviving-private-message-scanning-rules/
9•ggirelli•31m ago•1 comments

The Pros and Cons of Cons

https://8dcc.github.io/programming/cons-of-cons.html
2•pbohun•32m ago•0 comments

Meta's glasses will turn off the camera if you tamper with the privacy light

https://www.theverge.com/gadgets/962514/meta-privacy-light-tampering-smart-glasses-update
3•Brajeshwar•32m 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!