frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Relay – open-source coding agent for non-mainstream/Chinese LLM providers

https://github.com/LeventeNagy/relay-coding-agent
1•levyathan•2m ago•0 comments

1.08M cannabis users data leaked in PuffPal disclosure

https://github.com/xn0tsa/because-i-got-high
2•happyopossum•4m ago•0 comments

I built an AI Chrome extension with $0 infrastructure cost – BYOK architecture

https://chromewebstore.google.com/detail/pr-focus-ai-pro/ememaiabefeojkccjclglcmbjmdpnaoe
1•alexiglesias•5m ago•0 comments

Show HN: The Copyright Puppet Show

1•attogram•5m ago•0 comments

Frontier AI Is Being Enclosed and Labs and Washington Are Both Holding the Fence

https://aidatumpoint.substack.com/p/frontier-ai-is-being-enclosed-and
1•MadCatBureau•6m ago•0 comments

Prosecutors used ChatGPT logs in a wildfire trial; jury split 10-2 for defense

https://www.theverge.com/ai-artificial-intelligence/958751/prosecutors-chatgpt-palisades-wildfire...
2•Lihh27•9m ago•0 comments

JetBlue flight hits drone while landing at JFK: Officials

https://abcnews.com/US/jetblue-flight-hits-drone-landing-jfk-officials/story?id=134313280
2•jaredwiener•12m ago•0 comments

Build from Anywhere with Cursor for iOS

https://cursor.com/blog/ios-mobile-app
1•meetpateltech•13m ago•0 comments

The middle-class home was always a historical accident

https://fortune.com/2026/06/29/harvard-housing-report-middle-class-homeownership-historical-accid...
1•lorecore•13m ago•1 comments

Show HN: Rust / Red Alert inspired WASM game in the browser (open source)

https://punnerud.github.io/mpe-ra/
2•punnerud•13m ago•0 comments

An impossible first task at Google

https://sparr.substack.com/p/an-impossible-first-task-at-google
4•denysvitali•14m ago•0 comments

Homemade Transistor from Cadmium Sulfide Photocell (2009)

http://sparkbangbuzz.com/cds-fet/cds-fet.htm
1•thenthenthen•14m ago•1 comments

Meta uses CXL to reuse old DDR4 and cut some inference fleets by 25%

https://www.theregister.com/systems/2026/06/29/zuck-saves-meta-bucks-by-reusing-memory-from-old-s...
2•p_stuart82•15m ago•0 comments

We've uncovered a master gene that switches on human development

https://www.newscientist.com/article/2531950-weve-uncovered-a-master-gene-that-switches-on-human-...
2•01-_-•15m ago•0 comments

Samsung, SK Hynix and Micron Are Being Sued for "Fixing"

https://www.thegamer.com/samsung-sk-hynix-micron-sued-ram-crisis/
2•01-_-•16m ago•0 comments

Metasearch Tooling for Agents

5•chambertime•16m ago•1 comments

China's Z.ai claims it can match Mythos on cybersecurity

https://www.theverge.com/ai-artificial-intelligence/958804/chinas-z-ai-glm-52-mythos-cybersecurity
2•Brajeshwar•19m ago•0 comments

What LLMs are doing to conference programs

https://di.nmfay.com/llms-conference-programs
2•speckx•20m ago•0 comments

Android's earthquake warning system alerted 11 Million people in Venezuela

https://www.techradar.com/phones/android/google-says-androids-built-in-earthquake-warning-system-...
4•ck2•20m ago•1 comments

Show HN: MCP-compress-router – MCP Compressor

https://github.com/ameshkov/mcp-compress-router
1•ameshkov•21m ago•0 comments

Show HN: Create and Maintain Filesystem Structures for LLMs [v1.0.13 Out]

https://pypi.org/project/seed-cli/
1•hunterx•22m ago•0 comments

Amazon Is Awash with AI-Written Guideslop for Games That Aren't Even Out

https://kotaku.com/amazon-ai-game-guidebooks-alien-isolation-gears-of-war-2000711365
4•logickkk1•22m ago•1 comments

AI loops: who pays for the tokens?

https://www.jackfranklin.co.uk/blog/claude-code-ai-feedback-skill/
1•jackfranklin•22m ago•0 comments

11tyx5: Five Whitestone Foundation Sites, Eleventy, and the Long Open Web

https://www.adamdjbrett.com/blog/11tyx5-five-sites-long-web/
1•evolve2k•26m ago•0 comments

Is aerc better than neomutt now?

2•hardikxk•26m ago•0 comments

Dbrand cancels Companion Cube because it didn't ask Valve for permission

https://www.theverge.com/games/959056/dbrand-steam-machine-companion-cube-valve-take-down-canceled
2•minimaxir•27m ago•1 comments

Obfuscation: Building the final boss of cryptography (Part I)

https://vitalik.eth.limo/general/2026/06/29/obfuscation1.html
2•fbrusch•27m ago•0 comments

The Truth about Space Data Centers (IEEE Spectrum Magazine)

https://www.youtube.com/watch?v=_qpdUNMt2yg
1•mudil•28m ago•0 comments

Floating Point: The Origin Story

https://thechipletter.substack.com/p/floating-point-the-origin-story
1•rbanffy•28m ago•0 comments

South Korea announces more than $1T AI, chip investment drive

https://www.aljazeera.com/news/2026/6/29/south-korea-announces-more-than-1-trillion-ai-chip-inves...
3•mgh2•30m 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!