OffNet Newsroom

Daily topic roundup

Trending on GitHub

Sunday, August 09, 2026 · 2 stories, curated & summarized — click any story for the source.

GitHub Trending (daily) githubrepos ⚠ unverified date/source

Open Source Repository Aggregates Chinese K-12 and University Textbooks

The TapXWorld/ChinaTextbook repository consolidates PDF versions of primary, secondary, and university-level textbooks, with a specific focus on mathematics. The project aims to democratize access to educational materials and support overseas Chinese families by providing free, centralized resources. Due to GitHub's file size limits, larger PDFs are split into smaller chunks, requiring users to merge them using a provided utility.

  • Aggregates K-12 and university math textbooks in PDF format for free access.
  • Addresses GitHub's 100MB limit by splitting large files into 35MB chunks.
  • Provides a Windows executable utility to merge split PDF files automatically.
  • Targets domestic accessibility and overseas Chinese education continuity.
  • No database or cloud infrastructure impact for engineering teams.
GitHub Trending (daily) githubrepos ↺ since 08-06 ⚠ unverified date/source

Deno's celld: Self-hosted Distributed Durable Objects with SQLite and S3

celld is an open-source daemon that enables self-hosted execution of Cloudflare Workers and Durable Objects. It treats each durable object as an independent SQLite database, coordinating state across nodes via a shared S3-compatible bucket without requiring a control plane or consensus protocol. This architecture naturally shards data, eliminating the contention and blast-radius risks associated with shared database instances.

  • Each Durable Object is an isolated SQLite DB, removing shared contention and blast-radius risks.
  • Nodes coordinate solely through an S3-compatible bucket, avoiding complex consensus or control planes.
  • Embeds V8 to execute Wrangler bundles, allowing Cloudflare Workers logic to run on your own infrastructure.
  • Idle cells hibernate to near-zero resource usage, optimizing cost for sporadic workloads.
TRADE-OFFCelld Architecture ChoicesShared Database ModelHigh contention risksLarge blast radiusComplex consensus requiredCelld Distributed ModelIsolated SQLite instancesS3-based coordination onlyNo control plane neededvs