riskassessment
riskassessment copied to clipboard
Dev Meetings: Jul - Dec 2024
Dev Meetups
Expand for the "Who / What / Where / When / How" of Dev Meetups!
- Who? All are welcome! Current developers will be present, but anyone who is interested in contributing OR just wants to listen in may join.
-
What? A technical meeting intended to bring together all the
{riskassessment}
developers who play a role in the project. Developers provide updates to their tasks & recent contributions, discuss various tips to improve the app, and support each other. - When? Every other Tuesday at 11am EST. How do you know which Tuesday? Add the zoom meeting (below) to your calendar!
- Where? Zoom: https://arcusbio.zoom.us/j/91245862878
- How? Please avoid using this thread for discussion. If you'd like to discuss something in the minutes, open a separate issue and reference this thread. Each meeting will be a new comment in this thread and will be linked at the top of the page. We'll create a new issue every six months so this thread doesn't get too long.
Meetings
Please avoid using this thread for discussion. If you'd like to discuss something in the minutes, open a separate issue and reference this thread. Each meeting will be a new comment in this thread and will be linked at the top of the page. We'll create a new issue every six months so this thread doesn't get too long.
- Previous 6 Months: #790
No | Date | Agenda & Notes | No | Date | Agenda & Notes |
---|---|---|---|---|---|
1 | 2024-07-02 | Link | 8 | 2024-10-08 | Link |
2 | 2024-07-16 | Link | 9 | 2024-10-22 | Link |
3 | 2024-07-30 | Link | 10 | 2024-11-05 | Link |
4 | 2024-08-13 | Link | 11 | 2024-11-19 | Link |
5 | 2024-08-27 | Link | 12 | 2024-12-03 | Link |
6 | 2024-09-10 | Link | 13 | 2024-12-17 | Link |
7 | 2024-09-24 | Link |
Code to produce table
rows <- 13
all <- dplyr::tibble(
No = 1:rows,
Date = seq.Date(from = as.Date("2024-07-02"),
by = 14,
length.out = rows),
`Agenda & Notes` = "[Link]()"
)
merge(
all |> filter(No %in% 1:ceiling(rows/2)),
all |> filter(!(No %in% 1:ceiling(rows/2))),
by = 0, all = T, suffixes = c("","")
) |>
knitr::kable()