├── .gitignore ├── Images ├── Richmondway hex logo.pptx ├── Rk_wtf.gif ├── addingsb2.png ├── addingstrawberry.png ├── afc-richmond-logo.png ├── dashboard2.png ├── driving.png ├── driving2.png ├── driving3.png ├── keeley.gif ├── kidreaching.png ├── kidreaching2.png ├── kidreaching3.png ├── kidreaching4.png ├── legoadd.png ├── posit-logo-fullcolor-TM.png ├── richmondway.png ├── richmondwayhex.png ├── richmondwayhex2.png ├── rk_dont_settle_for_fine2.gif ├── rk_fbomb.gif ├── rk_fkinghell.gif ├── rk_horrifying.png ├── rk_please stop.gif ├── rk_tl.jpg ├── rk_wtf.jpg ├── ted-lasso-believe.gif ├── tensed1.png ├── tensed2.png ├── tensed3.png └── tensed4.png ├── README.html ├── README.md ├── Richmondway.png ├── code ├── Anton-Regular.ttf ├── ArchivoBlack-Regular.ttf ├── hexcode_creation.R ├── richmondwayhex.png └── richmondwayhex2.png ├── data └── Ted_Lasso_RK_f_count.xlsx ├── index-speaker.html ├── index.html ├── index.qmd ├── index_files └── libs │ ├── bootstrap-grid-3.4.1 │ └── bootstrap-grid.min.css │ ├── clipboard │ └── clipboard.min.js │ ├── colourpicker-1.1 │ ├── LICENSE │ ├── colourpicker.min.css │ └── colourpicker.min.js │ ├── crosstalk-1.2.0 │ ├── css │ │ └── crosstalk.min.css │ ├── js │ │ ├── crosstalk.js │ │ ├── crosstalk.js.map │ │ ├── crosstalk.min.js │ │ └── crosstalk.min.js.map │ └── scss │ │ └── crosstalk.scss │ ├── htmlwidgets-1.6.2 │ └── htmlwidgets.js │ ├── jquery-3.5.1 │ ├── jquery-AUTHORS.txt │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map │ ├── plotly-binding-4.10.2 │ └── plotly.js │ ├── plotly-htmlwidgets-css-2.11.1 │ └── plotly-htmlwidgets.css │ ├── plotly-main-2.11.1 │ └── plotly-latest.min.js │ ├── quarto-html │ ├── light-border.css │ ├── popper.min.js │ ├── quarto-html.min.css │ ├── quarto-syntax-highlighting.css │ ├── tabby.min.js │ ├── tippy.css │ └── tippy.umd.min.js │ ├── revealjs │ ├── dist │ │ ├── reset.css │ │ ├── reveal.css │ │ ├── reveal.esm.js │ │ ├── reveal.esm.js.map │ │ ├── reveal.js │ │ ├── reveal.js.map │ │ └── theme │ │ │ ├── fonts │ │ │ ├── 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 │ │ │ └── quarto.css │ └── plugin │ │ ├── highlight │ │ ├── highlight.esm.js │ │ ├── highlight.js │ │ ├── monokai.css │ │ ├── plugin.js │ │ └── zenburn.css │ │ ├── markdown │ │ ├── markdown.esm.js │ │ ├── markdown.js │ │ └── plugin.js │ │ ├── math │ │ ├── katex.js │ │ ├── math.esm.js │ │ ├── math.js │ │ ├── mathjax2.js │ │ ├── mathjax3.js │ │ └── plugin.js │ │ ├── multiplex │ │ ├── multiplex.js │ │ ├── plugin.yml │ │ └── socket.io.js │ │ ├── notes │ │ ├── notes.esm.js │ │ ├── notes.js │ │ ├── plugin.js │ │ └── speaker-view.html │ │ ├── pdf-export │ │ ├── pdfexport.js │ │ └── plugin.yml │ │ ├── quarto-line-highlight │ │ ├── line-highlight.css │ │ ├── line-highlight.js │ │ └── plugin.yml │ │ ├── quarto-support │ │ ├── footer.css │ │ ├── plugin.yml │ │ └── support.js │ │ ├── reveal-menu │ │ ├── menu.css │ │ ├── menu.js │ │ ├── plugin.yml │ │ ├── quarto-menu.css │ │ └── quarto-menu.js │ │ ├── search │ │ ├── plugin.js │ │ ├── search.esm.js │ │ └── search.js │ │ └── zoom │ │ ├── plugin.js │ │ ├── zoom.esm.js │ │ └── zoom.js │ └── typedarray-0.1 │ └── typedarray.min.js ├── posit_plotly_crosstalk.Rproj └── styles.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Richmondway hex logo.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/Richmondway hex logo.pptx -------------------------------------------------------------------------------- /Images/Rk_wtf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/Rk_wtf.gif -------------------------------------------------------------------------------- /Images/addingsb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/addingsb2.png -------------------------------------------------------------------------------- /Images/addingstrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/addingstrawberry.png -------------------------------------------------------------------------------- /Images/afc-richmond-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/afc-richmond-logo.png -------------------------------------------------------------------------------- /Images/dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/dashboard2.png -------------------------------------------------------------------------------- /Images/driving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/driving.png -------------------------------------------------------------------------------- /Images/driving2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/driving2.png -------------------------------------------------------------------------------- /Images/driving3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/driving3.png -------------------------------------------------------------------------------- /Images/keeley.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/keeley.gif -------------------------------------------------------------------------------- /Images/kidreaching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/kidreaching.png -------------------------------------------------------------------------------- /Images/kidreaching2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/kidreaching2.png -------------------------------------------------------------------------------- /Images/kidreaching3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/kidreaching3.png -------------------------------------------------------------------------------- /Images/kidreaching4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/kidreaching4.png -------------------------------------------------------------------------------- /Images/legoadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/legoadd.png -------------------------------------------------------------------------------- /Images/posit-logo-fullcolor-TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/posit-logo-fullcolor-TM.png -------------------------------------------------------------------------------- /Images/richmondway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/richmondway.png -------------------------------------------------------------------------------- /Images/richmondwayhex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/richmondwayhex.png -------------------------------------------------------------------------------- /Images/richmondwayhex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/richmondwayhex2.png -------------------------------------------------------------------------------- /Images/rk_dont_settle_for_fine2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/rk_dont_settle_for_fine2.gif -------------------------------------------------------------------------------- /Images/rk_fbomb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/rk_fbomb.gif -------------------------------------------------------------------------------- /Images/rk_fkinghell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/rk_fkinghell.gif -------------------------------------------------------------------------------- /Images/rk_horrifying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/rk_horrifying.png -------------------------------------------------------------------------------- /Images/rk_please stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/rk_please stop.gif -------------------------------------------------------------------------------- /Images/rk_tl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/rk_tl.jpg -------------------------------------------------------------------------------- /Images/rk_wtf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/rk_wtf.jpg -------------------------------------------------------------------------------- /Images/ted-lasso-believe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/ted-lasso-believe.gif -------------------------------------------------------------------------------- /Images/tensed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/tensed1.png -------------------------------------------------------------------------------- /Images/tensed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/tensed2.png -------------------------------------------------------------------------------- /Images/tensed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/tensed3.png -------------------------------------------------------------------------------- /Images/tensed4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Images/tensed4.png -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/README.md -------------------------------------------------------------------------------- /Richmondway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/Richmondway.png -------------------------------------------------------------------------------- /code/Anton-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/code/Anton-Regular.ttf -------------------------------------------------------------------------------- /code/ArchivoBlack-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/code/ArchivoBlack-Regular.ttf -------------------------------------------------------------------------------- /code/hexcode_creation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/code/hexcode_creation.R -------------------------------------------------------------------------------- /code/richmondwayhex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/code/richmondwayhex.png -------------------------------------------------------------------------------- /code/richmondwayhex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/code/richmondwayhex2.png -------------------------------------------------------------------------------- /data/Ted_Lasso_RK_f_count.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/data/Ted_Lasso_RK_f_count.xlsx -------------------------------------------------------------------------------- /index-speaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index-speaker.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index.html -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index.qmd -------------------------------------------------------------------------------- /index_files/libs/bootstrap-grid-3.4.1/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/bootstrap-grid-3.4.1/bootstrap-grid.min.css -------------------------------------------------------------------------------- /index_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /index_files/libs/colourpicker-1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/colourpicker-1.1/LICENSE -------------------------------------------------------------------------------- /index_files/libs/colourpicker-1.1/colourpicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/colourpicker-1.1/colourpicker.min.css -------------------------------------------------------------------------------- /index_files/libs/colourpicker-1.1/colourpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/colourpicker-1.1/colourpicker.min.js -------------------------------------------------------------------------------- /index_files/libs/crosstalk-1.2.0/css/crosstalk.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/crosstalk-1.2.0/css/crosstalk.min.css -------------------------------------------------------------------------------- /index_files/libs/crosstalk-1.2.0/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/crosstalk-1.2.0/js/crosstalk.js -------------------------------------------------------------------------------- /index_files/libs/crosstalk-1.2.0/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/crosstalk-1.2.0/js/crosstalk.js.map -------------------------------------------------------------------------------- /index_files/libs/crosstalk-1.2.0/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/crosstalk-1.2.0/js/crosstalk.min.js -------------------------------------------------------------------------------- /index_files/libs/crosstalk-1.2.0/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/crosstalk-1.2.0/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /index_files/libs/crosstalk-1.2.0/scss/crosstalk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/crosstalk-1.2.0/scss/crosstalk.scss -------------------------------------------------------------------------------- /index_files/libs/htmlwidgets-1.6.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/htmlwidgets-1.6.2/htmlwidgets.js -------------------------------------------------------------------------------- /index_files/libs/jquery-3.5.1/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/jquery-3.5.1/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /index_files/libs/jquery-3.5.1/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/jquery-3.5.1/jquery.js -------------------------------------------------------------------------------- /index_files/libs/jquery-3.5.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/jquery-3.5.1/jquery.min.js -------------------------------------------------------------------------------- /index_files/libs/jquery-3.5.1/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/jquery-3.5.1/jquery.min.map -------------------------------------------------------------------------------- /index_files/libs/plotly-binding-4.10.2/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/plotly-binding-4.10.2/plotly.js -------------------------------------------------------------------------------- /index_files/libs/plotly-htmlwidgets-css-2.11.1/plotly-htmlwidgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/plotly-htmlwidgets-css-2.11.1/plotly-htmlwidgets.css -------------------------------------------------------------------------------- /index_files/libs/plotly-main-2.11.1/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/plotly-main-2.11.1/plotly-latest.min.js -------------------------------------------------------------------------------- /index_files/libs/quarto-html/light-border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/quarto-html/light-border.css -------------------------------------------------------------------------------- /index_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /index_files/libs/quarto-html/quarto-html.min.css: -------------------------------------------------------------------------------- 1 | /*# sourceMappingURL=0a6b880beb84f9b6f36107a76f82c5b1.css.map */ 2 | -------------------------------------------------------------------------------- /index_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /index_files/libs/quarto-html/tabby.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/quarto-html/tabby.min.js -------------------------------------------------------------------------------- /index_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /index_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/multiplex/multiplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/multiplex/multiplex.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/multiplex/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/multiplex/plugin.yml -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/multiplex/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/multiplex/socket.io.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /index_files/libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/revealjs/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /index_files/libs/typedarray-0.1/typedarray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/index_files/libs/typedarray-0.1/typedarray.min.js -------------------------------------------------------------------------------- /posit_plotly_crosstalk.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/posit_plotly_crosstalk.Rproj -------------------------------------------------------------------------------- /styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/posit_plotly_crosstalk/HEAD/styles.scss --------------------------------------------------------------------------------