├── .editorconfig ├── .gitignore ├── .ruby-version ├── .travis.yml ├── CNAME ├── Gemfile ├── Gemfile.lock ├── Gruntfile.js ├── LICENSE ├── README.md ├── _config.build.yml ├── _config.yml ├── deploy-ghpages.sh ├── package.json └── site ├── _includes ├── footer.html ├── github.html ├── header.html ├── meta.html ├── nav.html ├── scripts.html └── share.html ├── _js └── main.js ├── _layouts └── default.html ├── _less ├── base │ ├── common.less │ └── variables.less ├── components │ └── typography.less ├── core.less ├── lib │ └── reset.less └── partials │ ├── content.less │ ├── footer.less │ ├── github.less │ ├── header.less │ ├── nav.less │ └── share.less ├── ch01.md ├── ch02.md ├── ch03.md ├── ch04.md ├── ch05.md ├── ch06.md ├── ch07.md ├── ch08.md ├── ch09.md ├── ch10.md ├── ch11.md ├── ch12.md ├── ch13.md ├── ch14.md ├── ch15.md ├── ch16.md ├── ch17.md ├── ch18.md ├── ch19.md ├── ch20.md ├── ch21.md ├── ch22.md ├── ch23.md ├── ch24.md ├── ch25.md ├── ch26.md ├── ch27.md ├── ch28.md ├── ch29.md ├── ch30.md ├── images ├── cwa_logo.png ├── eff_logo.png ├── facebook.png ├── favicon.ico ├── fftf_logo.png ├── google.png ├── share.png └── twitter.png ├── index.md └── preamble.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.readthetpp.com 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/README.md -------------------------------------------------------------------------------- /_config.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/_config.build.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/_config.yml -------------------------------------------------------------------------------- /deploy-ghpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/deploy-ghpages.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/package.json -------------------------------------------------------------------------------- /site/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_includes/footer.html -------------------------------------------------------------------------------- /site/_includes/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_includes/github.html -------------------------------------------------------------------------------- /site/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_includes/header.html -------------------------------------------------------------------------------- /site/_includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_includes/meta.html -------------------------------------------------------------------------------- /site/_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_includes/nav.html -------------------------------------------------------------------------------- /site/_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_includes/scripts.html -------------------------------------------------------------------------------- /site/_includes/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_includes/share.html -------------------------------------------------------------------------------- /site/_js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_js/main.js -------------------------------------------------------------------------------- /site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_layouts/default.html -------------------------------------------------------------------------------- /site/_less/base/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/base/common.less -------------------------------------------------------------------------------- /site/_less/base/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/base/variables.less -------------------------------------------------------------------------------- /site/_less/components/typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/components/typography.less -------------------------------------------------------------------------------- /site/_less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/core.less -------------------------------------------------------------------------------- /site/_less/lib/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/lib/reset.less -------------------------------------------------------------------------------- /site/_less/partials/content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/partials/content.less -------------------------------------------------------------------------------- /site/_less/partials/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/partials/footer.less -------------------------------------------------------------------------------- /site/_less/partials/github.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/partials/github.less -------------------------------------------------------------------------------- /site/_less/partials/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/partials/header.less -------------------------------------------------------------------------------- /site/_less/partials/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/partials/nav.less -------------------------------------------------------------------------------- /site/_less/partials/share.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/_less/partials/share.less -------------------------------------------------------------------------------- /site/ch01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch01.md -------------------------------------------------------------------------------- /site/ch02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch02.md -------------------------------------------------------------------------------- /site/ch03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch03.md -------------------------------------------------------------------------------- /site/ch04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch04.md -------------------------------------------------------------------------------- /site/ch05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch05.md -------------------------------------------------------------------------------- /site/ch06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch06.md -------------------------------------------------------------------------------- /site/ch07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch07.md -------------------------------------------------------------------------------- /site/ch08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch08.md -------------------------------------------------------------------------------- /site/ch09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch09.md -------------------------------------------------------------------------------- /site/ch10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch10.md -------------------------------------------------------------------------------- /site/ch11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch11.md -------------------------------------------------------------------------------- /site/ch12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch12.md -------------------------------------------------------------------------------- /site/ch13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch13.md -------------------------------------------------------------------------------- /site/ch14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch14.md -------------------------------------------------------------------------------- /site/ch15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch15.md -------------------------------------------------------------------------------- /site/ch16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch16.md -------------------------------------------------------------------------------- /site/ch17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch17.md -------------------------------------------------------------------------------- /site/ch18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch18.md -------------------------------------------------------------------------------- /site/ch19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch19.md -------------------------------------------------------------------------------- /site/ch20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch20.md -------------------------------------------------------------------------------- /site/ch21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch21.md -------------------------------------------------------------------------------- /site/ch22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch22.md -------------------------------------------------------------------------------- /site/ch23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch23.md -------------------------------------------------------------------------------- /site/ch24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch24.md -------------------------------------------------------------------------------- /site/ch25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch25.md -------------------------------------------------------------------------------- /site/ch26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch26.md -------------------------------------------------------------------------------- /site/ch27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch27.md -------------------------------------------------------------------------------- /site/ch28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch28.md -------------------------------------------------------------------------------- /site/ch29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch29.md -------------------------------------------------------------------------------- /site/ch30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/ch30.md -------------------------------------------------------------------------------- /site/images/cwa_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/cwa_logo.png -------------------------------------------------------------------------------- /site/images/eff_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/eff_logo.png -------------------------------------------------------------------------------- /site/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/facebook.png -------------------------------------------------------------------------------- /site/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/favicon.ico -------------------------------------------------------------------------------- /site/images/fftf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/fftf_logo.png -------------------------------------------------------------------------------- /site/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/google.png -------------------------------------------------------------------------------- /site/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/share.png -------------------------------------------------------------------------------- /site/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/images/twitter.png -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/index.md -------------------------------------------------------------------------------- /site/preamble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightforthefuture/readthetpp/HEAD/site/preamble.md --------------------------------------------------------------------------------