gitextract_nsbykdd0/ ├── .all-contributorsrc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 01_bug_report.yml │ │ ├── 02_edit_a_chapter.yml │ │ ├── 03_new_chapter.yml │ │ ├── 04_request_translation.yml │ │ ├── 05_general.yml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── config.yml │ ├── dependabot.yaml │ ├── in-solidarity.yml │ ├── release-drafter.yml │ └── workflows/ │ ├── accessibility-alt-text-bot.yml │ ├── ci.yml │ ├── crowdin-contributors.yml │ ├── external_link_check.yml │ ├── lorem-ipsums.yml │ ├── no-bad-latin.yml │ ├── release-drafter.yml │ ├── release-workflow.yml │ ├── resources/ │ │ └── external_link_check_header.md │ ├── test-file-size.yml │ ├── validate-all-contributorsrc.yml │ ├── validate-dependabot.yml │ ├── validate_citation.yml │ ├── validate_issue_templates.yml │ └── yamllint.yaml ├── .gitignore ├── .yamllint ├── .zenodo.json ├── ACCESSIBILITY.md ├── CITATION.cff ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE_ROLES.md ├── LICENSE.md ├── README-translated/ │ ├── README-Chinese.md │ ├── README-Dutch.md │ ├── README-French.md │ ├── README-German.md │ ├── README-Indonesian.md │ ├── README-Italian.md │ ├── README-Korean.md │ ├── README-Papiamento.md │ ├── README-Portuguese.md │ └── README-Spanish.md ├── README.md ├── Vagrantfile ├── book/ │ ├── .gitignore │ ├── .words.lst │ ├── Makefile │ ├── README.md │ ├── figures/ │ │ ├── logo/ │ │ │ ├── .picasa.ini │ │ │ └── site.webmanifest │ │ ├── main-branch.kra │ │ ├── one-branch.kra │ │ ├── sub-branch.kra │ │ └── two-branches.kra │ ├── requirements.in │ ├── requirements.txt │ ├── templates/ │ │ ├── book-stats.csv │ │ ├── case-study-template/ │ │ │ ├── README.md │ │ │ ├── case-study-template.md │ │ │ └── reflection-questions.md │ │ ├── chapter-template/ │ │ │ ├── README.md │ │ │ ├── chapter-content/ │ │ │ │ ├── chapter-checklist.md │ │ │ │ ├── chapter-content.md │ │ │ │ ├── chapter-personal-stories.md │ │ │ │ └── chapter-resources.md │ │ │ └── chapter-landing-page.md │ │ └── count-chapters.sh │ └── website/ │ ├── LICENSE.md │ ├── afterword/ │ │ ├── afterword.md │ │ ├── bibliography.md │ │ ├── collaborators.md │ │ ├── contributors/ │ │ │ ├── all-contributors.md │ │ │ ├── profiles.md │ │ │ └── translators.md │ │ ├── contributors-record.md │ │ ├── data-usage-statement.md │ │ ├── glossary.md │ │ ├── legal-disclaimer.md │ │ └── subprojects.md │ ├── analytics/ │ │ └── web-analytics.js │ ├── collaboration/ │ │ ├── academic-industry/ │ │ │ ├── academic-industry-community.md │ │ │ ├── academic-industry-establish.md │ │ │ ├── case-studies/ │ │ │ │ ├── BridgeAI_IndependentScientificAdvice.md │ │ │ │ ├── practitioners-hub-case-study.md │ │ │ │ └── turing-roche-case-study.md │ │ │ ├── case-study-library.md │ │ │ ├── intro-case-studies-and-best-practices-in-academic-industry-collaboration.md │ │ │ └── online-resources-best-practices.md │ │ ├── academic-industry.md │ │ ├── ambassador-schemes/ │ │ │ ├── ambassador-schemes-establish.md │ │ │ └── ambassador-schemes-personal-story.md │ │ ├── ambassador-schemes.md │ │ ├── collaboration.md │ │ ├── github-novice/ │ │ │ ├── github-novice-advanced.md │ │ │ ├── github-novice-features.md │ │ │ ├── github-novice-firststeps.md │ │ │ └── github-novice-motivation.md │ │ ├── github-novice.md │ │ ├── leadership/ │ │ │ ├── leadership-building.md │ │ │ ├── leadership-features.md │ │ │ ├── leadership-opportunities.md │ │ │ ├── leadership-story-data-librarian.md │ │ │ └── leadership-story-hackathon.md │ │ ├── leadership.md │ │ ├── maintain-review/ │ │ │ ├── maintain-review-maintenance.md │ │ │ ├── maintain-review-merge.md │ │ │ ├── maintain-review-permissions.md │ │ │ ├── maintain-review-resources.md │ │ │ └── maintain-review-review.md │ │ ├── maintain-review.md │ │ ├── meetings-events-co-working/ │ │ │ ├── chairing.md │ │ │ ├── event-tools.md │ │ │ ├── hybrid-collab/ │ │ │ │ ├── hybrid-collab-challenges.md │ │ │ │ ├── hybrid-collab-guidelines.md │ │ │ │ └── hybrid-collab-resources.md │ │ │ ├── hybrid-collab.md │ │ │ ├── organising-coding-cafe.md │ │ │ ├── organising-conference/ │ │ │ │ ├── reg-form-template.md │ │ │ │ └── reg-forms.md │ │ │ ├── organising-conference.md │ │ │ ├── ppie-events/ │ │ │ │ ├── ppie-events-comms.md │ │ │ │ ├── ppie-events-location.md │ │ │ │ ├── ppie-events-planning.md │ │ │ │ ├── ppie-events-resources.md │ │ │ │ ├── ppie-events-schedules.md │ │ │ │ ├── ppie-events-socials.md │ │ │ │ └── ppie-events-tech.md │ │ │ ├── ppie-events.md │ │ │ ├── remote-collab/ │ │ │ │ ├── coworking.md │ │ │ │ ├── event-participation.md │ │ │ │ ├── informal-chats.md │ │ │ │ ├── organising-remote-meetings.md │ │ │ │ ├── remote-collab-guidelines.md │ │ │ │ ├── remote-collab-prosandcons.md │ │ │ │ ├── remote-collab-team.md │ │ │ │ └── remote-collab-useful-resources.md │ │ │ └── remote-collab.md │ │ ├── meetings-events-co-working.md │ │ ├── new-community/ │ │ │ ├── new-community-differences.md │ │ │ ├── new-community-guide.md │ │ │ ├── new-community-teamwork.md │ │ │ └── new-community-techissues.md │ │ ├── new-community.md │ │ ├── oss-sustainability/ │ │ │ ├── oss-sustainability-challenges.md │ │ │ └── oss-sustainability-examples.md │ │ ├── research-infrastructure-roles/ │ │ │ ├── community-manager.md │ │ │ ├── data-steward-personal-story.md │ │ │ ├── data-steward.md │ │ │ ├── data-wrangler.md │ │ │ ├── ram.md │ │ │ ├── research-community-manager-personal-story-1.md │ │ │ ├── research-infrastructure-developer.md │ │ │ ├── rse-personal-story.md │ │ │ └── rse.md │ │ ├── research-infrastructure-roles.md │ │ ├── shared-ownership/ │ │ │ ├── shared-ownership-challenges.md │ │ │ ├── shared-ownership-defaults.md │ │ │ ├── shared-ownership-models.md │ │ │ └── shared-ownership-projects.md │ │ ├── shared-ownership.md │ │ ├── stakeholder-engagement.md │ │ ├── team-manual/ │ │ │ └── team-manual-on-off-boarding.md │ │ └── team-manual.md │ ├── communication/ │ │ ├── aa/ │ │ │ ├── aa-equitable.md │ │ │ ├── aa-misconduct.md │ │ │ ├── aa-overview.md │ │ │ ├── aa-resources.md │ │ │ ├── aa-stories-community.md │ │ │ ├── aa-stories-interdisciplinary.md │ │ │ ├── aa-tips.md │ │ │ └── aa-traditions.md │ │ ├── aa.md │ │ ├── binder/ │ │ │ └── zero-to-binder.md │ │ ├── binder.md │ │ ├── blogs/ │ │ │ ├── blogs-personal-stories.md │ │ │ └── blogs-webpage.md │ │ ├── blogs.md │ │ ├── citable/ │ │ │ ├── citable-cff.md │ │ │ ├── citable-cffinit.md │ │ │ ├── citable-cite.md │ │ │ ├── citable-linking.md │ │ │ ├── citable-metadata.md │ │ │ ├── citable-orcid.md │ │ │ ├── citable-otherscite.md │ │ │ ├── citable-resources.md │ │ │ ├── citable-steps.md │ │ │ └── citable-versioning.md │ │ ├── citable.md │ │ ├── comms-overview/ │ │ │ ├── comms-overview-accessibly.md │ │ │ ├── comms-overview-principles.md │ │ │ └── comms-overview-resources.md │ │ ├── comms-overview.md │ │ ├── communication.md │ │ ├── dif-articles/ │ │ │ ├── data.md │ │ │ ├── methods.md │ │ │ ├── micro.md │ │ │ ├── reg.md │ │ │ └── software.md │ │ ├── dif-articles.md │ │ ├── lay-summaries/ │ │ │ └── lay-summaries-personal-stories.md │ │ ├── lay-summaries.md │ │ ├── open/ │ │ │ ├── curriculum-development.md │ │ │ ├── education.md │ │ │ └── embedding-ds.md │ │ ├── open.md │ │ ├── os-comms/ │ │ │ ├── os-comms-channels.md │ │ │ └── os-comms-issue-tracking.md │ │ ├── os-comms.md │ │ ├── peer-review/ │ │ │ ├── peer-review-code.md │ │ │ ├── peer-review-guidance.md │ │ │ ├── peer-review-open.md │ │ │ ├── peer-review-overview.md │ │ │ └── peer-review-resources.md │ │ ├── peer-review.md │ │ ├── personal/ │ │ │ ├── personal-cv.md │ │ │ └── personal-website.md │ │ ├── personal.md │ │ ├── podcasts/ │ │ │ └── podcasts-personal-stories.md │ │ ├── podcasts.md │ │ ├── presentations/ │ │ │ ├── presentations-personal-stories.md │ │ │ └── presentations-remote.md │ │ ├── presentations.md │ │ ├── research-objects/ │ │ │ ├── ro-concepts.md │ │ │ └── ro-implementation.md │ │ ├── research-objects.md │ │ ├── social-media/ │ │ │ ├── social-media-twitter-multiple.md │ │ │ └── social-media-twitter-tips.md │ │ └── social-media.md │ ├── community-handbook/ │ │ ├── accessibility/ │ │ │ ├── accessibility-alt-text.md │ │ │ ├── accessibility-comms-platforms.md │ │ │ ├── accessibility-event-organising.md │ │ │ └── accessibility-policy.md │ │ ├── accessibility.md │ │ ├── acknowledgement/ │ │ │ ├── acknowledgement-examples.md │ │ │ ├── acknowledgement-members.md │ │ │ └── acknowledgement-record.md │ │ ├── acknowledgement.md │ │ ├── bookdash/ │ │ │ ├── bookdash-after.md │ │ │ ├── bookdash-application.md │ │ │ ├── bookdash-events.md │ │ │ ├── bookdash-illustrator.md │ │ │ ├── bookdash-logistics.md │ │ │ └── bookdash-selection.md │ │ ├── bookdash.md │ │ ├── coc/ │ │ │ ├── coc-acknowledgement.md │ │ │ ├── coc-details.md │ │ │ ├── coc-enforcement.md │ │ │ └── coc-reporting.md │ │ ├── coc.md │ │ ├── communication-channels/ │ │ │ ├── slack-start-guide.md │ │ │ └── slack-welcome-guide.md │ │ ├── communication-channels.md │ │ ├── community-calls/ │ │ │ ├── calendar.md │ │ │ ├── community-calls-collabcafe.md │ │ │ ├── community-calls-forums.md │ │ │ ├── community-calls-motivation.md │ │ │ └── community-calls-working-groups.md │ │ ├── community-calls.md │ │ ├── community-handbook.md │ │ ├── contributing-chapters/ │ │ │ ├── contributing-templates.md │ │ │ └── contributing-workflow.md │ │ ├── contributing-chapters.md │ │ ├── contributing.md │ │ ├── fireside-chat/ │ │ │ ├── fireside-chat-checklist.md │ │ │ └── fireside-chat-roles.md │ │ ├── fireside-chat.md │ │ ├── github-gardening.md │ │ ├── infrastructure/ │ │ │ ├── infrastructure-contributors.md │ │ │ ├── infrastructure-dns.md │ │ │ ├── infrastructure-external-link-check.md │ │ │ ├── infrastructure-pathways.md │ │ │ ├── infrastructure-plugins.md │ │ │ ├── infrastructure-redirects.md │ │ │ └── infrastructure-teams-as-code.md │ │ ├── infrastructure.md │ │ ├── local-build.md │ │ ├── newsletters/ │ │ │ ├── newsletters-process.md │ │ │ ├── newsletters-style.md │ │ │ └── newsletters-template.md │ │ ├── newsletters.md │ │ ├── onboarding-offboarding/ │ │ │ ├── offboarding-core-team.md │ │ │ ├── onboarding-core-team.md │ │ │ └── onboarding-general-calls.md │ │ ├── onboarding-offboarding.md │ │ ├── pathways/ │ │ │ ├── pathways-creation.md │ │ │ └── pathways-example.md │ │ ├── pathways.md │ │ ├── presenting.md │ │ ├── style/ │ │ │ ├── consistency/ │ │ │ │ ├── consistency-formatting.md │ │ │ │ ├── consistency-language.md │ │ │ │ └── consistency-structure.md │ │ │ ├── style-blocks.md │ │ │ ├── style-citing.md │ │ │ ├── style-consistency.md │ │ │ ├── style-crossref.md │ │ │ ├── style-custom-roles-and-directives.md │ │ │ ├── style-figures.md │ │ │ ├── style-glossary.md │ │ │ ├── style-videos.md │ │ │ └── style-writing-markdown.md │ │ ├── style.md │ │ ├── templates/ │ │ │ ├── template-bookdash-feedback.md │ │ │ ├── template-bookdash-github.md │ │ │ ├── template-bookdash-index.md │ │ │ ├── template-bookdash-notes.md │ │ │ ├── template-bookdash-precall.md │ │ │ ├── template-coworking-collabcafe.md │ │ │ ├── template-fireside-chat.md │ │ │ ├── template-new-chapter-announcement │ │ │ └── template-newsletter-draft.md │ │ ├── templates.md │ │ ├── translation/ │ │ │ ├── translation-getting-started.md │ │ │ ├── translation-hello-crowdin.md │ │ │ ├── translation-localisation.md │ │ │ └── translation-workflow.md │ │ └── translation.md │ ├── ethical-research/ │ │ ├── activism/ │ │ │ ├── activism-case-study-google.md │ │ │ ├── activism-env-impact.md │ │ │ ├── activism-robodebt.md │ │ │ ├── activism-unionisation.md │ │ │ └── activism-whistleblowing.md │ │ ├── activism.md │ │ ├── cultural-change/ │ │ │ ├── alt-models-discussion.md │ │ │ └── cc-examples.md │ │ ├── cultural-change.md │ │ ├── data-feminism/ │ │ │ └── data-feminism-power.md │ │ ├── data-feminism.md │ │ ├── data-hazards/ │ │ │ ├── dh-case-study.md │ │ │ ├── dh-how-to-use.md │ │ │ └── dh-intro.md │ │ ├── data-hazards.md │ │ ├── ethical-research.md │ │ ├── ethics-committees.md │ │ ├── ethics-intro.md │ │ ├── ethics-open-source-governance.md │ │ ├── internal-policy.md │ │ ├── law-policy/ │ │ │ ├── law-policy-ethics.md │ │ │ ├── law-policy-resources.md │ │ │ └── law-policy-rights.md │ │ ├── law-policy.md │ │ ├── preclinical-research.md │ │ ├── self-reflection/ │ │ │ ├── sr-positionality.md │ │ │ ├── sr-power.md │ │ │ ├── sr-prompts.md │ │ │ └── sr-resources.md │ │ ├── self-reflection.md │ │ └── social-data.md │ ├── foreword/ │ │ ├── background.md │ │ ├── cite.md │ │ ├── community.md │ │ ├── embracing-digital-commons.md │ │ ├── emergent-strategy.md │ │ ├── faqs.md │ │ ├── foreword.md │ │ ├── governance/ │ │ │ ├── governance-roles.md │ │ │ └── ways-of-working.md │ │ ├── governance.md │ │ ├── guiding-principles.md │ │ └── navigate.md │ ├── index.md │ ├── myst.yml │ ├── pathways/ │ │ ├── pathways-community-management-concepts.md │ │ ├── pathways-community-management-operations.md │ │ ├── pathways-data-science-without-borders.md │ │ ├── pathways-data-stewards.md │ │ ├── pathways-early-career-researchers.md │ │ ├── pathways-project-leaders.md │ │ ├── pathways-research-software-engineers.md │ │ ├── pathways-software-citation.md │ │ └── pathways.md │ ├── plugins/ │ │ └── profile.mjs │ ├── project-design/ │ │ ├── data-security/ │ │ │ ├── data-governance/ │ │ │ │ ├── bigcode_casestudy.md │ │ │ │ └── data-gov-ml.md │ │ │ ├── data-governance.md │ │ │ ├── sdp/ │ │ │ │ ├── biological.md │ │ │ │ ├── combined.md │ │ │ │ ├── confidential.md │ │ │ │ ├── metadata.md │ │ │ │ ├── personal.md │ │ │ │ └── types.md │ │ │ ├── sdp.md │ │ │ ├── sdpm/ │ │ │ │ ├── data-privacy-strategies.md │ │ │ │ ├── informed.md │ │ │ │ ├── resources.md │ │ │ │ └── sharing-sensitive-data.md │ │ │ ├── sdpm.md │ │ │ └── sdpw.md │ │ ├── data-security.md │ │ ├── info-management/ │ │ │ ├── code-styling.md │ │ │ └── filenaming.md │ │ ├── info-management.md │ │ ├── missing-data/ │ │ │ ├── missing-data-checklist-resources.md │ │ │ ├── missing-data-methods.md │ │ │ ├── missing-data-structured-missingness.md │ │ │ ├── missing-data-structures.md │ │ │ └── missing-data-visualising-missingness.md │ │ ├── missing-data.md │ │ ├── pd-overview/ │ │ │ ├── pd-checklist.md │ │ │ ├── pd-overview-methods.md │ │ │ ├── pd-overview-planning.md │ │ │ ├── pd-overview-repro.md │ │ │ ├── pd-overview-sharing.md │ │ │ ├── pd-overview-version.md │ │ │ ├── project-repo/ │ │ │ │ ├── project-repo-advanced.md │ │ │ │ ├── project-repo-contributors.md │ │ │ │ ├── project-repo-participation.md │ │ │ │ ├── project-repo-readme.md │ │ │ │ ├── project-repo-resources.md │ │ │ │ └── project-repo-roadmapping.md │ │ │ └── project-repo.md │ │ ├── pd-overview.md │ │ ├── project-design.md │ │ ├── project-management-methodologies/ │ │ │ └── overview.md │ │ ├── risks-of-bias/ │ │ │ ├── confounding-variables.md │ │ │ ├── discrimination-bias.md │ │ │ ├── identifying-risks-of-bias.md │ │ │ └── validation-generalisability.md │ │ ├── risks-of-bias.md │ │ ├── sdpw/ │ │ │ ├── pd-sdp-private-learning.md │ │ │ ├── pd-sdp-sensitive-code.md │ │ │ ├── pd-sdp-sensitive-files.md │ │ │ └── pd-sdp-trew.md │ │ ├── stakeholders/ │ │ │ ├── persona/ │ │ │ │ ├── persona-contributors.md │ │ │ │ └── persona-creation.md │ │ │ └── persona.md │ │ └── stakeholders.md │ ├── references.bib │ └── reproducible-research/ │ ├── binderhub/ │ │ ├── binderhub-build.md │ │ ├── binderhub-compute.md │ │ ├── binderhub-introduction.md │ │ └── binderhub-resources.md │ ├── binderhub.md │ ├── case-studies/ │ │ └── case-study-statistical.md │ ├── case-studies.md │ ├── ci/ │ │ ├── ci-building-gh-actions.md │ │ ├── ci-github-actions.md │ │ ├── ci-options.md │ │ ├── ci-practices.md │ │ └── ci-resources.md │ ├── ci.md │ ├── code-documentation/ │ │ ├── code-documentation-code.md │ │ ├── code-documentation-project.md │ │ └── code-documentation-resources.md │ ├── code-documentation.md │ ├── code-quality/ │ │ ├── code-quality-naming.md │ │ ├── code-quality-readability.md │ │ ├── code-quality-resources.md │ │ ├── code-quality-robust.md │ │ ├── code-quality-style-formatting.md │ │ └── code-quality-style.md │ ├── code-quality.md │ ├── code-reuse/ │ │ ├── code-reuse-details.md │ │ ├── code-reuse-overview.md │ │ └── code-reuse-packages.md │ ├── code-reuse.md │ ├── compendia.md │ ├── licensing/ │ │ ├── licensing-checklist.md │ │ ├── licensing-compatibility.md │ │ ├── licensing-data.md │ │ ├── licensing-documentation.md │ │ ├── licensing-ethical-source.md │ │ ├── licensing-floss.md │ │ ├── licensing-hardware.md │ │ ├── licensing-ip.md │ │ ├── licensing-ml-case-studies.md │ │ └── licensing-ml.md │ ├── licensing.md │ ├── make/ │ │ ├── make-appendix.md │ │ ├── make-casestudy.md │ │ ├── make-debugging.md │ │ ├── make-examples.md │ │ ├── make-resources.md │ │ └── make-results.md │ ├── make.md │ ├── open/ │ │ ├── open-access.md │ │ ├── open-checklist.md │ │ ├── open-data.md │ │ ├── open-hardware.md │ │ ├── open-notebooks.md │ │ ├── open-resources.md │ │ ├── open-scholarship.md │ │ └── open-source.md │ ├── open.md │ ├── overview/ │ │ ├── overview-barriers.md │ │ ├── overview-benefit.md │ │ ├── overview-definitions.md │ │ └── overview-resources.md │ ├── overview.md │ ├── rdm/ │ │ ├── rdm-article.md │ │ ├── rdm-care.md │ │ ├── rdm-checklist.md │ │ ├── rdm-cleaning.md │ │ ├── rdm-data-curation.md │ │ ├── rdm-data.md │ │ ├── rdm-dmp.md │ │ ├── rdm-elns.md │ │ ├── rdm-fair.md │ │ ├── rdm-find.md │ │ ├── rdm-metadata.md │ │ ├── rdm-methods.md │ │ ├── rdm-personal.md │ │ ├── rdm-pid.md │ │ ├── rdm-repository.md │ │ ├── rdm-resources.md │ │ ├── rdm-sharing.md │ │ ├── rdm-smp.md │ │ ├── rdm-spreadsheets.md │ │ ├── rdm-storage.md │ │ ├── rdm-stories.md │ │ └── rdm-visualisation.md │ ├── rdm.md │ ├── renv/ │ │ ├── renv-containers.md │ │ ├── renv-options.md │ │ ├── renv-package.md │ │ ├── renv-resources.md │ │ ├── renv-virtualmachine.md │ │ └── renv-yaml.md │ ├── renv.md │ ├── reproducible-research.md │ ├── reviewing/ │ │ ├── reviewing-checklist.md │ │ ├── reviewing-motivation.md │ │ ├── reviewing-recommend.md │ │ ├── reviewing-resources.md │ │ └── reviewing-workflow.md │ ├── reviewing.md │ ├── risk-assess/ │ │ ├── risk-assess-impact.md │ │ └── risk-assess-resources.md │ ├── risk-assess.md │ ├── testing/ │ │ ├── testing-acceptance-regression.md │ │ ├── testing-checklist.md │ │ ├── testing-driven-development.md │ │ ├── testing-exceptions.md │ │ ├── testing-guidance.md │ │ ├── testing-integrationtest.md │ │ ├── testing-overview.md │ │ ├── testing-resources.md │ │ ├── testing-runtime.md │ │ ├── testing-smoketest.md │ │ ├── testing-systemtest.md │ │ └── testing-unittest.md │ ├── testing.md │ ├── vcs/ │ │ ├── vcs-checklist.md │ │ ├── vcs-data.md │ │ ├── vcs-git-branches.md │ │ ├── vcs-git-commit.md │ │ ├── vcs-git-compare.md │ │ ├── vcs-git-general.md │ │ ├── vcs-git-in-research.md │ │ ├── vcs-git-interactive.md │ │ ├── vcs-git-merge.md │ │ ├── vcs-git-summary.md │ │ ├── vcs-git.md │ │ ├── vcs-github.md │ │ ├── vcs-personal-stories.md │ │ ├── vcs-resources.md │ │ ├── vcs-workflow-branches.md │ │ └── vcs-workflow.md │ └── vcs.md ├── lychee.toml ├── netlify.toml ├── release-workflow.md ├── tests/ │ ├── lorem-ipsums.py │ ├── no-bad-latin.py │ ├── pull_files.py │ ├── release_workflow.py │ ├── requirements.txt │ ├── test-file-size.sh │ ├── validate-all-contributorsrc.py │ └── validate-dependabot.py └── ways_of_working.md