diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index 600ac4f..fc02299 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -258,6 +258,13 @@ Calendly +
  • + + + + Citations + +
  • @@ -279,13 +286,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • diff --git a/docs/calendly.html b/docs/calendly.html index a195342..9571838 100644 --- a/docs/calendly.html +++ b/docs/calendly.html @@ -260,6 +260,13 @@ Calendly
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • @@ -308,7 +308,7 @@

    Calendly

    -

    06 March, 2024

    +

    15 March, 2024

    @@ -318,10 +318,11 @@

    Setting up Calendly

    Preview

    -
    ## Rows: 1 Columns: 8
    +
    ## Rows: 1 Columns: 10
     ## ── Column specification ────────────────────────────────────────────────────────
     ## Delimiter: "\t"
     ## chr  (4): event_type, name, status, uri
    +## lgl  (2): meeting_notes_html, meeting_notes_plain
     ## dttm (4): created_at, end_time, start_time, updated_at
     ## 
     ## ℹ Use `spec()` to retrieve the full column specification for this data.
    @@ -329,20 +330,24 @@ 

    Preview

    knitr::kable(calendly)
    ----++++++--++ + + @@ -357,6 +362,8 @@

    Preview

    + + diff --git a/docs/citations.html b/docs/citations.html new file mode 100644 index 0000000..094dd5b --- /dev/null +++ b/docs/citations.html @@ -0,0 +1,460 @@ + + + + + + + + + + + + + +Citations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + +
    +

    Setting up Citations

    +
    +
    +

    Preview

    +

    Column information:

    +
      +
    • original_paper shows papers that we have captured +citation information about
    • +
    • cite_titles shows papers that cite the original +paper
    • +
    • linkscolumn shows the link for the paper that cites the +original paper (the cite_titles papers).
    • +
    +
    knitr::kable(citations)
    +
    created_at end_time event_typemeeting_notes_htmlmeeting_notes_plain name start_time status https://api.calendly.com/event_types/d39d7211-9c78-4121-8271-208cfaa34989NANA 30 Minute Meeting 2024-01-17 14:00:00 active
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    original_papercite_titleslinks
    Open-source Tools for Training Resources–OTTRData science pedagogical tools and practices: A +systematic literature reviewhttps://link.springer.com/article/10.1007/s10639-023-12102-y
    Open-source Tools for Training Resources–OTTRDiversifying the genomic data science research +communityhttps://genome.cshlp.org/content/32/7/1231.short
    Open-source Tools for Training Resources–OTTRMotivation, inclusivity, and realism should drive data +science educationhttps://arxiv.org/abs/2305.06213
    Open-source Tools for Training Resources–OTTREmpowering Learning: Standalone, Browser-Only Courses +for Seamless Educationhttps://arxiv.org/abs/2311.06961
    Open-source Tools for Training Resources–OTTRTen simple rules for teaching introduction to Rhttps://osf.io/preprints/edarxiv/g45vz/
    What’s the best chatbot for me? Researchers put LLMs +through their paces.“HOT” ChatGPT: The promise of ChatGPT in detecting and +discriminating hateful, offensive, and toxic comments on social +mediahttps://dl.acm.org/doi/abs/10.1145/3643829
    What’s the best chatbot for me? Researchers put LLMs +through their paces.[HTML][HTML] Current evaluation and recommendations for +the use of artificial intelligence tools in educationhttps://www.degruyter.com/document/doi/10.1515/tjb-2023-0254/html
    +

    Here we show how to get the total counts per original paper:

    +
    library(dplyr)
    +# here we remove duplicates if there are any of the same titles of citing papers for each original paper and then get a count of the number of rows for each original paper (aka how many times it is cited)
    +citations %>% 
    +  distinct(original_paper, cite_titles, .keep_all = TRUE) %>% 
    +  count(original_paper)
    +
    ## # A tibble: 2 × 2
    +##   original_paper                                                               n
    +##   <chr>                                                                    <int>
    +## 1 Open-source Tools for Training Resources–OTTR                                5
    +## 2 What's the best chatbot for me? Researchers put LLMs through their pace…     2
    +
    + + + + + + + + + + + + + + + + + + + + diff --git a/docs/cran.html b/docs/cran.html index 088dcbe..7aa029f 100644 --- a/docs/cran.html +++ b/docs/cran.html @@ -260,6 +260,13 @@ Calendly
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • @@ -308,7 +308,7 @@

    CRAN

    -

    06 March, 2024

    +

    15 March, 2024

    @@ -320,16 +320,15 @@

    Setting up CRAN

    Preview

    library(tidyverse)
    ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
    -## ✔ dplyr     1.1.4     ✔ readr     2.1.5
    -## ✔ forcats   1.0.0     ✔ stringr   1.5.1
    -## ✔ ggplot2   3.5.0     ✔ tibble    3.2.1
    -## ✔ lubridate 1.9.3     ✔ tidyr     1.3.1
    -## ✔ purrr     1.0.2     
    +## ✔ forcats   1.0.0     ✔ readr     2.1.5
    +## ✔ ggplot2   3.5.0     ✔ stringr   1.5.1
    +## ✔ lubridate 1.9.3     ✔ tibble    3.2.1
    +## ✔ purrr     1.0.2     ✔ tidyr     1.3.1
     ## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
     ## ✖ dplyr::filter() masks stats::filter()
     ## ✖ dplyr::lag()    masks stats::lag()
     ## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
    -
    ## Rows: 745 Columns: 3
    +
    ## Rows: 779 Columns: 3
     ## ── Column specification ────────────────────────────────────────────────────────
     ## Delimiter: "\t"
     ## chr  (1): package
    @@ -342,14 +341,14 @@ 

    Preview

    ## # A tibble: 1 × 1
     ##   download_total
     ##            <dbl>
    -## 1           7852
    +## 1 8530
    cran %>% dplyr::group_by(package) %>%
        dplyr::summarize(download_total = sum(count))
    ## # A tibble: 2 × 2
     ##   package     download_total
     ##   <chr>                <dbl>
    -## 1 metricminer            428
    -## 2 ottrpal               7424
    +## 1 metricminer 722 +## 2 ottrpal 7808
    cran_stats <- cran %>% 
       separate(date, into=c("year", "month name", "day"), sep = "-") %>% 
       unite("Month", c("year", "month name"), sep='-', remove=TRUE) %>%  
    diff --git a/docs/cran_files/figure-html/unnamed-chunk-4-1.png b/docs/cran_files/figure-html/unnamed-chunk-4-1.png
    index 112915b..7de5e28 100644
    Binary files a/docs/cran_files/figure-html/unnamed-chunk-4-1.png and b/docs/cran_files/figure-html/unnamed-chunk-4-1.png differ
    diff --git a/docs/github.html b/docs/github.html
    index 3fdfc68..11e5df2 100644
    --- a/docs/github.html
    +++ b/docs/github.html
    @@ -260,6 +260,13 @@
         Calendly
       
     
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • @@ -308,7 +308,7 @@

    GitHub

    -

    06 March, 2024

    +

    15 March, 2024

    @@ -352,7 +352,7 @@

    Preview

    fhdsl/metricminer NA 4 -406 +432 1 37 diff --git a/docs/googleanalytics.html b/docs/googleanalytics.html index a956b0f..dc546a3 100644 --- a/docs/googleanalytics.html +++ b/docs/googleanalytics.html @@ -260,6 +260,13 @@ Calendly
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • @@ -308,7 +308,7 @@

    Google Analytics

    -

    06 March, 2024

    +

    15 March, 2024

    @@ -326,7 +326,7 @@

    Preview

    ## ## ℹ Use `spec()` to retrieve the full column specification for this data. ## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message. -## Rows: 5 Columns: 6 +## Rows: 6 Columns: 6 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "\t" ## chr (4): website, month, country, fullPageUrl @@ -334,7 +334,7 @@

    Preview

    ## ## ℹ Use `spec()` to retrieve the full column specification for this data. ## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message. -## Rows: 3 Columns: 2 +## Rows: 4 Columns: 2 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "\t" ## chr (2): website, linkUrl @@ -372,14 +372,14 @@

    Preview

    dummy-website-2 -2 -2 -2 -4 +3 +3 +3 +4.333333 1.00 -2 -4.617533 -2 +3 +3.610206 +3 0.0000000 @@ -387,7 +387,7 @@

    Preview

    4 4 4 -15 +15.000000 4.25 6 54.992872 @@ -434,6 +434,14 @@

    Preview

    metricminer.github.io/my-cool-repo/ +dummy-website-2 +14 +03 +2024 +United States +metricminer.github.io/my-cool-repo/ + + dummy-website 10 01 @@ -441,7 +449,7 @@

    Preview

    Germany metricminer.github.io/dummy-website/ - + dummy-website 10 01 @@ -449,7 +457,7 @@

    Preview

    Russia metricminer.github.io/dummy-website/ - + dummy-website 10 01 @@ -473,10 +481,15 @@

    Preview

    NA +dummy-website-2 +
    https://www.metricminer.org/ + + dummy-website NA - + dummy-website https://www.metricminer.org/ diff --git a/docs/googleforms.html b/docs/googleforms.html index 9814f35..f553dc4 100644 --- a/docs/googleforms.html +++ b/docs/googleforms.html @@ -260,6 +260,13 @@ Calendly
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • @@ -308,7 +308,7 @@

    Google Forms

    -

    06 March, 2024

    +

    15 March, 2024

    diff --git a/docs/index.html b/docs/index.html index 158fd16..c3b52aa 100644 --- a/docs/index.html +++ b/docs/index.html @@ -260,6 +260,13 @@ Calendly
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • diff --git a/docs/metricminer_data/calendly/calendly.tsv b/docs/metricminer_data/calendly/calendly.tsv index 4d971ec..3609126 100644 --- a/docs/metricminer_data/calendly/calendly.tsv +++ b/docs/metricminer_data/calendly/calendly.tsv @@ -1,2 +1,2 @@ -created_at end_time event_type name start_time status updated_at uri -2024-01-10T14:29:21.506145Z 2024-01-17T14:30:00.000000Z https://api.calendly.com/event_types/d39d7211-9c78-4121-8271-208cfaa34989 30 Minute Meeting 2024-01-17T14:00:00.000000Z active 2024-01-10T14:29:22.796821Z https://api.calendly.com/scheduled_events/ac7a3d65-37ee-4277-a057-c308bdc7a067 +created_at end_time event_type meeting_notes_html meeting_notes_plain name start_time status updated_at uri +2024-01-10T14:29:21.506145Z 2024-01-17T14:30:00.000000Z https://api.calendly.com/event_types/d39d7211-9c78-4121-8271-208cfaa34989 NA NA 30 Minute Meeting 2024-01-17T14:00:00.000000Z active 2024-01-10T14:29:22.796821Z https://api.calendly.com/scheduled_events/ac7a3d65-37ee-4277-a057-c308bdc7a067 diff --git a/docs/metricminer_data/citations/citation.tsv b/docs/metricminer_data/citations/citation.tsv new file mode 100644 index 0000000..895777b --- /dev/null +++ b/docs/metricminer_data/citations/citation.tsv @@ -0,0 +1,8 @@ +original_paper cite_titles links +Open-source Tools for Training Resources–OTTR Data science pedagogical tools and practices: A systematic literature review https://link.springer.com/article/10.1007/s10639-023-12102-y +Open-source Tools for Training Resources–OTTR Diversifying the genomic data science research community https://genome.cshlp.org/content/32/7/1231.short +Open-source Tools for Training Resources–OTTR Motivation, inclusivity, and realism should drive data science education https://arxiv.org/abs/2305.06213 +Open-source Tools for Training Resources–OTTR Empowering Learning: Standalone, Browser-Only Courses for Seamless Education https://arxiv.org/abs/2311.06961 +Open-source Tools for Training Resources–OTTR Ten simple rules for teaching introduction to R https://osf.io/preprints/edarxiv/g45vz/ +What's the best chatbot for me? Researchers put LLMs through their paces. “HOT” ChatGPT: The promise of ChatGPT in detecting and discriminating hateful, offensive, and toxic comments on social media https://dl.acm.org/doi/abs/10.1145/3643829 +What's the best chatbot for me? Researchers put LLMs through their paces. [HTML][HTML] Current evaluation and recommendations for the use of artificial intelligence tools in education https://www.degruyter.com/document/doi/10.1515/tjb-2023-0254/html diff --git a/docs/metricminer_data/citations/citations.tsv b/docs/metricminer_data/citations/citations.tsv new file mode 100644 index 0000000..895777b --- /dev/null +++ b/docs/metricminer_data/citations/citations.tsv @@ -0,0 +1,8 @@ +original_paper cite_titles links +Open-source Tools for Training Resources–OTTR Data science pedagogical tools and practices: A systematic literature review https://link.springer.com/article/10.1007/s10639-023-12102-y +Open-source Tools for Training Resources–OTTR Diversifying the genomic data science research community https://genome.cshlp.org/content/32/7/1231.short +Open-source Tools for Training Resources–OTTR Motivation, inclusivity, and realism should drive data science education https://arxiv.org/abs/2305.06213 +Open-source Tools for Training Resources–OTTR Empowering Learning: Standalone, Browser-Only Courses for Seamless Education https://arxiv.org/abs/2311.06961 +Open-source Tools for Training Resources–OTTR Ten simple rules for teaching introduction to R https://osf.io/preprints/edarxiv/g45vz/ +What's the best chatbot for me? Researchers put LLMs through their paces. “HOT” ChatGPT: The promise of ChatGPT in detecting and discriminating hateful, offensive, and toxic comments on social media https://dl.acm.org/doi/abs/10.1145/3643829 +What's the best chatbot for me? Researchers put LLMs through their paces. [HTML][HTML] Current evaluation and recommendations for the use of artificial intelligence tools in education https://www.degruyter.com/document/doi/10.1515/tjb-2023-0254/html diff --git a/docs/metricminer_data/cran/cran.tsv b/docs/metricminer_data/cran/cran.tsv index 676947b..bb6a476 100644 --- a/docs/metricminer_data/cran/cran.tsv +++ b/docs/metricminer_data/cran/cran.tsv @@ -23,6 +23,23 @@ date count package 2024-02-23 42 metricminer 2024-02-24 4 metricminer 2024-02-25 3 metricminer +2024-02-26 8 metricminer +2024-02-27 42 metricminer +2024-02-28 6 metricminer +2024-02-29 4 metricminer +2024-03-01 39 metricminer +2024-03-02 2 metricminer +2024-03-03 3 metricminer +2024-03-04 41 metricminer +2024-03-05 4 metricminer +2024-03-06 5 metricminer +2024-03-07 37 metricminer +2024-03-08 6 metricminer +2024-03-09 6 metricminer +2024-03-10 40 metricminer +2024-03-11 3 metricminer +2024-03-12 5 metricminer +2024-03-13 43 metricminer 2022-02-28 1 ottrpal 2022-03-01 23 ottrpal 2022-03-02 8 ottrpal @@ -744,3 +761,20 @@ date count package 2024-02-23 50 ottrpal 2024-02-24 10 ottrpal 2024-02-25 8 ottrpal +2024-02-26 11 ottrpal +2024-02-27 45 ottrpal +2024-02-28 20 ottrpal +2024-02-29 8 ottrpal +2024-03-01 47 ottrpal +2024-03-02 3 ottrpal +2024-03-03 3 ottrpal +2024-03-04 47 ottrpal +2024-03-05 7 ottrpal +2024-03-06 12 ottrpal +2024-03-07 50 ottrpal +2024-03-08 12 ottrpal +2024-03-09 5 ottrpal +2024-03-10 46 ottrpal +2024-03-11 5 ottrpal +2024-03-12 10 ottrpal +2024-03-13 53 ottrpal diff --git a/docs/metricminer_data/ga/ga_dimensions.tsv b/docs/metricminer_data/ga/ga_dimensions.tsv index 6a76e0f..3dd28a9 100644 --- a/docs/metricminer_data/ga/ga_dimensions.tsv +++ b/docs/metricminer_data/ga/ga_dimensions.tsv @@ -1,6 +1,7 @@ website day month year country fullPageUrl dummy-website-2 11 01 2024 Germany metricminer.github.io/my-cool-repo/ dummy-website-2 11 01 2024 United States metricminer.github.io/my-cool-repo/ +dummy-website-2 14 03 2024 United States metricminer.github.io/my-cool-repo/ dummy-website 10 01 2024 Germany metricminer.github.io/dummy-website/ dummy-website 10 01 2024 Russia metricminer.github.io/dummy-website/ dummy-website 10 01 2024 United States metricminer.github.io/dummy-website/ diff --git a/docs/metricminer_data/ga/ga_link_clicks.tsv b/docs/metricminer_data/ga/ga_link_clicks.tsv index 2ffa3a8..2439fa8 100644 --- a/docs/metricminer_data/ga/ga_link_clicks.tsv +++ b/docs/metricminer_data/ga/ga_link_clicks.tsv @@ -1,4 +1,5 @@ website linkUrl dummy-website-2 +dummy-website-2 https://www.metricminer.org/ dummy-website dummy-website https://www.metricminer.org/ diff --git a/docs/metricminer_data/ga/ga_metrics.tsv b/docs/metricminer_data/ga/ga_metrics.tsv index f14cfdc..35eeb05 100644 --- a/docs/metricminer_data/ga/ga_metrics.tsv +++ b/docs/metricminer_data/ga/ga_metrics.tsv @@ -1,3 +1,3 @@ website activeUsers newUsers totalUsers eventCountPerUser screenPageViewsPerUser sessions averageSessionDuration screenPageViews engagementRate -dummy-website-2 2 2 2 4 1 2 4.6175325 2 0 +dummy-website-2 3 3 3 4.333333333333333 1 3 3.6102060000000002 3 0 dummy-website 4 4 4 15 4.25 6 54.992872166666665 17 0.6666666666666666 diff --git a/docs/metricminer_data/github/github.tsv b/docs/metricminer_data/github/github.tsv index 5911135..6f71510 100644 --- a/docs/metricminer_data/github/github.tsv +++ b/docs/metricminer_data/github/github.tsv @@ -1,3 +1,3 @@ repo_name num_forks num_contributors total_contributions num_stars health_percentage -fhdsl/metricminer NA 4 406 1 37 +fhdsl/metricminer NA 4 432 1 37 fhdsl/metricminer.org NA 2 28 0 37 diff --git a/docs/metricminer_data/github/github_timecourse.tsv b/docs/metricminer_data/github/github_timecourse.tsv new file mode 100644 index 0000000..b68df59 --- /dev/null +++ b/docs/metricminer_data/github/github_timecourse.tsv @@ -0,0 +1,13 @@ +repo timestamp count_clones uniques_clones count_views uniques_views +fhdsl/metricminer 2024-03-01 10 1 16 3 +fhdsl/metricminer 2024-03-04 1 1 6 1 +fhdsl/metricminer 2024-03-05 35 5 26 3 +fhdsl/metricminer 2024-03-06 56 13 21 1 +fhdsl/metricminer 2024-03-08 1 1 4 3 +fhdsl/metricminer 2024-03-11 1 1 2 2 +fhdsl/metricminer 2024-03-07 NA NA 3 1 +fhdsl/metricminer 2024-03-09 NA NA 1 1 +fhdsl/metricminer 2024-03-13 NA NA 1 1 +fhdsl/metricminer 2024-03-14 NA NA 11 1 +fhdsl/metricminer.org 2024-03-04 1 1 NA NA +fhdsl/metricminer.org NA NA NA 0 0 diff --git a/docs/metricminer_data/youtube/youtube.tsv b/docs/metricminer_data/youtube/youtube.tsv index 93549f4..a3db0d4 100644 --- a/docs/metricminer_data/youtube/youtube.tsv +++ b/docs/metricminer_data/youtube/youtube.tsv @@ -1,3 +1,3 @@ video viewCount likeCount dislikeCount favoriteCount commentCount XN_QPRrJZAw 3 0 0 0 0 -YkYnni-WuaQ 20 0 0 0 0 +YkYnni-WuaQ 21 0 0 0 0 diff --git a/docs/refresh-scripts/refresh-citations.R b/docs/refresh-scripts/refresh-citations.R new file mode 100644 index 0000000..e7ee71e --- /dev/null +++ b/docs/refresh-scripts/refresh-citations.R @@ -0,0 +1,57 @@ +# C. Savonen + +# Download that Citation Data + +library(metricminer) +library(magrittr) + +# Find .git root directory +root_dir <- rprojroot::find_root(rprojroot::has_dir(".git")) +source(file.path(root_dir, "refresh-scripts", "folder-setup.R")) + +folder_path <- file.path("metricminer_data", "citations") + +# Declare and read in config file +yaml_file_path <- file.path(root_dir, "_config_automation.yml") +yaml <- yaml::read_yaml(yaml_file_path) + +# Authorize Google +auth_from_secret("google", + refresh_token = Sys.getenv("METRICMINER_GOOGLE_REFRESH"), + access_token = Sys.getenv("METRICMINER_GOOGLE_ACCESS"), + cache = TRUE +) + +setup_folders( + folder_path = folder_path, + google_entry = "citation_googlesheet", + config_file = yaml_file_path, + data_name = "citation" +) + +yaml <- yaml::read_yaml(yaml_file_path) + +### Get citation data + +all_papers <- lapply(yaml$citation_papers, function(paper) { + df <- get_citation_count(paper) + return(df) +}) + +all_papers <- dplyr::bind_rows(all_papers) + + + +if (yaml$data_dest == "google") { + googlesheets4::write_sheet(all_papers, + ss = yaml$citation_googlesheet, + sheet = "citations" + ) +} + +if (yaml$data_dest == "github") { + readr::write_tsv(all_papers, + file.path(folder_path, "citations.tsv") + ) +} +sessionInfo() diff --git a/docs/resources/dictionary.txt b/docs/resources/dictionary.txt index 7bd3f98..a639ef6 100644 --- a/docs/resources/dictionary.txt +++ b/docs/resources/dictionary.txt @@ -1,10 +1,13 @@ +Auth Analytics Calendly +config css Dockerfile Dockerhub favicon GH +github Github GitHub Google @@ -15,10 +18,12 @@ HTTPS ITCR lightblue lightgreen +lfs Loqui metricminer NCI OTTR +repo Rmd subdir Slido diff --git a/docs/resources/exclude_files.txt b/docs/resources/exclude_files.txt new file mode 100644 index 0000000..12ad5d7 --- /dev/null +++ b/docs/resources/exclude_files.txt @@ -0,0 +1,5 @@ +About.Rmd +docs/* +style-sets/* +manuscript/* +CODE_OF_CONDUCT.md diff --git a/docs/slido.html b/docs/slido.html index 7c8828c..72b8973 100644 --- a/docs/slido.html +++ b/docs/slido.html @@ -260,6 +260,13 @@ Calendly
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • @@ -308,7 +308,7 @@

    Slido

    -

    06 March, 2024

    +

    15 March, 2024

    diff --git a/docs/youtube.html b/docs/youtube.html index 9197da5..7b45dcd 100644 --- a/docs/youtube.html +++ b/docs/youtube.html @@ -260,6 +260,13 @@ Calendly
  • +
  • + + + + Citations + +
  • @@ -281,13 +288,6 @@ Google Analytics
  • -
  • - - - - Slido - -
  • @@ -308,7 +308,7 @@

    YouTube

    -

    06 March, 2024

    +

    15 March, 2024

    @@ -357,7 +357,7 @@

    Preview

    YkYnni-WuaQ -20 +21 0 0 0