├── .gitignore ├── Gemfile ├── Gemfile.lock ├── _chapterTemp └── ch.1-p.1.markdown ├── _chapters ├── ch.1.markdown ├── ch.1_p.2.markdown ├── ch.1_p.3.markdown ├── ch.2.markdown ├── ch.2_p.2.markdown ├── ch.2_p.3.markdown ├── ch.3.markdown ├── ch.3_p.2.markdown ├── ch.3_p.3.markdown ├── ch.4.markdown ├── ch.4_p.2.markdown ├── ch.4_p.3.markdown ├── ch.5.markdown ├── ch.5_p.2.markdown ├── ch.5_p.3.markdown ├── ch.6.markdown ├── ch.6_p.2.markdown ├── ch.6_p.3.markdown ├── ch.7.markdown ├── ch.7_p.2.markdown ├── ch.7_p.3.markdown ├── ch.8.markdown ├── ch.8_p.2.markdown └── ch.8_p.3.markdown ├── _config.yml ├── _includes ├── chapterfooter.html ├── controlpanel.html ├── head.html ├── header.html ├── highlightsheader.html ├── loading.html ├── main.html ├── modal.html ├── pagefooter.html ├── reference.html ├── scrollpanel.html └── tooltip.html ├── _layouts ├── chapter-backup.html ├── chapter.html ├── fourohfour.html ├── highlights.html ├── index.html ├── tableofcontents.html ├── transfer.html └── transfernew.html ├── _posts ├── 2017-05-24-page-two.markdown └── 2017-05-24-welcome-to-jekyll.markdown ├── about.md ├── contents.md ├── css ├── main.css ├── mobile.css └── prefixed.css ├── fonts ├── BaskervilleMTStd-Regular.otf ├── CutiveMono-Regular.ttf ├── GillSansMTPro-Medium.otf ├── Merriweather-Regular.ttf ├── open_dyslexic │ ├── OpenDyslexic-Bold.otf │ ├── OpenDyslexic-BoldItalic.otf │ ├── OpenDyslexic-Italic.otf │ ├── OpenDyslexic-Regular.otf │ ├── OpenDyslexicAlta-Bold.otf │ ├── OpenDyslexicAlta-BoldItalic.otf │ ├── OpenDyslexicAlta-Italic.otf │ ├── OpenDyslexicAlta-Regular.otf │ ├── OpenDyslexicMono-Regular.otf │ └── README.txt └── sanfrancisco.woff ├── highlights.md ├── images ├── adjust.svg ├── back_arrow.svg ├── bookcover.jpg ├── bookcover.png ├── bookmark.svg ├── bookmark_1.svg ├── bookmark_2.svg ├── chapter-1 │ ├── image1.jpg │ ├── image2.jpg │ ├── image3.jpg │ ├── image4.jpg │ ├── image5.jpg │ ├── image6.jpg │ ├── image7.jpg │ └── image8.jpg ├── clipboard.png ├── facebook.svg ├── favicon.png ├── highlighter.svg ├── icon-clipboard.svg ├── loading.png ├── pdf.svg ├── sample.png ├── sample2.png ├── speech.svg ├── tooltip-tip.svg └── twitter.svg ├── index.md ├── pdfs └── chapterOne.pdf └── scripts ├── bundle.js ├── bundleprep └── bundleprep.js ├── clipboard.js ├── hammer.js ├── highlight.js ├── iscroll.js ├── main.js ├── mainandpagewipe.js ├── p5.min.js ├── pagewipe.js ├── pagewipebakcup.js ├── pdfmake.min.js ├── scrollmagic.js ├── scrollto.js ├── sketches └── ex1.js ├── storage.js ├── timeline.js ├── timelinemax.js ├── tweenlite.js ├── velocity.js ├── vfs_fonts.js └── vfs_fonts_backup.js /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /_chapterTemp/ch.1-p.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapterTemp/ch.1-p.1.markdown -------------------------------------------------------------------------------- /_chapters/ch.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.1.markdown -------------------------------------------------------------------------------- /_chapters/ch.1_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.1_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.1_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.1_p.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.2_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.2_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.2_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.2_p.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.3_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.3_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.3_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.3_p.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.4.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.4.markdown -------------------------------------------------------------------------------- /_chapters/ch.4_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.4_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.4_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.4_p.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.5.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.5.markdown -------------------------------------------------------------------------------- /_chapters/ch.5_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.5_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.5_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.5_p.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.6.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.6.markdown -------------------------------------------------------------------------------- /_chapters/ch.6_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.6_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.6_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.6_p.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.7.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.7.markdown -------------------------------------------------------------------------------- /_chapters/ch.7_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.7_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.7_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.7_p.3.markdown -------------------------------------------------------------------------------- /_chapters/ch.8.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.8.markdown -------------------------------------------------------------------------------- /_chapters/ch.8_p.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.8_p.2.markdown -------------------------------------------------------------------------------- /_chapters/ch.8_p.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_chapters/ch.8_p.3.markdown -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/chapterfooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/chapterfooter.html -------------------------------------------------------------------------------- /_includes/controlpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/controlpanel.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/highlightsheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/highlightsheader.html -------------------------------------------------------------------------------- /_includes/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/loading.html -------------------------------------------------------------------------------- /_includes/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/main.html -------------------------------------------------------------------------------- /_includes/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/modal.html -------------------------------------------------------------------------------- /_includes/pagefooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/pagefooter.html -------------------------------------------------------------------------------- /_includes/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/reference.html -------------------------------------------------------------------------------- /_includes/scrollpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/scrollpanel.html -------------------------------------------------------------------------------- /_includes/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_includes/tooltip.html -------------------------------------------------------------------------------- /_layouts/chapter-backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/chapter-backup.html -------------------------------------------------------------------------------- /_layouts/chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/chapter.html -------------------------------------------------------------------------------- /_layouts/fourohfour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/fourohfour.html -------------------------------------------------------------------------------- /_layouts/highlights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/highlights.html -------------------------------------------------------------------------------- /_layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/index.html -------------------------------------------------------------------------------- /_layouts/tableofcontents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/tableofcontents.html -------------------------------------------------------------------------------- /_layouts/transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/transfer.html -------------------------------------------------------------------------------- /_layouts/transfernew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_layouts/transfernew.html -------------------------------------------------------------------------------- /_posts/2017-05-24-page-two.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_posts/2017-05-24-page-two.markdown -------------------------------------------------------------------------------- /_posts/2017-05-24-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/_posts/2017-05-24-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/about.md -------------------------------------------------------------------------------- /contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/contents.md -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/css/main.css -------------------------------------------------------------------------------- /css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/css/mobile.css -------------------------------------------------------------------------------- /css/prefixed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/css/prefixed.css -------------------------------------------------------------------------------- /fonts/BaskervilleMTStd-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/BaskervilleMTStd-Regular.otf -------------------------------------------------------------------------------- /fonts/CutiveMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/CutiveMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/GillSansMTPro-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/GillSansMTPro-Medium.otf -------------------------------------------------------------------------------- /fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexic-Bold.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexic-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexic-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexic-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexic-Italic.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexic-Regular.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexicAlta-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexicAlta-Bold.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexicAlta-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexicAlta-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexicAlta-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexicAlta-Italic.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexicAlta-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexicAlta-Regular.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/OpenDyslexicMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/OpenDyslexicMono-Regular.otf -------------------------------------------------------------------------------- /fonts/open_dyslexic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/open_dyslexic/README.txt -------------------------------------------------------------------------------- /fonts/sanfrancisco.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/fonts/sanfrancisco.woff -------------------------------------------------------------------------------- /highlights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/highlights.md -------------------------------------------------------------------------------- /images/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/adjust.svg -------------------------------------------------------------------------------- /images/back_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/back_arrow.svg -------------------------------------------------------------------------------- /images/bookcover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/bookcover.jpg -------------------------------------------------------------------------------- /images/bookcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/bookcover.png -------------------------------------------------------------------------------- /images/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bookmark_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/bookmark_1.svg -------------------------------------------------------------------------------- /images/bookmark_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/bookmark_2.svg -------------------------------------------------------------------------------- /images/chapter-1/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image1.jpg -------------------------------------------------------------------------------- /images/chapter-1/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image2.jpg -------------------------------------------------------------------------------- /images/chapter-1/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image3.jpg -------------------------------------------------------------------------------- /images/chapter-1/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image4.jpg -------------------------------------------------------------------------------- /images/chapter-1/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image5.jpg -------------------------------------------------------------------------------- /images/chapter-1/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image6.jpg -------------------------------------------------------------------------------- /images/chapter-1/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image7.jpg -------------------------------------------------------------------------------- /images/chapter-1/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/chapter-1/image8.jpg -------------------------------------------------------------------------------- /images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/clipboard.png -------------------------------------------------------------------------------- /images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/facebook.svg -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/highlighter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/highlighter.svg -------------------------------------------------------------------------------- /images/icon-clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/icon-clipboard.svg -------------------------------------------------------------------------------- /images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/loading.png -------------------------------------------------------------------------------- /images/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/pdf.svg -------------------------------------------------------------------------------- /images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/sample.png -------------------------------------------------------------------------------- /images/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/sample2.png -------------------------------------------------------------------------------- /images/speech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/speech.svg -------------------------------------------------------------------------------- /images/tooltip-tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/tooltip-tip.svg -------------------------------------------------------------------------------- /images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/images/twitter.svg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/index.md -------------------------------------------------------------------------------- /pdfs/chapterOne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/pdfs/chapterOne.pdf -------------------------------------------------------------------------------- /scripts/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/bundle.js -------------------------------------------------------------------------------- /scripts/bundleprep/bundleprep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/bundleprep/bundleprep.js -------------------------------------------------------------------------------- /scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/clipboard.js -------------------------------------------------------------------------------- /scripts/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/hammer.js -------------------------------------------------------------------------------- /scripts/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/highlight.js -------------------------------------------------------------------------------- /scripts/iscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/iscroll.js -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/main.js -------------------------------------------------------------------------------- /scripts/mainandpagewipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/mainandpagewipe.js -------------------------------------------------------------------------------- /scripts/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/p5.min.js -------------------------------------------------------------------------------- /scripts/pagewipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/pagewipe.js -------------------------------------------------------------------------------- /scripts/pagewipebakcup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/pagewipebakcup.js -------------------------------------------------------------------------------- /scripts/pdfmake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/pdfmake.min.js -------------------------------------------------------------------------------- /scripts/scrollmagic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/scrollmagic.js -------------------------------------------------------------------------------- /scripts/scrollto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/scrollto.js -------------------------------------------------------------------------------- /scripts/sketches/ex1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/sketches/ex1.js -------------------------------------------------------------------------------- /scripts/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/storage.js -------------------------------------------------------------------------------- /scripts/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/timeline.js -------------------------------------------------------------------------------- /scripts/timelinemax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/timelinemax.js -------------------------------------------------------------------------------- /scripts/tweenlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/tweenlite.js -------------------------------------------------------------------------------- /scripts/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/velocity.js -------------------------------------------------------------------------------- /scripts/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/vfs_fonts.js -------------------------------------------------------------------------------- /scripts/vfs_fonts_backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HAWRAF/PoeticComputationReader/HEAD/scripts/vfs_fonts_backup.js --------------------------------------------------------------------------------