gitextract_fzjncbcy/ ├── .editorconfig ├── .github/ │ ├── workbench-docker-version.txt │ └── workflows/ │ ├── README.md │ ├── docker_apply_cache.yaml │ ├── docker_build_deploy.yaml │ ├── docker_pr_receive.yaml │ ├── pr-close-signal.yaml │ ├── pr-comment.yaml │ ├── pr-post-remove-branch.yaml │ ├── pr-preflight.yaml │ ├── update-cache.yaml │ ├── update-workflows.yaml │ └── workflows-version.txt ├── .gitignore ├── .mailmap ├── .update-copyright.conf ├── .zenodo.json ├── AUTHORS ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── commands.mk ├── config.yaml ├── episodes/ │ ├── 01-intro.md │ ├── 02-makefiles.md │ ├── 03-variables.md │ ├── 04-dependencies.md │ ├── 05-patterns.md │ ├── 06-variables.md │ ├── 07-functions.md │ ├── 08-self-doc.md │ ├── 09-conclusion.md │ ├── data/ │ │ └── books/ │ │ ├── LICENSE_TEXTS.md │ │ ├── abyss.txt │ │ ├── isles.txt │ │ ├── last.txt │ │ └── sierra.txt │ └── files/ │ └── code/ │ ├── 02-makefile/ │ │ └── Makefile │ ├── 02-makefile-challenge/ │ │ └── Makefile │ ├── 03-variables/ │ │ └── Makefile │ ├── 03-variables-challenge/ │ │ └── Makefile │ ├── 04-dependencies/ │ │ └── Makefile │ ├── 05-patterns/ │ │ └── Makefile │ ├── 06-variables/ │ │ ├── Makefile │ │ └── config.mk │ ├── 06-variables-challenge/ │ │ └── Makefile │ ├── 07-functions/ │ │ ├── Makefile │ │ └── config.mk │ ├── 08-self-doc/ │ │ ├── Makefile │ │ └── config.mk │ ├── 09-conclusion-challenge-1/ │ │ ├── Makefile │ │ └── config.mk │ ├── 09-conclusion-challenge-2/ │ │ ├── Makefile │ │ └── config.mk │ ├── countwords.py │ ├── plotcounts.py │ └── testzipf.py ├── index.md ├── instructors/ │ └── instructor-notes.md ├── learners/ │ ├── discuss.md │ ├── reference.md │ └── setup.md ├── profiles/ │ └── learner-profiles.md ├── requirements.txt └── site/ └── README.md