Skip to content

Instantly share code, notes, and snippets.

@jvaverka
jvaverka / github-graphql-api.md
Last active October 23, 2023 17:36 — forked from oleksis/Notes.md
Discussion API, Graphql using gh CLI
@jvaverka
jvaverka / extract-sciml-schedule.jl
Created October 5, 2023 17:13
Get titles, abstracts and presenter names for all talks at JuliaCon23 in the SciML track.
using JSON3
download_path = joinpath(homedir(), "Downloads")
json_file = joinpath(download_path, "schedule.json")
download("https://pretalx.com/juliacon2023/schedule/export/schedule.json", json_file)
json = JSON3.read(json_file)
talks = []
for day in json.schedule.conference.days
for rooms in values(day.rooms)