Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lessons from @frobnitzem #59

Merged
merged 2 commits into from
Oct 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/expand-side-column
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% comment %}
* when the side column with the tags is displayed, we need to make it
* as tall as the other side of the page, so the stickyness of the
* as tall as the other side of the page, so the stickiness of the
* 'back to the top' works. This jQuery is activated when scrolling happens
* and checks that the screen is 628px wide to change the height of the column
{% endcomment %}
Expand Down
3 changes: 2 additions & 1 deletion feeds/other_lessons.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ check_repo_info <- function(.d, fields) {

make_community_lessons_feed <- function(path, ...) {
jsc <- get_org_topics("FZJ-JSC")
res <- dplyr::bind_rows(jsc) %>%
frobnitzem <- get_org_topics("frobnitzem")
res <- dplyr::bind_rows(jsc, frobnitzem) %>%
dplyr::select(-private) %>%
dplyr::filter(grepl("hpc-carpentry", github_topics)) %>%
dplyr::filter(grepl("lesson", github_topics)) %>%
Expand Down