Decompressing a gzip file by hand (sorta), part 2: Now with Huffman
by divyenduz on 12/11/2023, 10:33:50 AM
Oh nice, I did something similar recently (https://github.com/divyenduz/zoid-zip), mine is much lighter/smaller than yours. Instead of following a standard fully, I just use Huffman coding to make stuff smaller!
by dang on 12/11/2023, 7:01:41 AM
Related:
Decompressing a Gzip File by Hand - https://news.ycombinator.com/item?id=29336271 - Nov 2021 (18 comments)
Oh nice, I did something similar recently (https://github.com/divyenduz/zoid-zip), mine is much lighter/smaller than yours. Instead of following a standard fully, I just use Huffman coding to make stuff smaller!