├── .editorconfig ├── .github └── workflows │ ├── README.md │ ├── pr-close-signal.yaml │ ├── pr-comment.yaml │ ├── pr-post-remove-branch.yaml │ ├── pr-preflight.yaml │ ├── pr-receive.yaml │ ├── sandpaper-main.yaml │ ├── sandpaper-version.txt │ ├── update-cache.yaml │ └── update-workflows.yaml ├── .gitignore ├── .zenodo.json ├── AUTHORS ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config.yaml ├── episodes ├── 01-regular-expressions.md ├── 02-match-extract-strings.md ├── 03-quiz.md ├── 04-exercises.md ├── data │ └── swcCoC.md └── files │ ├── PLS_FY17.zip │ ├── quiz.docx │ ├── quizAnswers.docx │ └── regexslides.pdf ├── index.md ├── instructors └── instructor-notes.md ├── learners ├── discuss.md ├── reference.md └── setup.md ├── profiles └── learner-profiles.md └── site └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/pr-close-signal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/pr-close-signal.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-post-remove-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/pr-post-remove-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/pr-preflight.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/pr-receive.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/sandpaper-main.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-version.txt: -------------------------------------------------------------------------------- 1 | 0.16.12 2 | -------------------------------------------------------------------------------- /.github/workflows/update-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/update-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/update-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.github/workflows/update-workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/.zenodo.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/AUTHORS -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/CITATION -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/config.yaml -------------------------------------------------------------------------------- /episodes/01-regular-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/01-regular-expressions.md -------------------------------------------------------------------------------- /episodes/02-match-extract-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/02-match-extract-strings.md -------------------------------------------------------------------------------- /episodes/03-quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/03-quiz.md -------------------------------------------------------------------------------- /episodes/04-exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/04-exercises.md -------------------------------------------------------------------------------- /episodes/data/swcCoC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/data/swcCoC.md -------------------------------------------------------------------------------- /episodes/files/PLS_FY17.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/files/PLS_FY17.zip -------------------------------------------------------------------------------- /episodes/files/quiz.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/files/quiz.docx -------------------------------------------------------------------------------- /episodes/files/quizAnswers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/files/quizAnswers.docx -------------------------------------------------------------------------------- /episodes/files/regexslides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/episodes/files/regexslides.pdf -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/index.md -------------------------------------------------------------------------------- /instructors/instructor-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/instructors/instructor-notes.md -------------------------------------------------------------------------------- /learners/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/learners/discuss.md -------------------------------------------------------------------------------- /learners/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/learners/reference.md -------------------------------------------------------------------------------- /learners/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/learners/setup.md -------------------------------------------------------------------------------- /profiles/learner-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/profiles/learner-profiles.md -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-data-intro/HEAD/site/README.md --------------------------------------------------------------------------------