frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Biomimetic reconstruction of butterfly wing nanostructures for radiative cooling

https://pubs.rsc.org/nh/article-abstract/7/9/1054/773493/Biomimetic-reconstruction-of-butterfly-w...
1•soupspaces•2m ago•0 comments

A simplified robotics framework for non robotics devs

https://docs.peppy.bot/quickstart/
1•Ekami•3m ago•0 comments

Git Push No-Mistakes

https://github.com/kunchenguid/no-mistakes
1•handfuloflight•7m ago•1 comments

TikTok to pay $400M to US in one of largest child privacy settlements

https://www.bbc.com/news/articles/cwyr0l45xjro
1•geox•13m ago•0 comments

Bodycam – This Is What a Gunshot Sounds Like – Devlog [video]

https://www.youtube.com/watch?v=Oz66Ek1RYWU
1•twalichiewicz•14m ago•1 comments

South Korea's Child-Hating Society Locks Playgrounds, Silences Children

https://www.chosun.com/english/national-en/2026/08/22/I7XTKBQNYFBXHJRSIZV7XMT45Q/
1•theletterf•14m ago•0 comments

Tech Openings in the Bay Area and New York: What Our August Data Shows

https://corvi.careers/blog/did-nyc-pass-sf-bay-area-tech-openings/
1•sp1982•15m ago•0 comments

Show HN: PgExtAssure – pre-admission security evidence for PostgreSQL extensions

https://github.com/borborich/pgextassure
2•borborich•17m ago•0 comments

Ask HN: Why does the US government search through people's phones at the border?

4•roschdal•19m ago•1 comments

Grid Data Explorer

https://open-energy-transition.github.io/Awesome-Electrical-Grid-Mapping/
1•ly0n•19m ago•0 comments

Gickup

https://github.com/cooperspencer/gickup
1•Tomte•19m ago•0 comments

Show HN: MiniMax H3 on a 16GB Mac, 5 days after open weights

https://github.com/tgo-app-dev/vpipe
1•t-go•24m ago•0 comments

Building a Quantum Computer, One Fragile Qubit at a Time

https://www.quantamagazine.org/building-a-quantum-computer-one-fragile-qubit-at-a-time-20260819/
2•pykello•24m ago•0 comments

Show HN: I just want to show this song to you [video]

https://www.youtube.com/shorts/D_oFnclpt0w
1•modinfo•24m ago•0 comments

Say it once: introducing Bot Preference Sync

https://blog.cloudflare.com/bot-preference-sync/
1•barlog•34m ago•0 comments

SmartGo One 3.0

https://smartgo.blog/2026/05/21/smartgo-one-three/
1•Tomte•35m ago•0 comments

The Slide

https://randsinrepose.com/archives/the-slide/
1•fagnerbrack•40m ago•0 comments

Mac is slowing you down

https://twitter.com/theo/status/2090528543746965991
1•tosh•40m ago•0 comments

There's too much memory in that place

https://www.theglobeandmail.com/canada/article-dark-legacy-ontario-institutions-rideau-regional-c...
2•bryanrasmussen•43m ago•1 comments

Show HN: I reverse-engineered Bambu's 3MF color format so GLB keeps the colors

https://github.com/SamiSalah221/3mf-to-glb
2•SamiSalah221•44m ago•1 comments

Show HN: Reachpad MCP – Share fullstack applications using MCP/CLI in minutes

https://github.com/Reachpad/reachpad-mcp
2•sakuraiben•44m ago•0 comments

Waymo doubles spending on lobbying in robotaxi battle with Uber

https://arstechnica.com/cars/2026/08/waymo-doubles-spending-on-lobbying-in-robotaxi-battle-with-u...
3•joozio•44m ago•0 comments

Radar, deterministic code search/navigation

https://radar.sanixdk.xyz/
1•sanix-darker•49m ago•1 comments

Noctua – A privacy-first Oura Ring SDK with on-device ML, no cloud

https://github.com/RanjithRagavan/Noctua
1•RanjithKumarRag•49m ago•0 comments

Show HN: Snoreman – A Snore Detection App

https://snoreman.com/
1•timqian•49m ago•0 comments

Would a Hiroshima-scale AI disaster make humanity protect itself? I fear not

https://www.theguardian.com/commentisfree/2026/aug/22/ai-disaster-hiroshima-humankind-silicon-val...
3•mellosouls•59m ago•0 comments

Setoku: Self-hosted MCP knowledge server for company data

https://setoku.com/
2•handfuloflight•1h ago•0 comments

Linus Torvalds Endures a Debug Session from Hell, "Enormously Helped" by AI

https://www.phoronix.com/news/Linus-Torvalds-Debug-AI
1•01-_-•1h ago•0 comments

Silicon Valley is losing its way

https://twitter.com/koopuluri/status/2091050880716226787
2•koopuluri•1h ago•0 comments

New U.S. tariffs in effect after trade talks fail

https://www.cbc.ca/news/world/livestory/midnight-deadline-trump-tariffs-trade-deal-leblanc-greer-...
3•Pxtl•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!