Skip to content

Commit

Permalink
Merge pull request #1 from zabore/main
Browse files Browse the repository at this point in the history
add dates & update committee
  • Loading branch information
hythloda authored Oct 1, 2024
2 parents 8deee57 + 1845980 commit 2f57b4e
Show file tree
Hide file tree
Showing 21 changed files with 616 additions and 259 deletions.
46 changes: 18 additions & 28 deletions committees.qmd
Original file line number Diff line number Diff line change
@@ -1,44 +1,42 @@
---
title: "Committees for R/Medicine 2024"
title: "Committees for R/Medicine 2025"
---

::: columns
::: {.column width="45%"}
## Organizing Committee

- Peter Higgins, Chair
- **Chair: Emily Zabor, Cleveland Clinic**

- Joy Payton
- Terry Christiani, The R Consortium

- Emily Zabor
- Peter Higgins, University of Michigan

- Steven Schwager
- Joy Payton, Children's Hospital of Philadelphia

- Joseph Rickert
- Steven Schwager, Cornell University

- Ray Balise
- Ray Balise, University of Miami

- Beth Atkinson
- Beth Atkinson, Mayo Clinic

- Michael Kane
- Michael Kane, MD Anderson

- Stephan Kadauke
- Daniel Chen, The University of BC & Posit

- Daniel Chen
- Jaclyn Janis, Posit

- Jaclyn Janis
- Bryan Mayfield, Precision Analytical Inc

- Bryan Mayfield
- Andey Nunes-Brewster, Oregon Health Authority

- Andey Nunes
- Ben Gerber, UMass

- Ben Gerber
- Daniel Sjoberg, Genentech

- Daniel Sjoberg
- Chris Beeley, National Health Service

- Mara Alexeev

- Denise Esserman
- Kalyani Chandupatla, Amgen
:::

::: {.column width="10%"}
Expand All @@ -48,16 +46,8 @@ title: "Committees for R/Medicine 2024"
::: {.column width="45%"}
## Program Committee

- Steven Schwager, Chair

- Emily Zabor

- Beth Atkinson

- Michael Kane
TBD

- Daniel Sjoberg

- Ray Balise
:::
:::
28 changes: 25 additions & 3 deletions docs/Abstracts.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.4.549">
<meta name="generator" content="quarto-1.4.555">

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

Expand Down Expand Up @@ -170,7 +170,7 @@ <h2 class="anchored" data-anchor-id="call-for-abstracts">Call for Abstracts</h2>
<p><strong>CFP Notifications:</strong>&nbsp; <strong>May 5</strong></p>
<p><strong>Schedule Announcement:</strong>&nbsp; <strong>May 9</strong></p>
<p><strong>Pre-Recorded Video Submission:&nbsp; June 2</strong></p>
<p><strong>R/Medicine 2024 Conference:</strong> &nbsp;Monday, June 9 &nbsp;to &nbsp;Friday, June 13</p>
<p><strong>R/Medicine 2025 Conference:</strong> &nbsp;Monday, June 9 &nbsp;to &nbsp;Friday, June 13</p>
<p><u>Important Notes</u></p>
<p>All speakers are required to adhere to our&nbsp;<a href="./Attend.html">Code of Conduct</a>. We also highly recommend that speakers take our online&nbsp;<a href="https://training.linuxfoundation.org/linux-courses/open-source-compliance-courses/inclusive-speaker-orientation">Inclusive Speaker Orientation Course</a>.</p>
<p><u>The Chat</u></p>
Expand Down Expand Up @@ -281,6 +281,24 @@ <h2 class="anchored" data-anchor-id="call-for-abstracts">Call for Abstracts</h2>
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
Expand Down Expand Up @@ -315,7 +333,11 @@ <h2 class="anchored" data-anchor-id="call-for-abstracts">Call for Abstracts</h2>
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
Expand Down
26 changes: 24 additions & 2 deletions docs/Attend.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.4.549">
<meta name="generator" content="quarto-1.4.555">

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

Expand Down Expand Up @@ -284,6 +284,24 @@ <h3 class="anchored" data-anchor-id="pre-event-concerns">Pre-Event Concerns</h3>
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
Expand Down Expand Up @@ -318,7 +336,11 @@ <h3 class="anchored" data-anchor-id="pre-event-concerns">Pre-Event Concerns</h3>
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
Expand Down
26 changes: 24 additions & 2 deletions docs/Competition.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.4.549">
<meta name="generator" content="quarto-1.4.555">

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

Expand Down Expand Up @@ -246,6 +246,24 @@ <h3 class="anchored" data-anchor-id="tbd">TBD</h3>
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
Expand Down Expand Up @@ -280,7 +298,11 @@ <h3 class="anchored" data-anchor-id="tbd">TBD</h3>
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
Expand Down
26 changes: 24 additions & 2 deletions docs/Contact.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.4.549">
<meta name="generator" content="quarto-1.4.555">

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

Expand Down Expand Up @@ -268,6 +268,24 @@ <h3 class="anchored" data-anchor-id="general-queries">General Queries</h3>
// clear code selection
e.clearSelection();
});
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
Expand Down Expand Up @@ -302,7 +320,11 @@ <h3 class="anchored" data-anchor-id="general-queries">General Queries</h3>
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
Expand Down
Loading

0 comments on commit 2f57b4e

Please sign in to comment.