Skip to content

Instantly share code, notes, and snippets.

View lilbud's full-sized avatar

Brian lilbud

View GitHub Profile
@lilbud
lilbud / main.yml
Created May 14, 2024 16:27
ES-DE Theme Asset Update Workflow
name: Grab Latest Assets
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@lilbud
lilbud / setlist.R
Created June 9, 2023 22:15
code for setlist find
get_setlist <- function(gig_url = "/gig:1978-09-20-capitol-theatre-passaic-nj") { # nolint
base_url <- "http://brucebase.wikidot.com"
html <- rvest::read_html(paste0(base_url, gig_url))
# check if there is a set list known for this concert
setlist_check <- !"No set details known." %in%
(html %>%
html_elements("p") %>%
html_text())