├── chapter-11 └── rwd │ ├── img │ ├── hero.jpg │ ├── slideshow │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ └── sprites │ │ ├── left.png │ │ ├── right.png │ │ └── sprites.png │ ├── index-external.html │ ├── index-fixed.html │ ├── index.html │ ├── mobile.css │ ├── portrait.css │ └── print.css ├── chapter-4 ├── boomerang │ ├── boomerang.include.html │ ├── boomerang │ │ ├── boomerang.custom.min.js │ │ └── images │ │ │ ├── beacon.gif │ │ │ ├── image-0.png │ │ │ ├── image-1.png │ │ │ ├── image-2.png │ │ │ ├── image-3.png │ │ │ ├── image-4.png │ │ │ ├── image-5.png │ │ │ ├── image-6.png │ │ │ └── image-l.gif │ └── scripts │ │ ├── crontab.txt │ │ ├── run-captain.pl │ │ └── run-captain.sh ├── crp-grunt │ ├── Gruntfile.js │ ├── index-crp.html │ ├── index.html │ ├── magic.json │ ├── with │ │ ├── css │ │ │ ├── magic.css │ │ │ └── magic.min.css │ │ ├── img │ │ │ ├── slideshow │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ └── sprites │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── sprites.png │ │ ├── js │ │ │ ├── magic.js │ │ │ ├── magic.min.js │ │ │ └── slider │ │ │ │ ├── jquery.cycle.all.js │ │ │ │ └── jquery.easing.1.3.js │ │ └── magic.html │ └── without │ │ ├── css │ │ ├── 1.css │ │ ├── 2.css │ │ ├── 3.css │ │ ├── exclude │ │ │ └── datauri.css │ │ ├── main.css │ │ ├── sprites.css │ │ └── temp │ │ │ └── yeah.css │ │ ├── img │ │ ├── slideshow │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 3.jpg │ │ ├── sprites │ │ │ ├── .with │ │ │ │ └── css │ │ │ │ │ └── sprites.css │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── sprites.png │ │ └── unicorn.jpg │ │ ├── js │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── libs │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ └── slider │ │ │ ├── jquery.cycle.all.js │ │ │ └── jquery.easing.1.3.js │ │ └── magic.html ├── rum-bbinto.xlsx └── rum │ ├── accesslog-bbinto.bbinto.net-12-02-2014-16-16-24-0000 │ ├── b.sql │ └── run-captain.pl ├── chapter-5 ├── concat │ ├── .htaccess │ ├── 1.js │ ├── 2.js │ ├── 3.js │ ├── concat-conditional.html │ ├── concat-jquery.html │ ├── concat.html │ ├── concat.js │ ├── conditional-nope.html │ ├── conditional-yep.html │ ├── conditionizr.js │ ├── geo.js │ ├── jquery.min.js │ ├── minified.html │ ├── minified.js │ ├── modernizr.js │ ├── non-concat.html │ ├── non-minified.html │ └── not-minified.js └── minified │ ├── .htaccess │ ├── 1.min.js │ ├── 2.min.js │ ├── 3.min │ ├── 3.min.js │ ├── 4.min.js │ ├── 5.min.js │ ├── 6.min.js │ ├── concat-conditional.html │ ├── concat-jquery.html │ ├── concat.html │ ├── concat.js │ ├── concat.old.js │ ├── conditional-nope.html │ ├── conditional-yep.html │ ├── conditionizr.js │ ├── geo.js │ ├── jquery.min.js │ ├── minified.html │ ├── minified.js │ ├── modernizr.js │ ├── non-concat.html │ ├── non-minified.html │ └── not-minified.js ├── chapter-7 ├── data-uri │ ├── data-uri-external │ │ ├── css │ │ │ └── leanleaf.css │ │ └── index.html │ ├── data-uri-inline │ │ ├── css │ │ │ └── leafplain.css │ │ └── index.html │ ├── leaf-css.html │ ├── leaf-png.html │ ├── leaf.css │ ├── leaf.html │ ├── leaf.png │ ├── png-css │ │ ├── css │ │ │ └── leanleaf.css │ │ ├── img │ │ │ ├── gem-30.png │ │ │ ├── leaf.png │ │ │ └── leaf.webp │ │ └── index.html │ ├── svg │ │ ├── .htaccess │ │ ├── b.html │ │ ├── css │ │ │ └── leanleaf.css │ │ ├── img │ │ │ ├── beetle.svg │ │ │ ├── gem-30.svg │ │ │ └── leaf.svg │ │ └── index.html │ └── webp │ │ ├── css │ │ └── leanleaf.css │ │ ├── img │ │ ├── gem-30.png │ │ ├── gem-30.webp │ │ └── leaf.webp │ │ └── index.html └── queries │ ├── httparchive │ ├── all-3rd-party.spf │ ├── all-3rd-party.sql │ ├── comscore-cbc.sql │ ├── facebook-cbc.sql │ ├── googleapis-cbc.sql │ ├── jquery-cbc.sql │ └── jquery-yui-cbc.sql │ └── index.html ├── chapter-8 └── grunt │ ├── Gruntfile.js │ ├── README.md │ ├── magic.json │ ├── with │ ├── css │ │ ├── magic.css │ │ └── magic.min.css │ ├── img │ │ ├── slideshow │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 3.jpg │ │ └── sprites │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── sprites.png │ ├── js │ │ ├── magic.js │ │ ├── magic.min.js │ │ └── slider │ │ │ ├── jquery.cycle.all.js │ │ │ └── jquery.easing.1.3.js │ ├── magic-async.html │ └── magic.html │ └── without │ ├── .jshintrc │ ├── css │ ├── 1.css │ ├── 2.css │ ├── 3.css │ └── sprites.css │ ├── img │ ├── slideshow │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── sprites │ │ ├── left.png │ │ ├── right.png │ │ └── sprites.png │ └── unicorn.jpg │ ├── js │ ├── 1.js │ ├── 2.js │ ├── 3.js │ ├── 4.js │ ├── libs │ │ └── jquery │ │ │ └── jquery.js │ └── slider │ │ ├── jquery.cycle.all.js │ │ └── jquery.easing.1.3.js │ └── magic.html └── chapter-9 └── cache-headers-stale-jan2015.xlsx /chapter-11/rwd/img/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/img/hero.jpg -------------------------------------------------------------------------------- /chapter-11/rwd/img/slideshow/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/img/slideshow/1.jpg -------------------------------------------------------------------------------- /chapter-11/rwd/img/slideshow/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/img/slideshow/2.jpg -------------------------------------------------------------------------------- /chapter-11/rwd/img/slideshow/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/img/slideshow/3.jpg -------------------------------------------------------------------------------- /chapter-11/rwd/img/sprites/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/img/sprites/left.png -------------------------------------------------------------------------------- /chapter-11/rwd/img/sprites/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/img/sprites/right.png -------------------------------------------------------------------------------- /chapter-11/rwd/img/sprites/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/img/sprites/sprites.png -------------------------------------------------------------------------------- /chapter-11/rwd/index-external.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/index-external.html -------------------------------------------------------------------------------- /chapter-11/rwd/index-fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/index-fixed.html -------------------------------------------------------------------------------- /chapter-11/rwd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-11/rwd/index.html -------------------------------------------------------------------------------- /chapter-11/rwd/mobile.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | background-color: green; 4 | } -------------------------------------------------------------------------------- /chapter-11/rwd/portrait.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | background-color: yellow; 4 | } -------------------------------------------------------------------------------- /chapter-11/rwd/print.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | background-color: white; 4 | } -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang.include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang.include.html -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/boomerang.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/boomerang.custom.min.js -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/beacon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/beacon.gif -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-0.png -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-1.png -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-2.png -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-3.png -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-4.png -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-5.png -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-6.png -------------------------------------------------------------------------------- /chapter-4/boomerang/boomerang/images/image-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/boomerang/images/image-l.gif -------------------------------------------------------------------------------- /chapter-4/boomerang/scripts/crontab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/scripts/crontab.txt -------------------------------------------------------------------------------- /chapter-4/boomerang/scripts/run-captain.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/scripts/run-captain.pl -------------------------------------------------------------------------------- /chapter-4/boomerang/scripts/run-captain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/boomerang/scripts/run-captain.sh -------------------------------------------------------------------------------- /chapter-4/crp-grunt/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/Gruntfile.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/index-crp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/index-crp.html -------------------------------------------------------------------------------- /chapter-4/crp-grunt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/index.html -------------------------------------------------------------------------------- /chapter-4/crp-grunt/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/magic.json -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/css/magic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/css/magic.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/css/magic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/css/magic.min.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/img/slideshow/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/img/slideshow/1.jpg -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/img/slideshow/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/img/slideshow/2.jpg -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/img/slideshow/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/img/slideshow/3.jpg -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/img/sprites/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/img/sprites/left.png -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/img/sprites/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/img/sprites/right.png -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/img/sprites/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/img/sprites/sprites.png -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/js/magic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/js/magic.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/js/magic.min.js: -------------------------------------------------------------------------------- 1 | /*! Magic Perf with Grunt - v0.0.1 - 2015-01-23*/ 2 | function bb(){} -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/js/slider/jquery.cycle.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/js/slider/jquery.cycle.all.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/js/slider/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/js/slider/jquery.easing.1.3.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/with/magic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/with/magic.html -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/css/1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/css/1.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/css/2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/css/2.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/css/3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/css/3.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/css/exclude/datauri.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/css/exclude/datauri.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/css/main.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/css/sprites.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/css/sprites.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/css/temp/yeah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/css/temp/yeah.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/slideshow/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/slideshow/1.jpg -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/slideshow/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/slideshow/2.jpg -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/slideshow/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/slideshow/3.jpg -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/sprites/.with/css/sprites.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/sprites/.with/css/sprites.css -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/sprites/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/sprites/left.png -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/sprites/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/sprites/right.png -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/sprites/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/sprites/sprites.png -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/img/unicorn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/img/unicorn.jpg -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/js/1.js: -------------------------------------------------------------------------------- 1 | 2 | function bb() { 3 | 4 | //hello 5 | } -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/js/2.js: -------------------------------------------------------------------------------- 1 | // 2.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/js/3.js: -------------------------------------------------------------------------------- 1 | // 3.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/js/4.js: -------------------------------------------------------------------------------- 1 | // 4.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/js/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/js/libs/jquery/jquery.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/js/slider/jquery.cycle.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/js/slider/jquery.cycle.all.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/js/slider/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/js/slider/jquery.easing.1.3.js -------------------------------------------------------------------------------- /chapter-4/crp-grunt/without/magic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/crp-grunt/without/magic.html -------------------------------------------------------------------------------- /chapter-4/rum-bbinto.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/rum-bbinto.xlsx -------------------------------------------------------------------------------- /chapter-4/rum/accesslog-bbinto.bbinto.net-12-02-2014-16-16-24-0000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/rum/accesslog-bbinto.bbinto.net-12-02-2014-16-16-24-0000 -------------------------------------------------------------------------------- /chapter-4/rum/b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/rum/b.sql -------------------------------------------------------------------------------- /chapter-4/rum/run-captain.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-4/rum/run-captain.pl -------------------------------------------------------------------------------- /chapter-5/concat/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/.htaccess -------------------------------------------------------------------------------- /chapter-5/concat/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/1.js -------------------------------------------------------------------------------- /chapter-5/concat/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/2.js -------------------------------------------------------------------------------- /chapter-5/concat/3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/3.js -------------------------------------------------------------------------------- /chapter-5/concat/concat-conditional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/concat-conditional.html -------------------------------------------------------------------------------- /chapter-5/concat/concat-jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/concat-jquery.html -------------------------------------------------------------------------------- /chapter-5/concat/concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/concat.html -------------------------------------------------------------------------------- /chapter-5/concat/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/concat.js -------------------------------------------------------------------------------- /chapter-5/concat/conditional-nope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/conditional-nope.html -------------------------------------------------------------------------------- /chapter-5/concat/conditional-yep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/conditional-yep.html -------------------------------------------------------------------------------- /chapter-5/concat/conditionizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/conditionizr.js -------------------------------------------------------------------------------- /chapter-5/concat/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/geo.js -------------------------------------------------------------------------------- /chapter-5/concat/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/jquery.min.js -------------------------------------------------------------------------------- /chapter-5/concat/minified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/minified.html -------------------------------------------------------------------------------- /chapter-5/concat/minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/minified.js -------------------------------------------------------------------------------- /chapter-5/concat/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/modernizr.js -------------------------------------------------------------------------------- /chapter-5/concat/non-concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/non-concat.html -------------------------------------------------------------------------------- /chapter-5/concat/non-minified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/non-minified.html -------------------------------------------------------------------------------- /chapter-5/concat/not-minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/concat/not-minified.js -------------------------------------------------------------------------------- /chapter-5/minified/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/.htaccess -------------------------------------------------------------------------------- /chapter-5/minified/1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/1.min.js -------------------------------------------------------------------------------- /chapter-5/minified/2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/2.min.js -------------------------------------------------------------------------------- /chapter-5/minified/3.min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/3.min -------------------------------------------------------------------------------- /chapter-5/minified/3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/3.min.js -------------------------------------------------------------------------------- /chapter-5/minified/4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/4.min.js -------------------------------------------------------------------------------- /chapter-5/minified/5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/5.min.js -------------------------------------------------------------------------------- /chapter-5/minified/6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/6.min.js -------------------------------------------------------------------------------- /chapter-5/minified/concat-conditional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/concat-conditional.html -------------------------------------------------------------------------------- /chapter-5/minified/concat-jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/concat-jquery.html -------------------------------------------------------------------------------- /chapter-5/minified/concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/concat.html -------------------------------------------------------------------------------- /chapter-5/minified/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/concat.js -------------------------------------------------------------------------------- /chapter-5/minified/concat.old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/concat.old.js -------------------------------------------------------------------------------- /chapter-5/minified/conditional-nope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/conditional-nope.html -------------------------------------------------------------------------------- /chapter-5/minified/conditional-yep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/conditional-yep.html -------------------------------------------------------------------------------- /chapter-5/minified/conditionizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/conditionizr.js -------------------------------------------------------------------------------- /chapter-5/minified/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/geo.js -------------------------------------------------------------------------------- /chapter-5/minified/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/jquery.min.js -------------------------------------------------------------------------------- /chapter-5/minified/minified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/minified.html -------------------------------------------------------------------------------- /chapter-5/minified/minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/minified.js -------------------------------------------------------------------------------- /chapter-5/minified/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/modernizr.js -------------------------------------------------------------------------------- /chapter-5/minified/non-concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/non-concat.html -------------------------------------------------------------------------------- /chapter-5/minified/non-minified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/non-minified.html -------------------------------------------------------------------------------- /chapter-5/minified/not-minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-5/minified/not-minified.js -------------------------------------------------------------------------------- /chapter-7/data-uri/data-uri-external/css/leanleaf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/data-uri-external/css/leanleaf.css -------------------------------------------------------------------------------- /chapter-7/data-uri/data-uri-external/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/data-uri-external/index.html -------------------------------------------------------------------------------- /chapter-7/data-uri/data-uri-inline/css/leafplain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/data-uri-inline/css/leafplain.css -------------------------------------------------------------------------------- /chapter-7/data-uri/data-uri-inline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/data-uri-inline/index.html -------------------------------------------------------------------------------- /chapter-7/data-uri/leaf-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/leaf-css.html -------------------------------------------------------------------------------- /chapter-7/data-uri/leaf-png.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/leaf-png.html -------------------------------------------------------------------------------- /chapter-7/data-uri/leaf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/leaf.css -------------------------------------------------------------------------------- /chapter-7/data-uri/leaf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/leaf.html -------------------------------------------------------------------------------- /chapter-7/data-uri/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/leaf.png -------------------------------------------------------------------------------- /chapter-7/data-uri/png-css/css/leanleaf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/png-css/css/leanleaf.css -------------------------------------------------------------------------------- /chapter-7/data-uri/png-css/img/gem-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/png-css/img/gem-30.png -------------------------------------------------------------------------------- /chapter-7/data-uri/png-css/img/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/png-css/img/leaf.png -------------------------------------------------------------------------------- /chapter-7/data-uri/png-css/img/leaf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/png-css/img/leaf.webp -------------------------------------------------------------------------------- /chapter-7/data-uri/png-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/png-css/index.html -------------------------------------------------------------------------------- /chapter-7/data-uri/svg/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/svg/.htaccess -------------------------------------------------------------------------------- /chapter-7/data-uri/svg/b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/svg/b.html -------------------------------------------------------------------------------- /chapter-7/data-uri/svg/css/leanleaf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/svg/css/leanleaf.css -------------------------------------------------------------------------------- /chapter-7/data-uri/svg/img/beetle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/svg/img/beetle.svg -------------------------------------------------------------------------------- /chapter-7/data-uri/svg/img/gem-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/svg/img/gem-30.svg -------------------------------------------------------------------------------- /chapter-7/data-uri/svg/img/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/svg/img/leaf.svg -------------------------------------------------------------------------------- /chapter-7/data-uri/svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/svg/index.html -------------------------------------------------------------------------------- /chapter-7/data-uri/webp/css/leanleaf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/webp/css/leanleaf.css -------------------------------------------------------------------------------- /chapter-7/data-uri/webp/img/gem-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/webp/img/gem-30.png -------------------------------------------------------------------------------- /chapter-7/data-uri/webp/img/gem-30.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/webp/img/gem-30.webp -------------------------------------------------------------------------------- /chapter-7/data-uri/webp/img/leaf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/webp/img/leaf.webp -------------------------------------------------------------------------------- /chapter-7/data-uri/webp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/data-uri/webp/index.html -------------------------------------------------------------------------------- /chapter-7/queries/httparchive/all-3rd-party.spf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/httparchive/all-3rd-party.spf -------------------------------------------------------------------------------- /chapter-7/queries/httparchive/all-3rd-party.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/httparchive/all-3rd-party.sql -------------------------------------------------------------------------------- /chapter-7/queries/httparchive/comscore-cbc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/httparchive/comscore-cbc.sql -------------------------------------------------------------------------------- /chapter-7/queries/httparchive/facebook-cbc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/httparchive/facebook-cbc.sql -------------------------------------------------------------------------------- /chapter-7/queries/httparchive/googleapis-cbc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/httparchive/googleapis-cbc.sql -------------------------------------------------------------------------------- /chapter-7/queries/httparchive/jquery-cbc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/httparchive/jquery-cbc.sql -------------------------------------------------------------------------------- /chapter-7/queries/httparchive/jquery-yui-cbc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/httparchive/jquery-yui-cbc.sql -------------------------------------------------------------------------------- /chapter-7/queries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-7/queries/index.html -------------------------------------------------------------------------------- /chapter-8/grunt/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/Gruntfile.js -------------------------------------------------------------------------------- /chapter-8/grunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/README.md -------------------------------------------------------------------------------- /chapter-8/grunt/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/magic.json -------------------------------------------------------------------------------- /chapter-8/grunt/with/css/magic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/css/magic.css -------------------------------------------------------------------------------- /chapter-8/grunt/with/css/magic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/css/magic.min.css -------------------------------------------------------------------------------- /chapter-8/grunt/with/img/slideshow/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/img/slideshow/1.jpg -------------------------------------------------------------------------------- /chapter-8/grunt/with/img/slideshow/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/img/slideshow/2.jpg -------------------------------------------------------------------------------- /chapter-8/grunt/with/img/slideshow/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/img/slideshow/3.jpg -------------------------------------------------------------------------------- /chapter-8/grunt/with/img/sprites/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/img/sprites/left.png -------------------------------------------------------------------------------- /chapter-8/grunt/with/img/sprites/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/img/sprites/right.png -------------------------------------------------------------------------------- /chapter-8/grunt/with/img/sprites/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/img/sprites/sprites.png -------------------------------------------------------------------------------- /chapter-8/grunt/with/js/magic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/js/magic.js -------------------------------------------------------------------------------- /chapter-8/grunt/with/js/magic.min.js: -------------------------------------------------------------------------------- 1 | /*! Magic Perf with Grunt - v0.0.1 - 2014-11-08*/ 2 | function bb(){} -------------------------------------------------------------------------------- /chapter-8/grunt/with/js/slider/jquery.cycle.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/js/slider/jquery.cycle.all.js -------------------------------------------------------------------------------- /chapter-8/grunt/with/js/slider/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/js/slider/jquery.easing.1.3.js -------------------------------------------------------------------------------- /chapter-8/grunt/with/magic-async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/magic-async.html -------------------------------------------------------------------------------- /chapter-8/grunt/with/magic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/with/magic.html -------------------------------------------------------------------------------- /chapter-8/grunt/without/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/.jshintrc -------------------------------------------------------------------------------- /chapter-8/grunt/without/css/1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/css/1.css -------------------------------------------------------------------------------- /chapter-8/grunt/without/css/2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/css/2.css -------------------------------------------------------------------------------- /chapter-8/grunt/without/css/3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/css/3.css -------------------------------------------------------------------------------- /chapter-8/grunt/without/css/sprites.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/css/sprites.css -------------------------------------------------------------------------------- /chapter-8/grunt/without/img/slideshow/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/img/slideshow/1.jpg -------------------------------------------------------------------------------- /chapter-8/grunt/without/img/slideshow/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/img/slideshow/2.jpg -------------------------------------------------------------------------------- /chapter-8/grunt/without/img/slideshow/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/img/slideshow/3.jpg -------------------------------------------------------------------------------- /chapter-8/grunt/without/img/sprites/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/img/sprites/left.png -------------------------------------------------------------------------------- /chapter-8/grunt/without/img/sprites/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/img/sprites/right.png -------------------------------------------------------------------------------- /chapter-8/grunt/without/img/sprites/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/img/sprites/sprites.png -------------------------------------------------------------------------------- /chapter-8/grunt/without/img/unicorn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/img/unicorn.jpg -------------------------------------------------------------------------------- /chapter-8/grunt/without/js/1.js: -------------------------------------------------------------------------------- 1 | 2 | function bb() { 3 | 4 | //hello 5 | } -------------------------------------------------------------------------------- /chapter-8/grunt/without/js/2.js: -------------------------------------------------------------------------------- 1 | // 2.js -------------------------------------------------------------------------------- /chapter-8/grunt/without/js/3.js: -------------------------------------------------------------------------------- 1 | // 3.js -------------------------------------------------------------------------------- /chapter-8/grunt/without/js/4.js: -------------------------------------------------------------------------------- 1 | // 4.js -------------------------------------------------------------------------------- /chapter-8/grunt/without/js/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/js/libs/jquery/jquery.js -------------------------------------------------------------------------------- /chapter-8/grunt/without/js/slider/jquery.cycle.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/js/slider/jquery.cycle.all.js -------------------------------------------------------------------------------- /chapter-8/grunt/without/js/slider/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/js/slider/jquery.easing.1.3.js -------------------------------------------------------------------------------- /chapter-8/grunt/without/magic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-8/grunt/without/magic.html -------------------------------------------------------------------------------- /chapter-9/cache-headers-stale-jan2015.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/webperf1/HEAD/chapter-9/cache-headers-stale-jan2015.xlsx --------------------------------------------------------------------------------