Need a ruby script to hit https://app.wcbn.org/semesters/13.json (or whatever the current semester is) and create all of the show slots pseudocode: ``` resp = fetch (url) for show in resp: Slot.create(show.name, show.beginning, show.ending, show.dj.name) ```