forked from carpentries/workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transition-schedule.qmd
230 lines (180 loc) · 13 KB
/
transition-schedule.qmd
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
---
title: "Workbench Transition Schedule"
---
Below you will find tables that indicate when a given lesson is expected to
transition to The Workbench along with a link to the preview and a GitHub issue
tracking progress on the conversion.
::: {.callout-note collapse="true"}
## Transition Updates
As of 2023-04-27, we have 27 official lessons remaining for transition and all
maintainers have been notified that the transition will begin on 2023-05-01.
That being said, **we will be transtioning the lessons between 2023-05-01 and
2023-05-08** based on a priority of the number of remaining pull requests and
the number of tasks that need to be completed in the transition workflow.
Each lesson transition takes ~10-20 minutes to complete from start to finish,
but combined with the uncertainty of [Github
incidents](https://www.githubstatus.com/history), network connectivity, among
other factors, I feel confident performing roughly 5 transitions per day.
Please continue to visit this page as we update the status of our lesson
transitions.
:::
If you have any questions, please contact the curriculum team at
curriculum at carpentries dot org
```{r setup, eval = FALSE, include = FALSE}
extract_tasklist <- function(issue) {
title <- issue$title
nr <- issue$number
url <- issue$html_url
f <- textConnection(issue$body)
on.exit(close(f), add = TRUE)
y <- tinkr::yarn$new(f)
status <- as.logical(NA)
complete <- 0
total <- 0
tasks <- xml2::xml_find_all(y$body, ".//md:tasklist", ns = y$ns)
if (length(tasks)) {
status <- xml2::xml_attr(tasks, "completed") == "true"
complete <- sum(status)
total <- length(status)
tasks <- xml2::xml_text(tasks)
} else {
tasks <- NA_character_
}
msg <- "{complete}/{total} tasks complete: (#{sprintf('%02d', nr)}) {title}"
if (complete == total) {
complete <- cli::style_bold(cli::col_blue(complete))
cli::cli_alert_success(msg)
} else {
cli::cli_alert_info(msg)
}
tibble::tibble(lesson = title, issue = nr, task = tasks, complete = status, url = url)
}
get_tasks <- function(repo = "carpentries/lesson-transition", tags = "lesson") {
issues <- gh::gh("GET /repos/{repo}/issues", per_page = 100, .limit = Inf,
repo = repo, .params = list(labels = tags))
purrr::map_dfr(issues, extract_tasklist)
}
makeit <- function(tab) {
knitr::kable(tab[-1],
col.names = c("Expected Transition", "Lesson", "Preview", "Tracking Issue"),
align = "rllc") |>
clipr::write_clip()
}
library("dplyr")
library("purrr")
library("glue")
tasks <- get_tasks()
lessons <- tasks |>
mutate(lesson = tolower(lesson)) |>
arrange(lesson) |>
select(lesson, issue) |>
distinct() |>
mutate(org = map_chr(strsplit(lesson, "/"), 1),
repo = map_chr(strsplit(lesson, "/"), 2))
summary <- lessons |>
mutate(preview = glue("[{repo} (:mag:)](https://fishtree-attempt.github.io/{repo}/)"),
tracking = glue("[#{issue}](https://github.com/carpentries/lesson-transition/issues/{issue})"),
lesson = glue("[{repo}](https://{org}.github.io/{repo}/)"),
date = as.Date("2023-05-01")) |>
select(org, date, lesson, preview, tracking)
slist <- split(summary, summary$org)
```
## Carpentries
```{r}
#| label: cp-table
#| eval: false
#| echo: false
makeit(slist$carpentries)
```
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:---------------------------------|:-----------------------------------------|:-------:|
|2023-04-04|[instructor-training](https://carpentries.github.io/instructor-training/)| (released :tada:) ||
|2023-04-20|[instructor-training-bonus-modules](https://carpentries.github.io/instructor-training-bonus-modules/)| (released :tada:) |[#32](https://github.com/carpentries/lesson-transition/issues/32)|
## Data Carpentry
```{r}
#| label: dc-table
#| eval: false
#| echo: false
makeit(slist$datacarpentry)
```
### Astronomy
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:--------------------------|:----------------------------------|:-------:|
|2023-05-15|[astronomy-python](https://datacarpentry.github.io/astronomy-python/)| (released :tada:) |[#89](https://github.com/carpentries/lesson-transition/issues/89)|
### Ecology
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:--------------------------|:----------------------------------|:-------:|
|2023-05-09|[openrefine-ecology-lesson](https://datacarpentry.github.io/OpenRefine-ecology-lesson/)| (released :tada:) |[#53](https://github.com/carpentries/lesson-transition/issues/53)|
|2023-05-08|[python-ecology-lesson](https://datacarpentry.github.io/python-ecology-lesson/)| (released :tada:) |[#41](https://github.com/carpentries/lesson-transition/issues/41)|
|2023-04-04|[python-ecology-lesson-es](https://datacarpentry.github.io/python-ecology-lesson-es/)| (released :tada:) ||
|2023-05-03|[r-ecology-lesson](https://datacarpentry.github.io/R-ecology-lesson/)| (released :tada:) |[#55](https://github.com/carpentries/lesson-transition/issues/55)|
|2023-05-03|[spreadsheet-ecology-lesson](https://datacarpentry.github.io/spreadsheet-ecology-lesson/)| (released :tada:) |[#40](https://github.com/carpentries/lesson-transition/issues/40)|
|2023-04-21|[sql-ecology-lesson](https://datacarpentry.github.io/sql-ecology-lesson/)| (released :tada:) |[#57](https://github.com/carpentries/lesson-transition/issues/57)|
### Genomics
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:--------------------------|:----------------------------------|:-------:|
|2023-05-04|[cloud-genomics](https://datacarpentry.github.io/cloud-genomics/)| (released :tada:) |[#50](https://github.com/carpentries/lesson-transition/issues/50)|
|2023-05-01|[genomics-r-intro](https://datacarpentry.github.io/genomics-r-intro/)| (released :tada:) |[#51](https://github.com/carpentries/lesson-transition/issues/51)|
|2023-05-02|[organization-genomics](https://datacarpentry.github.io/organization-genomics/)| (released :tada:) |[#54](https://github.com/carpentries/lesson-transition/issues/54)|
|2023-05-08|[shell-genomics](https://datacarpentry.github.io/shell-genomics/)| (released :tada:) |[#42](https://github.com/carpentries/lesson-transition/issues/42)|
|2023-05-04|[wrangling-genomics](https://datacarpentry.github.io/wrangling-genomics/)| (released :tada:) |[#58](https://github.com/carpentries/lesson-transition/issues/58)|
### Geospatial
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:--------------------------|:----------------------------------|:-------:|
|2023-05-04|[organization-geospatial](https://datacarpentry.github.io/organization-geospatial/)| (released :tada:) |[#26](https://github.com/carpentries/lesson-transition/issues/26)|
|2023-05-04|[r-intro-geospatial](https://datacarpentry.github.io/r-intro-geospatial/)| (released :tada:) |[#25](https://github.com/carpentries/lesson-transition/issues/25)|
|2023-04-04|[r-raster-vector-geospatial](https://datacarpentry.github.io/r-raster-vector-geospatial/)| (released :tada:) ||
### Image Processing
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:--------------------------|:----------------------------------|:-------:|
|2023-04-25|[image-processing](https://datacarpentry.github.io/image-processing/)| (released :tada:) |[#46](https://github.com/carpentries/lesson-transition/issues/46)|
### Socialsci
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:--------------------------|:----------------------------------|:-------:|
|2023-04-28|[openrefine-socialsci](https://datacarpentry.github.io/openrefine-socialsci/)| (released :tada:) |[#49](https://github.com/carpentries/lesson-transition/issues/49)|
|2023-05-04|[python-socialsci](https://datacarpentry.github.io/python-socialsci/)| (released :tada:) |[#47](https://github.com/carpentries/lesson-transition/issues/47)|
|2023-04-04|[r-socialsci](https://datacarpentry.github.io/r-socialsci/)| (released :tada:) ||
|2023-05-03|[spreadsheets-socialsci](https://datacarpentry.github.io/spreadsheets-socialsci/)| (released :tada:) |[#48](https://github.com/carpentries/lesson-transition/issues/48)|
|2023-05-02|[sql-socialsci](https://datacarpentry.github.io/sql-socialsci/)| (released :tada:) |[#28](https://github.com/carpentries/lesson-transition/issues/28)|
## Library Carpentry
```{r}
#| label: lc-table
#| eval: false
#| echo: false
makeit(slist$librarycarpentry)
```
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:----------------------|:------------------------------|:-------:|
|2023-05-03|[lc-data-intro](https://librarycarpentry.github.io/lc-data-intro/)| (released :tada:) |[#60](https://github.com/carpentries/lesson-transition/issues/60)|
|2023-04-24|[lc-data-intro-archives](https://librarycarpentry.github.io/lc-data-intro-archives/)| (released :tada:) |[#61](https://github.com/carpentries/lesson-transition/issues/61)|
|2023-04-20|[lc-git](https://librarycarpentry.github.io/lc-git/)| (released :tada:) |[#63](https://github.com/carpentries/lesson-transition/issues/63)|
|2023-04-25|[lc-marcedit](https://librarycarpentry.github.io/lc-marcedit/)| (released :tada:) |[#64](https://github.com/carpentries/lesson-transition/issues/64)|
|2023-05-01|[lc-open-refine](https://librarycarpentry.github.io/lc-open-refine/)| (released :tada:) |[#65](https://github.com/carpentries/lesson-transition/issues/65)|
|2023-09-08|[lc-overview](https://librarycarpentry.github.io/lc-overview/)| [lc-overview (:mag:)](https://fishtree-attempt.github.io/lc-overview) |[#83](https://github.com/carpentries/lesson-transition/issues/83)|
|2023-05-08|[lc-python-intro](https://librarycarpentry.github.io/lc-python-intro/)| (released :tada:) |[#66](https://github.com/carpentries/lesson-transition/issues/66)|
|2023-05-01|[lc-r](https://librarycarpentry.github.io/lc-r/)| (released :tada:) |[#19](https://github.com/carpentries/lesson-transition/issues/19)|
|2023-05-08|[lc-shell](https://librarycarpentry.github.io/lc-shell/)| (released :tada:) |[#67](https://github.com/carpentries/lesson-transition/issues/67)|
|2023-04-21|[lc-spreadsheets](https://librarycarpentry.github.io/lc-spreadsheets/)| (released :tada:) |[#68](https://github.com/carpentries/lesson-transition/issues/68)|
|2023-05-02|[lc-sql](https://librarycarpentry.github.io/lc-sql/)| (released :tada:) |[#69](https://github.com/carpentries/lesson-transition/issues/69)|
|2023-04-24|[lc-wikidata](https://librarycarpentry.github.io/lc-wikidata/)| (released :tada:) |[#71](https://github.com/carpentries/lesson-transition/issues/71)|
## Software Carpentry
```{r}
#| label: swc-table
#| eval: false
#| echo: false
makeit(slist$swcarpentry)
```
| Expected Transition|Lesson |Preview | Tracking Issue |
|---------:|:--------------------------|:----------------------------------|:-------:|
|2023-05-08|[git-novice](https://swcarpentry.github.io/git-novice/)| (released :tada:) |[#72](https://github.com/carpentries/lesson-transition/issues/72)|
|2023-04-27|[git-novice-es](https://swcarpentry.github.io/git-novice-es/)| (released :tada:) |[#73](https://github.com/carpentries/lesson-transition/issues/73)|
|2023-04-24|[make-novice](https://swcarpentry.github.io/make-novice/)| (released :tada:) |[#75](https://github.com/carpentries/lesson-transition/issues/75)|
|2023-04-26|[matlab-novice-inflammation](https://swcarpentry.github.io/matlab-novice-inflammation/)| (released :tada:) |[#76](https://github.com/carpentries/lesson-transition/issues/76)|
|2023-05-02|[python-novice-gapminder](https://swcarpentry.github.io/python-novice-gapminder/)| (released :tada:) |[#77](https://github.com/carpentries/lesson-transition/issues/77)|
|2023-04-20|[python-novice-inflammation](https://swcarpentry.github.io/python-novice-inflammation/)| (released :tada:) |[#22](https://github.com/carpentries/lesson-transition/issues/22)|
|2023-05-03|[r-novice-gapminder](https://swcarpentry.github.io/r-novice-gapminder/)| (released :tada:) |[#78](https://github.com/carpentries/lesson-transition/issues/78)|
|2023-04-27|[r-novice-gapminder-es](https://swcarpentry.github.io/r-novice-gapminder-es/)| (released :tada:) |[#79](https://github.com/carpentries/lesson-transition/issues/79)|
|2023-05-01|[r-novice-inflammation ](https://swcarpentry.github.io/r-novice-inflammation /)| (released :tada:) |[#24](https://github.com/carpentries/lesson-transition/issues/24)|
|2023-05-02|[shell-novice](https://swcarpentry.github.io/shell-novice/)| (released :tada:) |[#80](https://github.com/carpentries/lesson-transition/issues/80)|
|2023-04-24|[shell-novice-es](https://swcarpentry.github.io/shell-novice-es/)| (released :tada:) |[#81](https://github.com/carpentries/lesson-transition/issues/81)|
|2023-05-08|[sql-novice-survey](https://swcarpentry.github.io/sql-novice-survey/)| (released :tada:) |[#82](https://github.com/carpentries/lesson-transition/issues/82)|