-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.qmd
More file actions
115 lines (102 loc) · 3.26 KB
/
tutorials.qmd
File metadata and controls
115 lines (102 loc) · 3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
---
title: Tutorials
description: Tutorials on Using Futures
preview: images/site_preview.png
format:
html:
css: assets/custom.css
---
```{r}
#| include: false
tutorial <- function(title, author, info = NULL, location = NULL, date, url) {
library(htmltools)
upcoming <- -Inf
if (!is.null(date)) {
now <- Sys.Date()
date <- as.Date(date)
upcoming <- (date - now)
date <- format(date, format = "%F")
}
html <- tags$div(class = "listItem",
tags$div(class = "itemDetails",
if (upcoming > 3) {
tags$span(class="bi bi-clock-history", style="font-size: 100%; font-weight: bold; text-transform: uppercase;", " Upcoming")
} else if (upcoming > 0) {
tags$span(class="bi bi-alarm", style="font-size: 150%; font-weight: bold; text-transform: uppercase;", " Soon!")
},
tags$div(class = "itemHeader",
tags$div(class = "itemTitle",
tags$a(href = url, title)
)
),
tags$div(class = "itemMeta",
tags$div(class = "author", author),
if (!is.null(info)) tags$div(class = "itemInfo", info),
if (!is.null(location)) tags$div(class = "itemInfo", location),
tags$div(class = "itemDate", date)
)
)
)
knitr::asis_output(as.character(html))
} # tutorial()
```
```{r}
#| echo: false
tutorial(
title = "Introduction to Parallel Processing in R using Futureverse - Easier than Ever Before",
author = "Henrik Bengtsson",
location = "useR! 2026",
date = "2026-07-06",
url = "https://user2026.r-project.org/schedule/"
)
```
```{r}
#| echo: false
tutorial(
title = "Futureverse: A Unifying Parallelization Framework in R for Everyone (RaukR 2025)",
author = "Henrik Bengtsson",
location = "RaukR Summer School 2025, R Beyond the Basics, Visby, Sweden",
date = "2025-06-12",
url = "https://henrikbengtsson.github.io/futureverse-tutorial-raukr2025/"
)
```
```{r}
#| echo: false
tutorial(
title = "Futureverse: Friendly Parallelization in R (useR! 2024)",
author = "Henrik Bengtsson",
location = "useR! 2024, Salzburg, Austria",
date = "2024-07-08",
url = "https://henrikbengtsson.github.io/future-tutorial-user2024/"
)
```
```{r}
#| echo: false
tutorial(
title = "Futureverse: A Unifying Parallelization Framework in R for Everyone (RaukR 2024)",
author = "Henrik Bengtsson",
location = "RaukR Summer School 2024, Advanced R for Bioinformatics, Visby, Sweden",
date = "2024-06-12 and 2024-06-17",
url = "https://henrikbengtsson.github.io/future-tutorial-raukr2024/"
)
```
```{r}
#| echo: false
tutorial(
title = "Futureverse - A Unifying Parallelization Framework in R for Everyone: STATS/BIODS 352: Topics in Computing for Data Science, Bridging Methodology and Practice, Stanford University, 2023",
author = "Henrik Bengtsson",
location = "Stanford University, California, United States",
date = "2023-04-20 and 2023-04-27",
url = "https://henrikbengtsson.github.io/course-stanford-futureverse-2023/"
)
```
```{r}
#| echo: false
tutorial(
title = "An Introduction to Futureverse for Parallel Processing in R (useR! 2022)",
author = "Henrik Bengtsson",
location = "useR! 2022 conference, worldwide (virtual)",
date = "2022-06-20",
url = "https://henrikbengtsson.github.io/future-tutorial-user2022/"
)
```