2 Repos
Reassembling original files by concatenating sequential encoded blocks.
Distinct from Binary File Reconstructions: Specifically handles the reconstruction of files from a sequence of encoded text chunks.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · Chunk Concatenation. Refine with filters or upvote what's useful.
uds is a binary-to-text storage utility and cloud document storage manager. It converts binary files into encoded text chunks to facilitate storage and retrieval within cloud document platforms, specifically to bypass storage quotas in services like Google Drive. The system utilizes base64 encoding and chunk-based splitting to divide large binary files into smaller segments that fit within the character limits of individual cloud documents. It reassembles these original files through sequential block reconstruction. The project covers cloud file management, including the ability to list, sea
Reassembles original binary files by fetching and concatenating encoded text chunks in their original order.
The project defines an open protocol specification for reliable, chunked, and resumable file transmission over standard HTTP infrastructure. It standardizes client-to-server file transfers across networks, enabling interrupted uploads to resume seamlessly without data loss or retransmitting completed chunks. The protocol manages file upload lifecycles through resource-based session initialization, offset-based byte range tracking, and cryptographic checksum verification to validate incoming data blocks. Additional capabilities include parallel chunk concatenation for joining multiple partial
Joins multiple separate partial uploads into a single final file on the server to support concurrent transmission and non-contiguous transfers.