Skip to content

Commit

Permalink
Add links
Browse files Browse the repository at this point in the history
  • Loading branch information
mine-cetinkaya-rundel committed Aug 21, 2024
1 parent ca12434 commit a615e5b
Show file tree
Hide file tree
Showing 54 changed files with 509 additions and 922 deletions.
159 changes: 120 additions & 39 deletions _site/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _site/listings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
{
"listing": "/index.html",
"items": [
"/workshops/shiny_python_adv.html",
"/workshops/tidymodels_advanced.html",
"/workshops/arrow.html",
"/workshops/quarto_dashboards.html",
Expand All @@ -12,6 +11,7 @@
"/workshops/databases.html",
"/workshops/dev_ops.html",
"/workshops/dataviz.html",
"/workshops/pharmaverse.html",
"/workshops/programming_r.html",
"/workshops/vetiver.html",
"/workshops/intro_ds_python.html",
Expand Down
58 changes: 29 additions & 29 deletions _site/search.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions _site/site_libs/bootstrap/bootstrap.min.css

Large diffs are not rendered by default.

15 changes: 12 additions & 3 deletions _site/site_libs/quarto-html/quarto.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
if (link.href.indexOf("#") !== -1) {
const anchor = link.href.split("#")[1];
const heading = window.document.querySelector(
`[data-anchor-id=${anchor}]`
`[data-anchor-id="${anchor}"]`
);
if (heading) {
// Add the class
Expand Down Expand Up @@ -134,8 +134,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
window.innerHeight + window.pageYOffset >=
window.document.body.offsetHeight
) {
// This is the no-scroll case where last section should be the active one
sectionIndex = 0;
} else {
// This finds the last section visible on screen that should be made active
sectionIndex = [...sections].reverse().findIndex((section) => {
if (section) {
return window.pageYOffset >= section.offsetTop - sectionMargin;
Expand Down Expand Up @@ -317,6 +319,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
for (const child of el.children) {
child.style.opacity = 0;
child.style.overflow = "hidden";
child.style.pointerEvents = "none";
}

nexttick(() => {
Expand Down Expand Up @@ -358,6 +361,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {

const clone = child.cloneNode(true);
clone.style.opacity = 1;
clone.style.pointerEvents = null;
clone.style.display = null;
toggleContents.append(clone);
}
Expand Down Expand Up @@ -432,6 +436,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
for (const child of el.children) {
child.style.opacity = 1;
child.style.overflow = null;
child.style.pointerEvents = null;
}

const placeholderEl = window.document.getElementById(
Expand Down Expand Up @@ -739,6 +744,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
// Process the collapse state if this is an UL
if (el.tagName === "UL") {
if (tocOpenDepth === -1 && depth > 1) {
// toc-expand: false
el.classList.add("collapse");
} else if (
depth <= tocOpenDepth ||
Expand All @@ -757,10 +763,9 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
};

// walk the TOC and expand / collapse any items that should be shown

if (tocEl) {
walk(tocEl, 0);
updateActiveLink();
walk(tocEl, 0);
}

// Throttle the scroll event and walk peridiocally
Expand All @@ -779,6 +784,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
window.addEventListener(
"resize",
throttle(() => {
if (tocEl) {
updateActiveLink();
walk(tocEl, 0);
}
if (!isReaderMode()) {
hideOverlappedSidebars();
}
Expand Down
6 changes: 5 additions & 1 deletion _site/site_libs/quarto-search/quarto-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,11 @@ async function fuseSearch(query, fuse, fuseOptions) {

// If we don't have a subfuse and the query is long enough, go ahead
// and create a subfuse to use for subsequent queries
if (now - then > kFuseMaxWait && subSearchFuse === undefined) {
if (
now - then > kFuseMaxWait &&
subSearchFuse === undefined &&
resultsRaw.length < fuseOptions.limit
) {
subSearchTerm = query;
subSearchFuse = new window.Fuse([], kFuseIndexOptions);
resultsRaw.forEach((rr) => {
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/arrow.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -81,7 +81,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -108,6 +108,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Big Data in R with Arrow</h1>
<p class="subtitle lead"><a href="https://posit-conf-2024.github.io/arrow/">https://posit-conf-2024.github.io/arrow</a></p>
<div class="quarto-categories">
<div class="quarto-category">R</div>
<div class="quarto-category">Arrow</div>
Expand Down Expand Up @@ -163,7 +164,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructor(s)</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/databricks.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -80,7 +80,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -107,6 +107,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Using Databricks with R</h1>
<p class="subtitle lead"><a href="https://posit-conf-2024.github.io/databricks/">https://posit-conf-2024.github.io/databricks</a></p>
<div class="quarto-categories">
<div class="quarto-category">databricks</div>
<div class="quarto-category">databases</div>
Expand Down Expand Up @@ -173,7 +174,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructor(s)</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/dataviz.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -80,7 +80,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -107,6 +107,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Effective data visualization with ggplot2</h1>
<p class="subtitle lead"><a href="https://github.com/posit-conf-2024/dataviz-r">https://github.com/posit-conf-2024/dataviz-r</a></p>
<div class="quarto-categories">
<div class="quarto-category">data visualization, ggplot2, color, accessibility, communication</div>
</div>
Expand Down Expand Up @@ -166,7 +167,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructor(s)</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/dev_ops.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -80,7 +80,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -107,6 +107,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">DevOps for Data Scientists</h1>
<p class="subtitle lead"><a href="https://github.com/posit-conf-2024/dev-ops">https://github.com/posit-conf-2024/dev-ops</a></p>
<div class="quarto-categories">
<div class="quarto-category">data science</div>
<div class="quarto-category">pro product</div>
Expand Down Expand Up @@ -174,7 +175,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructor(s)</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/intro_ds_python.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -80,7 +80,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -107,6 +107,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Introduction to Data Science with Python</h1>
<p class="subtitle lead">NEED LINK</p>
<div class="quarto-categories">
<div class="quarto-category">data science</div>
<div class="quarto-category">python</div>
Expand Down Expand Up @@ -182,7 +183,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructors</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/intro_ds_r.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -80,7 +80,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -107,6 +107,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Introduction to Data Science with R and Tidyverse</h1>
<p class="subtitle lead"><a href="https://intro-tidyverse-2024.netlify.app/">https://intro-tidyverse-2024.netlify.app</a></p>
<div class="quarto-categories">
<div class="quarto-category">data science</div>
<div class="quarto-category">tidyverse</div>
Expand Down Expand Up @@ -182,7 +183,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructors</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/pkg_dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -80,7 +80,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -107,6 +107,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title"><p>Package Development: The Rest of the Owl</p></h1>
<p class="subtitle lead"><a href="https://pos.it/pkg_dev_24">https://pos.it/pkg_dev_24</a></p>
<div class="quarto-categories">
<div class="quarto-category">R</div>
<div class="quarto-category">package development</div>
Expand Down Expand Up @@ -182,7 +183,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructor(s)</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
7 changes: 4 additions & 3 deletions _site/workshops/posit_tools_python.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>

<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.25">
<meta name="generator" content="quarto-1.5.56">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">

Expand Down Expand Up @@ -81,7 +81,7 @@
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
Expand All @@ -108,6 +108,7 @@
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title">Data Science Workflows with Posit Tools — Python Focus</h1>
<p class="subtitle lead"><a href="https://ferryland.posit.team/">https://ferryland.posit.team</a></p>
<div class="quarto-categories">
<div class="quarto-category">data science</div>
<div class="quarto-category">pro product</div>
Expand Down Expand Up @@ -181,7 +182,7 @@ <h1>Audience</h1>
</section>
<section id="instructors" class="level1">
<h1>Instructor(s)</h1>
<table class="table">
<table class="caption-top table">
<colgroup>
<col style="width: 25%">
<col style="width: 5%">
Expand Down
Loading

0 comments on commit a615e5b

Please sign in to comment.