├── .gitignore ├── 2023-plans.qmd ├── LICENSE.md ├── README.md ├── materials ├── 0-intro.key ├── 0-intro.pdf ├── 1-api-design.key ├── 1-api-design.pdf ├── 2-errors-snapshots.key ├── 2-errors-snapshots.pdf ├── 3-advanced-testing.key ├── 3-advanced-testing.pdf ├── 4-your-turn.key └── 4-your-turn.pdf └── workshop-conf-2023.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/.gitignore -------------------------------------------------------------------------------- /2023-plans.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/2023-plans.qmd -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/README.md -------------------------------------------------------------------------------- /materials/0-intro.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/0-intro.key -------------------------------------------------------------------------------- /materials/0-intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/0-intro.pdf -------------------------------------------------------------------------------- /materials/1-api-design.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/1-api-design.key -------------------------------------------------------------------------------- /materials/1-api-design.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/1-api-design.pdf -------------------------------------------------------------------------------- /materials/2-errors-snapshots.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/2-errors-snapshots.key -------------------------------------------------------------------------------- /materials/2-errors-snapshots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/2-errors-snapshots.pdf -------------------------------------------------------------------------------- /materials/3-advanced-testing.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/3-advanced-testing.key -------------------------------------------------------------------------------- /materials/3-advanced-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/3-advanced-testing.pdf -------------------------------------------------------------------------------- /materials/4-your-turn.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/4-your-turn.key -------------------------------------------------------------------------------- /materials/4-your-turn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/materials/4-your-turn.pdf -------------------------------------------------------------------------------- /workshop-conf-2023.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2023/pkg-dev-masterclass/HEAD/workshop-conf-2023.Rproj --------------------------------------------------------------------------------