├── 2015_08_26-CRUG-lintr_covr ├── README.md ├── bad.R ├── lintr_presentation.Rmd └── lintr_presentation.html ├── 2016_06_24-Bioc2016-devtools └── devtools-Bioc2016.pdf ├── 2016_06_28-UseR2016-covr └── covr-UseR2016.pdf ├── 2016_07_02-DSC-covr └── covr-DSC.pdf ├── 2016_12_15-CRUG-Database_Best_Practices ├── 1459883537-switch.gif ├── 67lBu1Jmq3cSQ.gif ├── Amazing traffic at intersection - Imgur.gif ├── CRUG-2016_12_14.Rmd ├── CRUG-2016_12_14.html ├── CRUG-2016_12_14_files │ ├── figure-revealjs │ │ └── unnamed-chunk-2-1.png │ └── reveal.js-3.3.0 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── README.md ├── The intersection of the future - Imgur.gif ├── main_databases.jpg └── yR4xZagT71AAM.gif ├── 2017_01_13-RStudio_conf-Database_Best_Practices ├── 2017_01_13-RStudio_conf-Database_Best_Practices.Rmd ├── 2017_01_13-RStudio_conf-Database_Best_Practices.html ├── 2017_01_13-RStudio_conf-Database_Best_Practices_files │ └── reveal.js-3.3.0 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── CRUG-2016_12_14.html ├── CRUG-2016_12_14_files │ ├── figure-revealjs │ │ └── unnamed-chunk-2-1.png │ └── reveal.js-3.3.0 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── README.md ├── SQL-examples.Rmd ├── SQL-examples.nb.html └── main_databases.jpg ├── 2017_07_03-DSC2017-Syntax_Extensions_To_R ├── 2017_07_03-DSC2017-Syntax_Extensions_To_R.Rmd ├── 2017_07_03-DSC2017-Syntax_Extensions_To_R.html ├── 2017_07_03-DSC2017-Syntax_Extensions_To_R_files │ └── reveal.js-3.3.0.1 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── menu │ │ │ ├── lib │ │ │ │ ├── bowser.min.js │ │ │ │ └── jeesh.min.js │ │ │ ├── menu.css │ │ │ └── menu.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js └── README.md ├── 2017_07_06-UseR2017-odbc ├── 2017_07_06-UseR2017-odbc.Rmd ├── 2017_07_06-UseR2017-odbc.html ├── 2017_07_06-UseR2017-odbc_files │ └── reveal.js-3.3.0.1 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── menu │ │ │ ├── lib │ │ │ │ ├── bowser.min.js │ │ │ │ └── jeesh.min.js │ │ │ ├── menu.css │ │ │ └── menu.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── Readme.md ├── SQL-examples.Rmd ├── SQL-examples.nb.html ├── features.md └── main_databases.jpg ├── 2017_08_30-Meetup-Creating_An_R_Package ├── 2017_08_30-Meetup-Creating_An_R_Package.Rproj ├── 2017_08_30-Meetup-Creating_R_Packages.Rmd ├── 2017_08_30-Meetup-Creating_R_Packages.html ├── 2017_08_30-Meetup-Creating_R_Packages_files │ └── reveal.js-3.3.0.1 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── menu │ │ │ ├── lib │ │ │ │ ├── bowser.min.js │ │ │ │ └── jeesh.min.js │ │ │ ├── menu.css │ │ │ └── menu.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── README.md └── note.R ├── 2018_02_03-You-can-make-a-package-in-20-minutes ├── 2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes.Rmd ├── 2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes.Rproj ├── 2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes.html ├── 2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files │ └── reveal.js-3.3.0.1 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── menu │ │ │ ├── lib │ │ │ │ ├── bowser.min.js │ │ │ │ └── jeesh.min.js │ │ │ ├── menu.css │ │ │ └── menu.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── README.md ├── demo.R └── note.R ├── 2018_03_28-Glue_strings_to_data_with_glue ├── 2018_03_28-Glue_string_to_data_with_glue.Rmd ├── 2018_03_28-Glue_string_to_data_with_glue.html ├── 2018_03_28-Glue_string_to_data_with_glue_files │ └── reveal.js-3.3.0.1 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── menu │ │ │ ├── lib │ │ │ │ ├── bowser.min.js │ │ │ │ └── jeesh.min.js │ │ │ ├── menu.css │ │ │ └── menu.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── benchmark-1.png ├── benchmark-100k.png ├── glue-cv1.png ├── glue_rdocumentation.png └── test ├── 2018_07_09-Altparsers ├── 2018_07_09-Altparsers.Rmd ├── 2018_07_09-Altparsers.Rproj ├── 2018_07_09-Altparsers.html ├── 2018_07_09-Altparsers_files │ └── reveal.js-3.3.0.1 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── menu │ │ │ ├── lib │ │ │ │ ├── bowser.min.js │ │ │ │ └── jeesh.min.js │ │ │ ├── menu.css │ │ │ └── menu.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── README.md ├── demo.R └── solarized-light.css ├── 2018_07_13-Glue_strings_to_data_with_glue ├── 2018_03_28-Glue_string_to_data_with_glue.Rmd ├── 2018_03_28-Glue_string_to_data_with_glue.html ├── 2018_03_28-Glue_string_to_data_with_glue_files │ ├── font-awesome-5.0.12 │ │ ├── css │ │ │ ├── fontawesome-all.css │ │ │ └── fontawesome-all.min.css │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── fa-brands.less │ │ │ ├── fa-regular.less │ │ │ ├── fa-solid.less │ │ │ └── fontawesome.less │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── fa-brands.scss │ │ │ ├── fa-regular.scss │ │ │ ├── fa-solid.scss │ │ │ └── fontawesome.scss │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ └── reveal.js-3.3.0.1 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoBoldItalic.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── Quicksand.ttf │ │ │ ├── QuicksandBold.ttf │ │ │ ├── UbuntuBold.ttf │ │ │ ├── UbuntuBoldItalic.ttf │ │ │ ├── UbuntuLight.ttf │ │ │ └── UbuntuLightItalic.ttf │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── chalkboard │ │ │ ├── chalkboard.js │ │ │ └── img │ │ │ │ ├── blackboard.png │ │ │ │ ├── boardmarker.png │ │ │ │ ├── chalk.png │ │ │ │ ├── sponge.png │ │ │ │ └── whiteboard.png │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── menu │ │ │ ├── lib │ │ │ │ ├── bowser.min.js │ │ │ │ └── jeesh.min.js │ │ │ ├── menu.css │ │ │ └── menu.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── 2018_07_13-Glue_strings_to_data_with_glue.Rproj ├── README.md ├── benchmark-1.png ├── benchmark-100k.png ├── footer.html ├── glue-cv1.png ├── glue_rdocumentation.png ├── test ├── tidyverse.svg └── title.png ├── 2018_09_19-bench └── bench-CRUG-2018_08_19.pdf ├── 2018_11_07-Expanding_R_syntax_in_package_space ├── Extending_R_Syntax-SPLASH_I-2018-11-07.pdf ├── demo-0.Rmd ├── demo-1.Rmd └── demo-2.R └── README.md /2015_08_26-CRUG-lintr_covr/README.md: -------------------------------------------------------------------------------- 1 | [Link to HTML Presentation](https://rawgit.com/jimhester/presentations/master/2015_08_26-CRUG-lintr_covr/lintr_presentation.html) 2 | -------------------------------------------------------------------------------- /2015_08_26-CRUG-lintr_covr/bad.R: -------------------------------------------------------------------------------- 1 | fun = function(one) 2 | { 3 | one.plus.one <- oen + 1 4 | four <- newVar <- matrix(1:10,nrow = 2) 5 | four[ 1, ] 6 | txt <- 'hi' 7 | three <- two+ 1 8 | if(txt == 'hi') 4 9 | 5} 10 | { 11 | -------------------------------------------------------------------------------- /2016_06_24-Bioc2016-devtools/devtools-Bioc2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_06_24-Bioc2016-devtools/devtools-Bioc2016.pdf -------------------------------------------------------------------------------- /2016_06_28-UseR2016-covr/covr-UseR2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_06_28-UseR2016-covr/covr-UseR2016.pdf -------------------------------------------------------------------------------- /2016_07_02-DSC-covr/covr-DSC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_07_02-DSC-covr/covr-DSC.pdf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/1459883537-switch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/1459883537-switch.gif -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/67lBu1Jmq3cSQ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/67lBu1Jmq3cSQ.gif -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/Amazing traffic at intersection - Imgur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/Amazing traffic at intersection - Imgur.gif -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/figure-revealjs/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/figure-revealjs/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/README.md: -------------------------------------------------------------------------------- 1 | [Link to HTML Presentation](https://rawgit.com/jimhester/presentations/master/2016_12_15-CRUG-Database_Best_Practices/CRUG-2016_12_14.html) 2 | -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/The intersection of the future - Imgur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/The intersection of the future - Imgur.gif -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/main_databases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/main_databases.jpg -------------------------------------------------------------------------------- /2016_12_15-CRUG-Database_Best_Practices/yR4xZagT71AAM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2016_12_15-CRUG-Database_Best_Practices/yR4xZagT71AAM.gif -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices_files/reveal.js-3.3.0/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/figure-revealjs/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/figure-revealjs/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/CRUG-2016_12_14_files/reveal.js-3.3.0/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/README.md: -------------------------------------------------------------------------------- 1 | [Link to HTML Presentation](https://rawgit.com/jimhester/presentations/master/2017_01_13-RStudio_conf-Database_Best_Practices/2017_01_13-RStudio_conf-Database_Best_Practices.html) 2 | -------------------------------------------------------------------------------- /2017_01_13-RStudio_conf-Database_Best_Practices/main_databases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_01_13-RStudio_conf-Database_Best_Practices/main_databases.jpg -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R_files/reveal.js-3.3.0.1/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /2017_07_03-DSC2017-Syntax_Extensions_To_R/README.md: -------------------------------------------------------------------------------- 1 | [Link to HTML Presentation](https://rawgit.com/jimhester/presentations/master/2017_07_03-DSC2017-Syntax_Extensions_To_R/2017_07_03-DSC2017-Syntax_Extensions_To_R.html) 2 | -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc_files/reveal.js-3.3.0.1/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/Readme.md: -------------------------------------------------------------------------------- 1 | [Link to HTML Presentation](https://rawgit.com/jimhester/presentations/master/2017_07_06-UseR2017-odbc/2017_07_06-UseR2017-odbc.html) 2 | 3 | [SQL-examples.Rmd](SQL-examples.Rmd) contains the SQL examples used in the demo. 4 | -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/features.md: -------------------------------------------------------------------------------- 1 | - RStudio IDE integration 2 | - Bundled Drivers (Pro) 3 | - Native support for dates / timestamps / raw binary types 4 | - Supports Batched and Parameterized Queries 5 | - Faster than RODBC (~3X Reading, 2X Writing) 6 | - DBI compatible 7 | - Well Tested, continued supported 8 | - Consistent outputs, never converts strings to factors, UTC timestamps 9 | -------------------------------------------------------------------------------- /2017_07_06-UseR2017-odbc/main_databases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_07_06-UseR2017-odbc/main_databases.jpg -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_An_R_Package.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2017_08_30-Meetup-Creating_An_R_Package/2017_08_30-Meetup-Creating_R_Packages_files/reveal.js-3.3.0.1/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2018_02_03-You-can-make-a-package-in-20-minutes/2018_02_03-rstudio_conf-You_can_make_a_package_in_20_minutes_files/reveal.js-3.3.0.1/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/benchmark-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/benchmark-1.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/benchmark-100k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/benchmark-100k.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/glue-cv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/glue-cv1.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/glue_rdocumentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_03_28-Glue_strings_to_data_with_glue/glue_rdocumentation.png -------------------------------------------------------------------------------- /2018_03_28-Glue_strings_to_data_with_glue/test: -------------------------------------------------------------------------------- 1 | hello! 2 | -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2018_07_09-Altparsers/2018_07_09-Altparsers_files/reveal.js-3.3.0.1/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /2018_07_09-Altparsers/README.md: -------------------------------------------------------------------------------- 1 | # Slides 2 | 3 | [Link to HTML Presentation](https://rawgit.com/jimhester/presentations/master/2018_07_09-Altparsers/2018_07_09-Altparsers.html) 4 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fab { 9 | -moz-osx-font-smoothing: grayscale; 10 | -webkit-font-smoothing: antialiased; 11 | display: inline-block; 12 | font-style: normal; 13 | font-variant: normal; 14 | text-rendering: auto; 15 | line-height: 1; 16 | } 17 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/font-awesome-5.0.12/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/boardmarker.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/chalk.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/plugin/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_03_28-Glue_string_to_data_with_glue_files/reveal.js-3.3.0.1/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/2018_07_13-Glue_strings_to_data_with_glue.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | StripTrailingWhitespace: Yes 17 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/benchmark-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/benchmark-1.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/benchmark-100k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/benchmark-100k.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/glue-cv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/glue-cv1.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/glue_rdocumentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/glue_rdocumentation.png -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/test: -------------------------------------------------------------------------------- 1 | hello! 2 | -------------------------------------------------------------------------------- /2018_07_13-Glue_strings_to_data_with_glue/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_07_13-Glue_strings_to_data_with_glue/title.png -------------------------------------------------------------------------------- /2018_09_19-bench/bench-CRUG-2018_08_19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_09_19-bench/bench-CRUG-2018_08_19.pdf -------------------------------------------------------------------------------- /2018_11_07-Expanding_R_syntax_in_package_space/Extending_R_Syntax-SPLASH_I-2018-11-07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimhester/presentations/bc419feff2c23a6c3198afdd154ea262b3d4c8c5/2018_11_07-Expanding_R_syntax_in_package_space/Extending_R_Syntax-SPLASH_I-2018-11-07.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Each presentation is in a subdirectory, they are ordered by date of the presentation then identifier. 2 | --------------------------------------------------------------------------------