Workshop slides are now available in the repository, ad-free, adaptable, and for your enjoyment! We hope you enjoy the slides and learn something new from them. If you have any questions, feel free to contact us on our Discord server!
A friendlier way to view these files may be accessed through our workshop archive page on our website.
This work is licensed under Attribution-NonCommercial-ShareAlike 4.0 International
- Fork this repository.
- Edit the
metadata.yml
file, located in the folder of the year you want to add a workshop to. - Locate or create a new category for the workshop, which are the keys in the
metadata.yml
file. - Refer to the schema below to fill in the details of the workshop. Workshops are represented as objects in the array of the category.
- Slides can be uploaded to the same directory as the
metadata.yml
file, and referenced by the filename in theslides
property.
- Slides can be uploaded to the same directory as the
- Create a pull request to merge your changes into the main repository.
Each file in /:year/metadata.yml has the following schema:
- Each key represents a category of workshop.
- Each key contains an array of objects, where each object represents a single workshop.
- The object has the following properties:
Property | Type | Optional | Description |
---|---|---|---|
name | string | No | The name of the workshop. |
host | string[] | No | An array of the names of the hosts of the workshop. |
description | string | No | The title of the workshop. |
date | string | No | The date of the workshop in MM-DD format, since the year is already specified in the file path. |
code | string | Yes | The URL to the starter code code of the workshop. |
slides | string | Yes | The filename of the slides of the workshop. The slides must be in the same directory as the metadata.yml file. |
recording | string | Yes | The URL to the recording of the workshop. |
You may view the JSON schema for detailed information.
The "API" allows programmatic access to the workshop archive. It is not a true API, but rather a collection of YML files that can be accessed through GET requests.
Returns a list of more links to every year's workshop archive.
- /2021/metadata.yml
- /2022/metadata.yml
- /2023/metadata.yml
Returns a list of all workshops in the specified year.
Category Name 1:
- name: Example Workshop
date: '11-06' # MM-DD
host:
- Host
description: This is an example workshop.
code: https://github.com/utmgdsc/starter-code # optional
slides: A pdf file in the same directory as this file. # optional
recording: https://www.youtube.com/watch?v=dQw4w9WgXcQ # optional
Category Name 2:
- name: Example Workshop
date: '11-06'
host:
- Host
description: This is an example workshop.
Returns a list of all workshops in the archive.
2023:
Category Name 1:
- name: Example Workshop
date: '11-06'
host:
- Host
description: This is an example workshop.
code: