-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.qmd
More file actions
89 lines (80 loc) · 2.5 KB
/
tutorials.qmd
File metadata and controls
89 lines (80 loc) · 2.5 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
---
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)
html <- tags$div(class = "listItem",
tags$div(class = "itemDetails",
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 = "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/"
)
```