├── .appends └── .github │ └── labels.yml ├── .github ├── labels.yml └── workflows │ └── sync-labels.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── about ├── README.md ├── architecture.md ├── conception │ ├── README.md │ ├── code-review.md │ ├── emotional-stages │ │ ├── README.md │ │ ├── feelings-code-review.png │ │ ├── feelings-learning-to-code.png │ │ ├── feelings-trying-something-new.png │ │ └── user-journey.pdf │ ├── goals.md │ └── progression.md ├── glossary.md ├── goal-of-exercism.md ├── roadmap.md └── scope-of-a-track.md ├── contributing-to-language-tracks └── README.md ├── contributing ├── filing-a-bug-report.md ├── git-basics.md ├── providing-feedback.md └── pull-request-guidelines.md ├── finding-your-way.md ├── language-tracks ├── README.md ├── configuration │ ├── README.md │ ├── configlet.md │ ├── exercises.md │ └── track.md ├── documentation │ ├── for-consumers.md │ ├── for-contributors.md │ └── introductory-copy.md ├── exercises │ ├── README.md │ ├── anatomy │ │ ├── README.md │ │ ├── readmes.md │ │ ├── reference-solution.md │ │ └── test-suites.md │ └── versioning.md └── launch │ ├── README.md │ ├── beta.md │ ├── finding-mentors.md │ ├── first-exercise.md │ ├── landing-page.md │ ├── open-issues.md │ ├── preview-mode.md │ └── tooling-and-ci.md ├── maintaining-a-track ├── README.md ├── bootstrap-new-track.md ├── inviting-new-maintainers.md ├── maintainer-configuration.md ├── regenerating-exercise-readmes.md └── starting-new-track.md └── you-can-help ├── implement-an-exercise-from-specification.md ├── improve-exercise-metadata.md ├── make-up-new-exercises.md ├── review-pull-requests.md ├── triage-issues.md └── update-exercise-test-suites.md /.appends/.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/.appends/.github/labels.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/README.md -------------------------------------------------------------------------------- /about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/README.md -------------------------------------------------------------------------------- /about/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/architecture.md -------------------------------------------------------------------------------- /about/conception/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/README.md -------------------------------------------------------------------------------- /about/conception/code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/code-review.md -------------------------------------------------------------------------------- /about/conception/emotional-stages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/emotional-stages/README.md -------------------------------------------------------------------------------- /about/conception/emotional-stages/feelings-code-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/emotional-stages/feelings-code-review.png -------------------------------------------------------------------------------- /about/conception/emotional-stages/feelings-learning-to-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/emotional-stages/feelings-learning-to-code.png -------------------------------------------------------------------------------- /about/conception/emotional-stages/feelings-trying-something-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/emotional-stages/feelings-trying-something-new.png -------------------------------------------------------------------------------- /about/conception/emotional-stages/user-journey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/emotional-stages/user-journey.pdf -------------------------------------------------------------------------------- /about/conception/goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/goals.md -------------------------------------------------------------------------------- /about/conception/progression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/conception/progression.md -------------------------------------------------------------------------------- /about/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/glossary.md -------------------------------------------------------------------------------- /about/goal-of-exercism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/goal-of-exercism.md -------------------------------------------------------------------------------- /about/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/roadmap.md -------------------------------------------------------------------------------- /about/scope-of-a-track.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/about/scope-of-a-track.md -------------------------------------------------------------------------------- /contributing-to-language-tracks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/contributing-to-language-tracks/README.md -------------------------------------------------------------------------------- /contributing/filing-a-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/contributing/filing-a-bug-report.md -------------------------------------------------------------------------------- /contributing/git-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/contributing/git-basics.md -------------------------------------------------------------------------------- /contributing/providing-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/contributing/providing-feedback.md -------------------------------------------------------------------------------- /contributing/pull-request-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/contributing/pull-request-guidelines.md -------------------------------------------------------------------------------- /finding-your-way.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/finding-your-way.md -------------------------------------------------------------------------------- /language-tracks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/README.md -------------------------------------------------------------------------------- /language-tracks/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/configuration/README.md -------------------------------------------------------------------------------- /language-tracks/configuration/configlet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/configuration/configlet.md -------------------------------------------------------------------------------- /language-tracks/configuration/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/configuration/exercises.md -------------------------------------------------------------------------------- /language-tracks/configuration/track.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/configuration/track.md -------------------------------------------------------------------------------- /language-tracks/documentation/for-consumers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/documentation/for-consumers.md -------------------------------------------------------------------------------- /language-tracks/documentation/for-contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/documentation/for-contributors.md -------------------------------------------------------------------------------- /language-tracks/documentation/introductory-copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/documentation/introductory-copy.md -------------------------------------------------------------------------------- /language-tracks/exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/exercises/README.md -------------------------------------------------------------------------------- /language-tracks/exercises/anatomy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/exercises/anatomy/README.md -------------------------------------------------------------------------------- /language-tracks/exercises/anatomy/readmes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/exercises/anatomy/readmes.md -------------------------------------------------------------------------------- /language-tracks/exercises/anatomy/reference-solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/exercises/anatomy/reference-solution.md -------------------------------------------------------------------------------- /language-tracks/exercises/anatomy/test-suites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/exercises/anatomy/test-suites.md -------------------------------------------------------------------------------- /language-tracks/exercises/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/exercises/versioning.md -------------------------------------------------------------------------------- /language-tracks/launch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/README.md -------------------------------------------------------------------------------- /language-tracks/launch/beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/beta.md -------------------------------------------------------------------------------- /language-tracks/launch/finding-mentors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/finding-mentors.md -------------------------------------------------------------------------------- /language-tracks/launch/first-exercise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/first-exercise.md -------------------------------------------------------------------------------- /language-tracks/launch/landing-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/landing-page.md -------------------------------------------------------------------------------- /language-tracks/launch/open-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/open-issues.md -------------------------------------------------------------------------------- /language-tracks/launch/preview-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/preview-mode.md -------------------------------------------------------------------------------- /language-tracks/launch/tooling-and-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/language-tracks/launch/tooling-and-ci.md -------------------------------------------------------------------------------- /maintaining-a-track/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/maintaining-a-track/README.md -------------------------------------------------------------------------------- /maintaining-a-track/bootstrap-new-track.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/maintaining-a-track/bootstrap-new-track.md -------------------------------------------------------------------------------- /maintaining-a-track/inviting-new-maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/maintaining-a-track/inviting-new-maintainers.md -------------------------------------------------------------------------------- /maintaining-a-track/maintainer-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/maintaining-a-track/maintainer-configuration.md -------------------------------------------------------------------------------- /maintaining-a-track/regenerating-exercise-readmes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/maintaining-a-track/regenerating-exercise-readmes.md -------------------------------------------------------------------------------- /maintaining-a-track/starting-new-track.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/maintaining-a-track/starting-new-track.md -------------------------------------------------------------------------------- /you-can-help/implement-an-exercise-from-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/you-can-help/implement-an-exercise-from-specification.md -------------------------------------------------------------------------------- /you-can-help/improve-exercise-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/you-can-help/improve-exercise-metadata.md -------------------------------------------------------------------------------- /you-can-help/make-up-new-exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/you-can-help/make-up-new-exercises.md -------------------------------------------------------------------------------- /you-can-help/review-pull-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/you-can-help/review-pull-requests.md -------------------------------------------------------------------------------- /you-can-help/triage-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/you-can-help/triage-issues.md -------------------------------------------------------------------------------- /you-can-help/update-exercise-test-suites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/legacy-docs/HEAD/you-can-help/update-exercise-test-suites.md --------------------------------------------------------------------------------