Skip to content

Instantly share code, notes, and snippets.

@igrigorik
Last active December 4, 2015 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igrigorik/948482ec4ced106e2c2e to your computer and use it in GitHub Desktop.
Save igrigorik/948482ec4ced106e2c2e to your computer and use it in GitHub Desktop.
$> ls -al index.html
-rw-r--r-- 1 igrigorik 5000 21854 Dec 3 14:57 index.html
$> curl -vv --compressed http://w3c.github.io/preload/
* Trying 199.27.79.133...
* Connected to w3c.github.io (199.27.79.133) port 80 (#0)
> GET /preload/ HTTP/1.1
> Host: w3c.github.io
> User-Agent: curl/7.43.0
> Accept: */*
> Accept-Encoding: deflate, gzip
>
< HTTP/1.1 200 OK
< Content-Length: 7641
< ...
$> gzip -2 index.html
-rw-r--r-- 1 igrigorik 5000 7644 Dec 3 14:56 index.html.gz
$ > gzip -9 index.html
-rw-r--r-- 1 igrigorik 5000 6853 Dec 3 14:56 gh.gz
  • Original size: 21854 bytes on disk
  • Compressed size, as served by GH Pages: 7641 bytes
  • Closest match is gzip -2 -- interesting.

Default level is 6. Best compression is 9.

@jyrkialakuijala
Copy link

Zopfli on the same file:
-rw-rw-r-- 1 jyrki jyrki 6596 Dez 4 21:00 index.html.zopfli.gz

Brotli:
-rw-rw-r-- 1 jyrki jyrki 7184 Dez 4 21:07 index.html.q1.br
-rw-rw-r-- 1 jyrki jyrki 7149 Dez 4 21:07 index.html.q2.br
-rw-rw-r-- 1 jyrki jyrki 7109 Dez 4 21:07 index.html.q3.br
-rw-rw-r-- 1 jyrki jyrki 6832 Dez 4 21:07 index.html.q4.br
-rw-rw-r-- 1 jyrki jyrki 6381 Dez 4 21:07 index.html.q5.br
-rw-rw-r-- 1 jyrki jyrki 6362 Dez 4 21:07 index.html.q6.br
-rw-rw-r-- 1 jyrki jyrki 6363 Dez 4 21:07 index.html.q7.br
-rw-rw-r-- 1 jyrki jyrki 6364 Dez 4 21:07 index.html.q8.br
-rw-rw-r-- 1 jyrki jyrki 6359 Dez 4 21:07 index.html.q9.br
-rw-rw-r-- 1 jyrki jyrki 5556 Dez 4 21:07 index.html.q11.br

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment