├── .editorconfig ├── .gitattributes ├── .github ├── .FUNDING.yaml ├── .FUNDING.yml ├── .github_README.md ├── .github_README_V1.md ├── CODEOWNERS ├── Discussions │ ├── README.md │ └── README_V1.md ├── Funding │ ├── OldVersions │ │ ├── FUNDING_V1.yaml │ │ ├── FUNDING_V1.yml │ │ └── README.yaml │ ├── README.md │ └── README_V1.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── Issues │ ├── GitHub_Default_IssueLabels.yaml │ ├── README.md │ └── README_V1.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── README.md │ └── pull_request_template.md ├── Pull_Requests │ ├── OldVersions │ │ └── English │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ └── README_V1.md │ └── README.md ├── Security │ ├── OldVersions │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ └── SECURITY_V1.md │ └── README.md ├── SocialPreview │ ├── 6FeetApart1.jpeg │ ├── Code-Distancing_720pWallpaper_V1_HighCompression.png │ ├── README.md │ ├── README_V1.md │ └── Unused │ │ ├── Code-Distancing_1080pWallpaper_V1_HighCompression.png │ │ ├── IGNORE.md │ │ └── repository-open-graph-template.png ├── config.yml ├── discussions │ ├── 2 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 3 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 5 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 6 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 8 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 9 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 10 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 11 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 12 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 13 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── link │ │ │ └── LINK.txt │ │ └── title │ │ │ └── TITLE.txt │ ├── 14 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 15 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 16 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 17 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 18 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 19 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 20 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 21 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 22 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 23 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 24 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 25 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 26 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 27 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 28 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 29 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 30 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── comments │ │ │ └── 1 │ │ │ │ ├── README.md │ │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 31 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 32 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 33 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 34 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 35 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 36 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 37 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 38 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 39 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 40 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 41 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 42 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 43 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 44 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 45 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 46 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 47 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 48 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 49 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 50 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 51 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 52 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 53 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 54 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 55 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 56 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 57 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 58 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 59 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 60 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 61 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 62 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 63 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 64 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── 65 │ │ ├── body │ │ │ ├── README.md │ │ │ └── README_V1.md │ │ ├── title │ │ │ └── TITLE.txt │ │ └── url │ │ │ └── LINK.txt │ ├── README.md │ └── README_V1.md ├── funding │ ├── OldVersions │ │ ├── FUNDING_V1.yml │ │ ├── FUNDING_V2.yml │ │ └── README.yml │ ├── README.md │ └── README_V1.md ├── issues │ ├── 1 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 7 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── README.md │ └── README_V1.md ├── pull_request_template.md ├── workflowArchives │ ├── Ada │ │ └── ada_V1.yml │ ├── Android │ │ └── android_V1.yml │ ├── C-CPP │ │ └── c-cpp_V1.yml │ ├── CMAKE │ │ └── cmake_V1.yml │ ├── Clojure │ │ └── clojure_V1.yml │ ├── CodeQL-analysis │ │ └── codeql-analysis_V1.yml │ ├── Crystal │ │ └── crystal_V1.yml │ ├── D │ │ └── d_V1.yml │ ├── DJango │ │ └── django_V1.yml │ ├── Dart │ │ └── dart_V1.yml │ ├── Docker │ │ ├── Image │ │ │ └── docker-image_V1.yml │ │ └── Publish │ │ │ └── docker-publish_V1.yml │ ├── DotNet │ │ ├── Desktop │ │ │ └── dotnet-desktop_V1.yml │ │ └── dotnet_V1.yml │ ├── Elixir │ │ └── elixir_V1.yml │ ├── Erlang │ │ └── erlang_V1.yml │ ├── GoogleGo │ │ └── go_V1.yml │ ├── Haskell │ │ └── haskell_V1.yml │ ├── Java │ │ ├── Ant │ │ │ └── ant_V1.yml │ │ ├── Gradle │ │ │ ├── Publish │ │ │ │ └── Package │ │ │ │ │ └── gradle-publish_V1.yml │ │ │ └── gradle_V1.yml │ │ └── Maven │ │ │ ├── Publish │ │ │ └── Package │ │ │ │ └── maven-publish_V1.yml │ │ │ └── maven_V1.yml │ ├── JavaScript │ │ ├── Deno │ │ │ └── deno_V1.yml │ │ ├── NPM │ │ │ ├── Grunt │ │ │ │ └── npm-grunt_V1.yml │ │ │ ├── Gulp │ │ │ │ └── npm-gulp_V1.yml │ │ │ └── Publish │ │ │ │ └── GitHub │ │ │ │ └── Packages │ │ │ │ └── npm-publish-github-packages_V1.yml │ │ └── Node.js │ │ │ ├── NPM │ │ │ └── Publish │ │ │ │ └── npm-publish_V1.yml │ │ │ └── node.js_V1.yml │ ├── Jekyll │ │ └── jekyll_V1.yml │ ├── Linting │ │ └── Super-Linter │ │ │ └── super-linter_V1.yml │ ├── MSBUILD │ │ └── msbuild_V1.yml │ ├── Makefile │ │ └── makefile_V1.mk │ ├── Objective-C-XCODE │ │ └── objective-c-xcode_V1.yml │ ├── PHP │ │ ├── Symfony │ │ │ └── symfony_V1.yml │ │ └── php_V1.yml │ ├── Python │ │ ├── Application │ │ │ └── python-app_V1.yml │ │ ├── Package │ │ │ ├── Anaconda │ │ │ │ └── python-package-conda_V1.yml │ │ │ ├── Publish │ │ │ │ └── PyPi │ │ │ │ │ └── python-publish_V1.yml │ │ │ └── python-package_V1.yml │ │ └── PyLint │ │ │ └── pylint_V1.yml │ ├── R │ │ └── r_V1.yml │ ├── Ruby │ │ ├── Gem │ │ │ └── gem-push_V1.yml │ │ ├── Rails │ │ │ └── rubyonrails-lint_V1.yml │ │ └── ruby_V1.yml │ ├── Rust │ │ └── rust_V1.yml │ ├── Scala │ │ └── scala_V1.yml │ ├── Swift │ │ └── swift_V1.yml │ ├── Webpack │ │ └── webpack_V1.yml │ └── iOS │ │ └── ios_V1.yml └── workflows │ ├── ada.yml │ ├── android.yml │ ├── ant.yml │ ├── c-cpp.yml │ ├── clojure.yml │ ├── cmake.yml │ ├── codeql-analysis.yml │ ├── crystal.yml │ ├── d.yml │ ├── dart.yml │ ├── deno.yml │ ├── django.yml │ ├── docker-image.yml │ ├── docker-publish.yml │ ├── dotnet-desktop.yml │ ├── dotnet.yml │ ├── elixir.yml │ ├── erlang.yml │ ├── gem-push.yml │ ├── go.yml │ ├── gradle-publish.yml │ ├── gradle.yml │ ├── haskell.yml │ ├── ios.yml │ ├── jekyll.yml │ ├── makefile.yml │ ├── maven-publish.yml │ ├── maven.yml │ ├── msbuild.yml │ ├── node.js.yml │ ├── npm-grunt.yml │ ├── npm-gulp.yml │ ├── npm-publish-github-packages.yml │ ├── npm-publish.yml │ ├── objective-c-xcode.yml │ ├── php.yml │ ├── pylint.yml │ ├── python-app.yml │ ├── python-package-conda.yml │ ├── python-package.yml │ ├── python-publish.yml │ ├── r.yml │ ├── ruby.yml │ ├── rubyonrails-lint.yml │ ├── rust.yml │ ├── scala.yml │ ├── super-linter.yml │ ├── swift.yml │ ├── symfony.yml │ └── webpack.yml ├── .gitignore ├── .gitlab └── GitLab_icon.svg ├── 20200609_Effect_of_pandemic_containment_measures.gif ├── AUTHORS ├── AUTHORS.md ├── AUTOMATE2001.yaml ├── AUTOMATE2001.yml ├── CONTRIBUTING.md ├── COPYINGL ├── CREDITS ├── CREDITS.wiki ├── Code-distancing ├── ALGOL │ └── 60 │ │ ├── CODEDISTANCING.ALW │ │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ └── CODEDISTANCINGV1.ALW │ │ ├── README.md │ │ └── README_V1.md ├── ActionScript │ ├── 2.0 │ │ ├── CodeDistancing.as │ │ ├── Images │ │ │ └── Screenshots │ │ │ │ ├── Gedit │ │ │ │ ├── DarkMode │ │ │ │ │ └── IGNORE.md │ │ │ │ └── LightMode │ │ │ │ │ └── IGNORE.md │ │ │ │ ├── GitHub │ │ │ │ ├── DarkMode │ │ │ │ │ └── IGNORE.md │ │ │ │ └── LightMode │ │ │ │ │ └── IGNORE.md │ │ │ │ └── Notepad++ │ │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ │ └── CodeDistancingV1.as │ │ ├── README.md │ │ └── README_V1.md │ └── 3.0 │ │ ├── CodeDistancing.as │ │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ └── CodeDistancingV1.as │ │ ├── README.md │ │ └── README_V1.md ├── ActionServerPages(ASP) │ ├── CodeDistancing.asp │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.asp │ ├── README.md │ └── README_V1.md ├── Ada │ ├── CodeDistancing.ada │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.ada │ ├── README.md │ └── README_V1.md ├── AppleScript │ ├── CodeDistancing.applescript │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.applescript │ ├── README.md │ └── README_V1.md ├── Assembly │ ├── CodeDistancing.asm │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.asm │ ├── README.md │ └── README_V1.md ├── BASH │ ├── CodeDistancing.sh │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.sh │ ├── README.md │ └── README_V1.md ├── BASIC │ ├── CodeDistancing.bas │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.bas │ ├── README.md │ └── README_V1.md ├── Batch │ ├── CodeDistancing.bat │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.bat │ ├── README.md │ └── README_V1.md ├── Boo │ ├── CodeDistancing.boo │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.boo │ ├── README.md │ └── README_V1.md ├── C# │ ├── CodeDistancing.cs │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.cs │ ├── README.md │ └── README_V1.md ├── C++ │ ├── CodeDistancing.cpp │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ ├── CodeDistancingV1.cpp │ │ └── CodeDistancingV2.cpp │ ├── README.md │ └── README_V1.md ├── C │ ├── CodeDistancing.c │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ ├── CodeDistancingV1.c │ │ └── CodeDistancingV2.c │ ├── README.md │ └── README_V1.md ├── CMake │ ├── CodeDistancing.cmake │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.cmake │ ├── README.md │ └── README_V1.md ├── COBOL │ └── 68 │ │ ├── CODEDISTANCING.COB │ │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ └── CODEDISTANCINGV1.COB │ │ ├── README.md │ │ └── README_V1.md ├── CSS │ └── 3.0 │ │ ├── CodeDistancing.css │ │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ └── CodeDistancingV1.css │ │ ├── README.md │ │ └── README_V1.md ├── CSound │ ├── CodeDistancing.csd │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ ├── IGNORE.md │ │ │ │ ├── Screenshot from 2021-02-28 17-00-25.png │ │ │ │ ├── Screenshot from 2021-02-28 17-00-29.png │ │ │ │ └── Screenshot from 2021-02-28 17-00-32.png │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.csd │ ├── README.md │ └── README_V1.md ├── Caml │ ├── CodeDistancing.ml │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.ml │ ├── README.md │ └── README_V1.md ├── CoffeeScript │ ├── CodeDistancing.coffee │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.coffee │ ├── README.md │ └── README_V1.md ├── D │ ├── CodeDistancing.d │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.d │ ├── README.md │ └── README_V1.md ├── Dart │ ├── CodeDistancing.dart │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.dart │ ├── README.md │ └── README_V1.md ├── Erlang │ ├── CodeDistancing.erl │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.erl │ ├── README.md │ └── README_V1.md ├── F# │ ├── CodeDistancing.fs │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.fs │ ├── README.md │ └── README_V1.md ├── FORTRAN │ └── 90 │ │ ├── CodeDistancing.f90 │ │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ └── CodeDistancingV1.f90 │ │ ├── README.md │ │ └── README_V1.md ├── Genie │ ├── CodeDistancing.gs │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.gs │ ├── README.md │ └── README_V1.md ├── Go (By Google, 2009) │ ├── CodeDistancing.go │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.go │ ├── README.md │ └── README_V1.md ├── Go! │ ├── CodeDistancing.go │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.go │ ├── README.md │ └── README_V1.md ├── HTML5 │ ├── CodeDistancing.htm │ ├── CodeDistancing.html │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ ├── CodeDistancingV1.htm │ │ └── CodeDistancingV1.html │ ├── README.md │ └── README_V1.md ├── Haskell │ ├── CodeDistancing.hs │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.hs │ ├── README.md │ └── README_V1.md ├── Java │ ├── CodeDistancing.java │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ ├── CodeDistancingV1.java │ │ └── CodeDistancingV2.java │ ├── README.md │ └── README_V1.md ├── JavaScript │ └── 1.8 │ │ ├── CodeDistancing.js │ │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ └── CodeDistancingV1.js │ │ ├── README.md │ │ └── README_V1.md ├── Lisp │ ├── CodeDistancing.lisp │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.lisp │ ├── README.md │ └── README_V1.md ├── Lua │ ├── CodeDistancing.lua │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ ├── CodeDistancingV1.lua │ │ └── CodeDistancingV2.lua │ ├── README.md │ └── README_V1.md ├── MatLab │ ├── CodeDistancing.m │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.m │ ├── README.md │ └── README_V1.md ├── MediaWiki │ ├── CodeDistancing.wiki │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.wiki │ ├── README.md │ └── README_V1.md ├── Nim │ ├── CodeDistancing.nim │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.nim │ ├── README.md │ └── README_V1.md ├── Objective-C │ ├── CodeDistancing.mm │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.mm │ ├── README.md │ └── README_V1.md ├── PHP │ └── 7.x │ │ ├── CodeDistancing.php │ │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── OldVersions │ │ └── CodeDistancingV1.php │ │ ├── README.md │ │ └── README_V1.md ├── Pascal │ ├── CodeDistancing.pas │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.pas │ ├── README.md │ └── README_V1.md ├── Perl │ ├── CodeDistancing.pl │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.pl │ ├── README.md │ └── README_V1.md ├── PostScript │ ├── CodeDistancing.ps │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.ps │ ├── README.md │ └── README_V1.md ├── PowerShell │ ├── CodeDistancing.ps1 │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.ps1 │ ├── README.md │ └── README_V1.md ├── PureBasic │ ├── CodeDistancing.pb │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.pb │ ├── README.md │ └── README_V1.md ├── Python3 │ ├── CodeDistancing.py │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ ├── CodeDistancingV1.py │ │ └── CodeDistancingV2.py │ ├── README.md │ └── README_V1.md ├── R │ ├── CodeDistancing.r │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.r │ ├── README.md │ └── README_V1.md ├── README.md ├── README_V1.md ├── REBOL │ ├── CodeDistancing.reb │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.reb │ ├── README.md │ └── README_V1.md ├── ReStructuredText │ ├── CodeDistancing.rst │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.rst │ ├── README.md │ └── README_V1.md ├── Ruby │ ├── CodeDistancing.rb │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.rb │ ├── README.md │ └── README_V1.md ├── Rust │ ├── CodeDistancing.rs │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.rs │ ├── README.md │ └── README_V1.md ├── SQL │ ├── CodeDistancing.sql │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.sql │ ├── README.md │ └── README_V1.md ├── Scheme │ ├── CodeDistancing.scm │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.scm │ ├── README.md │ └── README_V1.md ├── SmallTalk │ ├── CodeDistancing.st │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.st │ ├── README.md │ └── README_V1.md ├── Swift │ ├── CodeDistancing.swift │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ ├── CodeDistancingV1.swift │ │ ├── CodeDistancingV2.swift │ │ └── CodeDistancingV3.swift │ ├── README.md │ └── README_V1.md ├── ToolCommandLanguage(TCL) │ ├── CodeDistancing.tcl │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.tcl │ ├── README.md │ └── README_V1.md ├── Vala │ ├── CodeDistancing.vala │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.vala │ ├── README.md │ └── README_V1.md ├── Visual Basic │ ├── CodeDistancing.vb │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.vb │ ├── README.md │ └── README_V1.md ├── XML │ ├── CodeDistancing.xml │ ├── Images │ │ └── Screenshots │ │ │ ├── Gedit │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ ├── GitHub │ │ │ ├── DarkMode │ │ │ │ └── IGNORE.md │ │ │ └── LightMode │ │ │ │ └── IGNORE.md │ │ │ └── Notepad++ │ │ │ └── LightMode │ │ │ └── IGNORE.md │ ├── OldVersions │ │ └── CodeDistancingV1.xml │ ├── README.md │ └── README_V1.md └── YAML │ ├── CodeDistancing.yaml │ ├── CodeDistancing.yml │ ├── Images │ └── Screenshots │ │ ├── Gedit │ │ ├── DarkMode │ │ │ └── IGNORE.md │ │ └── LightMode │ │ │ └── IGNORE.md │ │ ├── GitHub │ │ ├── DarkMode │ │ │ └── IGNORE.md │ │ └── LightMode │ │ │ └── IGNORE.md │ │ └── Notepad++ │ │ └── LightMode │ │ └── IGNORE.md │ ├── OldVersions │ ├── CodeDistancingV1.yaml │ └── CodeDistancingV1.yml │ ├── README.md │ └── README_V1.md ├── DRM-free_label.en.svg ├── Dev └── Templates │ └── ImageDir │ └── EmptyImageDirectoryTemplate_V1.zip ├── Distancing ├── Distancer.py ├── OldVersions │ └── Distancer_V1.py ├── README.md └── README_V1.md ├── Docs ├── !OldVersions │ └── README │ │ └── English │ │ └── USA │ │ ├── README.txt │ │ └── README_V1.md ├── README.md └── pull_request_template.md ├── EXPLORE.md ├── External ├── Plans │ ├── V3 │ │ ├── REF_LanguagesFromYesterday_October7th2020.md │ │ └── V3_CODEDISTANCINGPLANS.md │ └── V4 │ │ ├── README.md │ │ └── README_V1.md ├── Project │ └── README │ │ └── OldVersions │ │ ├── 20200609_Effect_of_pandemic_containment_measures.gif │ │ ├── README_V1.md │ │ ├── README_V2.md │ │ ├── SARS-CoV-2_(CDC-23312).png │ │ └── United_States_Centers_for_Disease_Control_and_Prevention_logo.svg ├── ProjectWiki │ ├── .TODO │ │ ├── .TODO.md │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── .TODO_V1.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Admission-process │ │ ├── Admission-process.md │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── Admission-process_V1.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── CODEVID-19 │ │ ├── CODEVID-19.md │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── CODEVID-19_V1.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Code-distancing-distancer-(software) │ │ ├── Code-distancing-distancer-(software).md │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── Code-distancing-distancer-(software)_V1.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Code-distancing │ │ ├── Code-distancing.md │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── Code-distancing_V1.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Code-hospital │ │ ├── Code-hospital.md │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── Code-hospital_V1.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Home │ │ ├── Home.md │ │ ├── OldVersions │ │ │ ├── HomeV1.md │ │ │ └── Home_V2.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Introvert-paradise │ │ ├── Introvert-paradise.md │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── Introvert-paradise_V1.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Plothole-how-did-everyone-get-CODEVID-19 │ │ ├── OldVersions │ │ │ └── Plothole-how-did-everyone-get-CODEVID-19_V1.md │ │ ├── Plothole-how-did-everyone-get-CODEVID-19.md │ │ ├── README.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Project_Language_File │ │ ├── OldVersions │ │ │ └── Project_Language_File_V1.md │ │ └── Project_Language_File.md │ ├── README.md │ ├── Snapshots (version control) │ │ ├── OldVersions │ │ │ └── Snapshots (version control)V1.md │ │ └── Snapshots (version control).md │ ├── Social-distancing │ │ ├── OldVersions │ │ │ └── Social-distancing_V1.md │ │ ├── README.md │ │ ├── Social-distancing.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Solving-plotholes │ │ ├── OldVersions │ │ │ └── Solving-plotholes_V1.md │ │ ├── README.md │ │ ├── Solving-plotholes.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Supported-languages │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── Supported-languages_V1.md │ │ ├── README.md │ │ ├── Supported-languages.md │ │ └── URL │ │ │ └── LINK.txt │ ├── Vaccine-(feature) │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── Vaccine-(feature)_V1.md │ │ ├── README.md │ │ ├── URL │ │ │ └── LINK.txt │ │ └── Vaccine-(feature).md │ ├── Valid-code-distancing-guidelines │ │ ├── OldVersions │ │ │ └── Valid-code-distancing-guidelines_V1.md │ │ ├── README.md │ │ ├── URL │ │ │ └── LINK.txt │ │ └── Valid-code-distancing-guidelines.md │ ├── What-we-learned-from-the-pandemic │ │ ├── OldVersions │ │ │ └── What-we-learned-from-the-pandemic_V1.md │ │ ├── README.md │ │ ├── URL │ │ │ └── LINK.txt │ │ └── What-we-learned-from-the-pandemic.md │ ├── _Footer │ │ ├── OldVersions │ │ │ └── _FooterV1.md │ │ └── _Footer.md │ └── _Sidebar │ │ ├── OldVersions │ │ └── _SidebarV1.md │ │ └── _Sidebar.md ├── Releases │ ├── v1.0-covid-19 │ │ ├── LINK.txt │ │ └── RELEASENOTES.md │ ├── v1.0.1-covid-19 │ │ ├── LINK.txt │ │ └── RELEASENOTES.md │ ├── v1.0.2-covid-19 │ │ ├── LINK.txt │ │ ├── RELEASENOTES.md │ │ └── RELEASENOTES_V1.md │ └── v1.0.2.1-covid-19 │ │ ├── LINK.txt │ │ ├── RELEASENOTES.md │ │ └── RELEASENOTES_V1.md ├── Research │ └── Wikimedia │ │ └── Wikipedia │ │ └── 2021 │ │ └── February │ │ └── 28th │ │ ├── COVID-19_Pandemic │ │ └── PDF │ │ │ └── COVID-19_pandemic.pdf │ │ └── Social-Distancing │ │ └── PDF │ │ └── Social_distancing.pdf └── ValidCodeDistancingGuidelines │ └── OldVersions │ └── Valid_Code_Distancing_Guidelines_V1.md ├── INSTALL ├── INSTALL.rst ├── K.desktop ├── LICENSE-GPL.txt ├── LICENSE-GPL3.txt ├── LICENSE.txt ├── Mask ├── 1930s_gas_mask.jpg ├── 3M_N95_Particulate_Respirator.JPG ├── Clothfacemask101.jpeg ├── DisableMask.md ├── DisableMask_V1.md ├── EnableMask.md ├── EnableMask_V1.md ├── Gas_mask_MUA_IMGP0157.jpg ├── NoMaskTerminalIllness.png ├── Russian_gas_mask_ПМК-2.jpg └── Surgical_N95.jpeg ├── OldVersions ├── AUTHORS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── AUTHORS_V1 │ │ ├── AUTHORS_V1.md │ │ └── README.txt ├── AUTOMATE2001 │ ├── AUTOMATE2001_V1.yaml │ ├── AUTOMATE2001_V1.yml │ └── README.yaml ├── CODEOWNERS │ ├── CODEOWNERS_V2 │ └── README.cfg ├── CONTRIBUTING │ └── 1 │ │ └── 1-100 │ │ ├── CONTRIBUTING_V1.md │ │ └── README.txt ├── COPYING │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── COPYING_V1 │ │ ├── COPYING_V1.md │ │ └── README.txt ├── CREDITS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── CREDITS_V1 │ │ ├── CREDITS_V1.wiki │ │ └── README.wiki ├── Desktop.ini │ ├── README.ini │ └── V1_desktop.ini ├── EDITORCONFIG │ └── 1 │ │ └── 1-100 │ │ ├── README.cfg │ │ ├── V1.editorconfig │ │ └── V2.editorconfig ├── Explore │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── EXPLORE_V1.md │ │ └── README.md ├── GITATTRIBUTES │ └── 1 │ │ └── 1-100 │ │ ├── README.yaml │ │ ├── V1.gitattributes │ │ ├── V2.gitattributes │ │ └── V3.gitattributes ├── GITIGNORE │ └── 1 │ │ └── 1-100 │ │ ├── README.yaml │ │ └── V1.gitignore ├── GitLab-CI │ ├── README.yaml │ └── gitlab-ci_V1.yml ├── INSTALL │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── INSTALL_V1 │ │ ├── INSTALL_V1.rst │ │ └── README.rst ├── ISSUE_TEMPLATE │ ├── CONFIG │ │ └── YML │ │ │ ├── README.yaml │ │ │ └── V1_config.yml │ ├── ISSUE-TEMPLATE │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.yaml │ │ │ ├── issue-template_V1.yml │ │ │ ├── issue-template_V2.yml │ │ │ ├── issue-template_V3.yml │ │ │ ├── issue-template_V4.yml │ │ │ ├── issue-template_V5.yml │ │ │ └── issue-template_V6.yml │ └── MISCELLANEOUS │ │ └── YML │ │ ├── README.yaml │ │ └── miscellaneous_V1.yml ├── KDESKTOP │ ├── K_V1.desktop │ └── README.desktop ├── LICENSE │ └── GPL3 │ │ ├── LICENSE-GPL3_V1.txt │ │ ├── LICENSE-GPL_V1.txt │ │ ├── LICENSE_V1.txt │ │ └── README.md ├── MAKEFILE │ └── 1 │ │ └── 1-100 │ │ ├── README.mk │ │ └── makefile_V1.mk ├── PROJECT_LANGUAGE │ └── Python │ │ ├── PROJECT_LANG_1_V1.py │ │ ├── PROJECT_LANG_1_V1.py3 │ │ ├── PROJECT_LANG_1_V1.pyt │ │ ├── PROJECT_LANG_1_V1.pyw │ │ ├── PROJECT_LANG_V1.py │ │ └── README.py ├── PULL_REQUEST_TEMPLATE │ ├── README.md │ └── pull_request_template_V1.md └── README │ └── English │ └── 1 │ └── 1-100 │ ├── README.txt │ ├── README_V1.md │ └── README_V2.md ├── PROJECT_LANG_1.py ├── Plotholes ├── Filling │ └── Contraction │ │ ├── README.md │ │ └── README_V1.md ├── README.md └── README_V1.md ├── Python-logo-notext.svg ├── README.md ├── RepoData └── Description │ └── GitHub │ ├── OldVersions │ └── English │ │ └── USA │ │ ├── README.md │ │ └── README_V1.txt │ └── README.txt ├── SARS-CoV-2_(CDC-23312).png ├── SECURITY.md ├── SocialDistancngSticker.jpeg ├── SponsorButton.png ├── TODO └── 2021 │ └── August │ ├── OldVersions │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── README_V1.md │ │ └── README_V2.md │ └── README.md ├── United_States_Centers_for_Disease_Control_and_Prevention_logo.svg ├── Vaccine ├── GetDeveloperVaccine.md ├── GetDeveloperVaccine_V1.md └── Vaccine.png ├── Valid_Code_Distancing_Guidelines.md ├── _config.yml ├── desktop.ini ├── gitlab-ci.yml ├── makefile.mk └── pull_request_template.md /.github/Discussions/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Discussions/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/Issues/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Issues/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Pull_Requests/OldVersions/English/1/1-100/README.txt: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Pull_Requests/OldVersions/English/1/1-100/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Pull_Requests/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/SocialPreview/6FeetApart1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/.github/SocialPreview/6FeetApart1.jpeg -------------------------------------------------------------------------------- /.github/SocialPreview/Code-Distancing_720pWallpaper_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/.github/SocialPreview/Code-Distancing_720pWallpaper_V1_HighCompression.png -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/Code-Distancing_1080pWallpaper_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/.github/SocialPreview/Unused/Code-Distancing_1080pWallpaper_V1_HighCompression.png -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/repository-open-graph-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/.github/SocialPreview/Unused/repository-open-graph-template.png -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: GitHub Community Support 4 | url: https://github.community/ 5 | about: Please ask and answer questions here. 6 | - name: GitHub Security Bug Bounty 7 | url: https://bounty.github.com/ 8 | about: Please report security vulnerabilities here. 9 | -------------------------------------------------------------------------------- /.github/discussions/10/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Action Server Pages (ASP) recover from Codevid-19 #10 2 | -------------------------------------------------------------------------------- /.github/discussions/10/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/10 2 | -------------------------------------------------------------------------------- /.github/discussions/11/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Ada recover from Codevid-19 #11 2 | -------------------------------------------------------------------------------- /.github/discussions/11/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/11 2 | -------------------------------------------------------------------------------- /.github/discussions/12/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help AppleScript recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/12/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/12 2 | -------------------------------------------------------------------------------- /.github/discussions/13/link/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/13 2 | -------------------------------------------------------------------------------- /.github/discussions/13/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Assembly recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/14/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Shell/BASH recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/14/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/14 2 | -------------------------------------------------------------------------------- /.github/discussions/15/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help BASIC recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/15/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/15 2 | -------------------------------------------------------------------------------- /.github/discussions/16/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help BATCH recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/16/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/16 2 | -------------------------------------------------------------------------------- /.github/discussions/17/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Boo recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/17/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/17 2 | -------------------------------------------------------------------------------- /.github/discussions/18/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help C# recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/18/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/18 2 | -------------------------------------------------------------------------------- /.github/discussions/19/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help C++ recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/19/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/19 2 | -------------------------------------------------------------------------------- /.github/discussions/2/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Welcome to Code-distancing Discussions! #2 2 | -------------------------------------------------------------------------------- /.github/discussions/2/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/2 2 | -------------------------------------------------------------------------------- /.github/discussions/20/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help C recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/20/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/20 2 | -------------------------------------------------------------------------------- /.github/discussions/21/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help CMake recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/21/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/21 2 | -------------------------------------------------------------------------------- /.github/discussions/22/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help COBOL 68 recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/22/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/22 2 | -------------------------------------------------------------------------------- /.github/discussions/23/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help CSS 3.0 recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/23/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/23 2 | -------------------------------------------------------------------------------- /.github/discussions/24/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help YAML recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/24/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/24 2 | -------------------------------------------------------------------------------- /.github/discussions/25/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help XML recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/25/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/25 2 | -------------------------------------------------------------------------------- /.github/discussions/26/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Visual Basic recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/26/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/26 2 | -------------------------------------------------------------------------------- /.github/discussions/27/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Vala recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/27/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/27 2 | -------------------------------------------------------------------------------- /.github/discussions/28/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Tool Command Language (TCL) recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/28/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/28 2 | -------------------------------------------------------------------------------- /.github/discussions/29/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Swift recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/29/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/29 2 | -------------------------------------------------------------------------------- /.github/discussions/3/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Support CSound recover from CODEVID-19 #3 2 | -------------------------------------------------------------------------------- /.github/discussions/3/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/3 2 | -------------------------------------------------------------------------------- /.github/discussions/30/comments/1/README.md: -------------------------------------------------------------------------------- 1 | Update: 2 | 3 | Handlebars 4 | Vue.js 5 | Less 6 | Clojure 7 | Common Lisp 8 | CoffeeScript 9 | Groovy 10 | J 11 | Julia 12 | M4 13 | Modula 14 | Modula-2 15 | Modula-3 16 | XSLT 17 | WebAssembly 18 | B 19 | Emacs Lisp 20 | Hopscotch 21 | Limbo 22 | F* 23 | QT 24 | GTK 25 | Unity 26 | Jade 27 | -------------------------------------------------------------------------------- /.github/discussions/30/comments/1/README_V1.md: -------------------------------------------------------------------------------- 1 | Update: 2 | 3 | Handlebars 4 | Vue.js 5 | Less 6 | Clojure 7 | Common Lisp 8 | CoffeeScript 9 | Groovy 10 | J 11 | Julia 12 | M4 13 | Modula 14 | Modula-2 15 | Modula-3 16 | XSLT 17 | WebAssembly 18 | B 19 | Emacs Lisp 20 | Hopscotch 21 | Limbo 22 | F* 23 | QT 24 | GTK 25 | Unity 26 | Jade 27 | -------------------------------------------------------------------------------- /.github/discussions/30/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | New languages to add 2 | -------------------------------------------------------------------------------- /.github/discussions/30/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/30 2 | -------------------------------------------------------------------------------- /.github/discussions/31/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help SmallTalk recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/31/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/31 2 | -------------------------------------------------------------------------------- /.github/discussions/32/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Scheme recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/32/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/32 2 | -------------------------------------------------------------------------------- /.github/discussions/33/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Rust recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/33/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/33 2 | -------------------------------------------------------------------------------- /.github/discussions/34/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Ruby recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/34/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/34 2 | -------------------------------------------------------------------------------- /.github/discussions/35/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help ReStructured Text recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/35/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/35 2 | -------------------------------------------------------------------------------- /.github/discussions/36/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help REBOL recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/36/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/36 2 | -------------------------------------------------------------------------------- /.github/discussions/37/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help R recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/37/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/37 2 | -------------------------------------------------------------------------------- /.github/discussions/38/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Python 3.x recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/38/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/38 2 | -------------------------------------------------------------------------------- /.github/discussions/39/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help PureBasic recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/39/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/39 2 | -------------------------------------------------------------------------------- /.github/discussions/40/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help PowerShell recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/40/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/40 2 | -------------------------------------------------------------------------------- /.github/discussions/41/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help PostScript recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/41/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/41 2 | -------------------------------------------------------------------------------- /.github/discussions/42/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Perl recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/42/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/42 2 | -------------------------------------------------------------------------------- /.github/discussions/43/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Pascal recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/43/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/43 2 | -------------------------------------------------------------------------------- /.github/discussions/44/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help PHP 7.x recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/44/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/44 2 | -------------------------------------------------------------------------------- /.github/discussions/45/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Objective-C recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/45/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/45 2 | -------------------------------------------------------------------------------- /.github/discussions/46/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Nim recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/46/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/46 2 | -------------------------------------------------------------------------------- /.github/discussions/47/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | elp MediaWiki recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/47/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/47 2 | -------------------------------------------------------------------------------- /.github/discussions/48/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help MatLab recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/48/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/48 2 | -------------------------------------------------------------------------------- /.github/discussions/49/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Lua recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/49/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/49 2 | -------------------------------------------------------------------------------- /.github/discussions/5/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help ALGOL 60 Recover from CODEVID-19 #5 2 | -------------------------------------------------------------------------------- /.github/discussions/5/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/5 2 | -------------------------------------------------------------------------------- /.github/discussions/50/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Lisp recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/50/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/50 2 | -------------------------------------------------------------------------------- /.github/discussions/51/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help JavaScript 1.8 recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/51/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/51 2 | -------------------------------------------------------------------------------- /.github/discussions/52/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Java recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/52/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/52 2 | -------------------------------------------------------------------------------- /.github/discussions/53/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Haskell recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/53/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/53 2 | -------------------------------------------------------------------------------- /.github/discussions/54/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help HTML5 recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/54/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/54 2 | -------------------------------------------------------------------------------- /.github/discussions/55/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Go! recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/55/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/55 2 | -------------------------------------------------------------------------------- /.github/discussions/56/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Go recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/56/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/56 2 | -------------------------------------------------------------------------------- /.github/discussions/57/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Genie recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/57/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/57 2 | -------------------------------------------------------------------------------- /.github/discussions/58/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help FORTRAN 90 recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/58/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/58 2 | -------------------------------------------------------------------------------- /.github/discussions/59/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help F# recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/59/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/59 2 | -------------------------------------------------------------------------------- /.github/discussions/6/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help SQL recover from Codevid-19 #6 2 | -------------------------------------------------------------------------------- /.github/discussions/6/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/6 2 | -------------------------------------------------------------------------------- /.github/discussions/60/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Erlang recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/60/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/60 2 | -------------------------------------------------------------------------------- /.github/discussions/61/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Dart recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/61/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/61 2 | -------------------------------------------------------------------------------- /.github/discussions/62/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help D recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/62/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/62 2 | -------------------------------------------------------------------------------- /.github/discussions/63/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help CoffeeScript recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/63/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/63 2 | -------------------------------------------------------------------------------- /.github/discussions/64/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help Caml recover from Codevid-19 2 | -------------------------------------------------------------------------------- /.github/discussions/64/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/64 2 | -------------------------------------------------------------------------------- /.github/discussions/65/body/README.md: -------------------------------------------------------------------------------- 1 | 2 | This project misuses the term "programming language" a lot. 3 common examples are: 3 | 4 | * HTML programming language 5 | 6 | * XML programming language 7 | 8 | * ReStructured Text Programming language 9 | 10 | **Should I fix this, or leave it be?** 11 | -------------------------------------------------------------------------------- /.github/discussions/65/body/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | This project misuses the term "programming language" a lot. 3 common examples are: 3 | 4 | * HTML programming language 5 | 6 | * XML programming language 7 | 8 | * ReStructured Text Programming language 9 | 10 | **Should I fix this, or leave it be?** 11 | -------------------------------------------------------------------------------- /.github/discussions/65/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Does this bug you? 2 | -------------------------------------------------------------------------------- /.github/discussions/65/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/65 2 | -------------------------------------------------------------------------------- /.github/discussions/8/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help ActionScript 2.0 recover from Codevid-19 #8 2 | -------------------------------------------------------------------------------- /.github/discussions/8/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/8 2 | -------------------------------------------------------------------------------- /.github/discussions/9/title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Help ActionScript 3.0 recover from Codevid-19 #9 2 | -------------------------------------------------------------------------------- /.github/discussions/9/url/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/discussions/9 2 | -------------------------------------------------------------------------------- /.github/discussions/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/discussions/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/issues/1/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | *** 2 | 3 | ### Project: code distancing in all languages 4 | 5 | A goal I have been working on for this project is to make code distancing script files in all programming languages (and later all common human-spoken languages) 6 | 7 | This is similar to what http://rosettacode.org/wiki/Rosetta_Code does. 8 | 9 | This has been an ongoing project since October 4th 2020, but I am announcing it publicly today (October 7th 2020) 10 | 11 | *** 12 | 13 | -------------------------------------------------------------------------------- /.github/issues/1/Body/README.md: -------------------------------------------------------------------------------- 1 | *** 2 | 3 | ### Project: code distancing in all languages 4 | 5 | A goal I have been working on for this project is to make code distancing script files in all programming languages (and later all common human-spoken languages) 6 | 7 | This is similar to what http://rosettacode.org/wiki/Rosetta_Code does. 8 | 9 | This has been an ongoing project since October 4th 2020, but I am announcing it publicly today (October 7th 2020) 10 | 11 | *** 12 | 13 | -------------------------------------------------------------------------------- /.github/issues/1/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Project: code distancing in all languages #1 2 | -------------------------------------------------------------------------------- /.github/issues/1/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/issues/1 2 | -------------------------------------------------------------------------------- /.github/issues/7/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Need reference images for all languages #7 2 | -------------------------------------------------------------------------------- /.github/issues/7/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/issues/7 2 | -------------------------------------------------------------------------------- /.github/issues/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/issues/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/workflowArchives/Ada/ada_V1.yml: -------------------------------------------------------------------------------- 1 | name: Ada (GNAT) 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - name: Checkout 16 | uses: actions/checkout@v2 17 | 18 | - name: Set up GNAT toolchain 19 | run: > 20 | sudo apt-get update && 21 | sudo apt-get install gnat gprbuild 22 | 23 | - name: Build 24 | run: gprbuild -j0 -p 25 | -------------------------------------------------------------------------------- /.github/workflowArchives/C-CPP/c-cpp_V1.yml: -------------------------------------------------------------------------------- 1 | name: C/C++ CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: configure 17 | run: ./configure 18 | - name: make 19 | run: make 20 | - name: make check 21 | run: make check 22 | - name: make distcheck 23 | run: make distcheck 24 | -------------------------------------------------------------------------------- /.github/workflowArchives/Clojure/clojure_V1.yml: -------------------------------------------------------------------------------- 1 | name: Clojure CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Install dependencies 17 | run: lein deps 18 | - name: Run tests 19 | run: lein test 20 | -------------------------------------------------------------------------------- /.github/workflowArchives/Crystal/crystal_V1.yml: -------------------------------------------------------------------------------- 1 | name: Crystal CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | container: 15 | image: crystallang/crystal 16 | 17 | steps: 18 | - uses: actions/checkout@v2 19 | - name: Install dependencies 20 | run: shards install 21 | - name: Run tests 22 | run: crystal spec 23 | -------------------------------------------------------------------------------- /.github/workflowArchives/Docker/Image/docker-image_V1.yml: -------------------------------------------------------------------------------- 1 | name: Docker Image CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | 11 | build: 12 | 13 | runs-on: ubuntu-latest 14 | 15 | steps: 16 | - uses: actions/checkout@v2 17 | - name: Build the Docker image 18 | run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) 19 | -------------------------------------------------------------------------------- /.github/workflowArchives/Erlang/erlang_V1.yml: -------------------------------------------------------------------------------- 1 | name: Erlang CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | 11 | build: 12 | 13 | runs-on: ubuntu-latest 14 | 15 | container: 16 | image: erlang:22.0.7 17 | 18 | steps: 19 | - uses: actions/checkout@v2 20 | - name: Compile 21 | run: rebar3 compile 22 | - name: Run tests 23 | run: rebar3 do eunit, ct 24 | -------------------------------------------------------------------------------- /.github/workflowArchives/GoogleGo/go_V1.yml: -------------------------------------------------------------------------------- 1 | name: Go 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | 11 | build: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v2 15 | 16 | - name: Set up Go 17 | uses: actions/setup-go@v2 18 | with: 19 | go-version: 1.17 20 | 21 | - name: Build 22 | run: go build -v ./... 23 | 24 | - name: Test 25 | run: go test -v ./... 26 | -------------------------------------------------------------------------------- /.github/workflowArchives/Rust/rust_V1.yml: -------------------------------------------------------------------------------- 1 | name: Rust 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | env: 10 | CARGO_TERM_COLOR: always 11 | 12 | jobs: 13 | build: 14 | 15 | runs-on: ubuntu-latest 16 | 17 | steps: 18 | - uses: actions/checkout@v2 19 | - name: Build 20 | run: cargo build --verbose 21 | - name: Run tests 22 | run: cargo test --verbose 23 | -------------------------------------------------------------------------------- /.github/workflowArchives/Scala/scala_V1.yml: -------------------------------------------------------------------------------- 1 | name: Scala CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Set up JDK 11 17 | uses: actions/setup-java@v2 18 | with: 19 | java-version: '11' 20 | distribution: 'adopt' 21 | - name: Run tests 22 | run: sbt test 23 | -------------------------------------------------------------------------------- /.github/workflowArchives/Swift/swift_V1.yml: -------------------------------------------------------------------------------- 1 | name: Swift 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: macos-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Build 17 | run: swift build -v 18 | - name: Run tests 19 | run: swift test -v 20 | -------------------------------------------------------------------------------- /.github/workflows/ada.yml: -------------------------------------------------------------------------------- 1 | name: Ada (GNAT) 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - name: Checkout 16 | uses: actions/checkout@v2 17 | 18 | - name: Set up GNAT toolchain 19 | run: > 20 | sudo apt-get update && 21 | sudo apt-get install gnat gprbuild 22 | 23 | - name: Build 24 | run: gprbuild -j0 -p 25 | -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- 1 | name: C/C++ CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: configure 17 | run: ./configure 18 | - name: make 19 | run: make 20 | - name: make check 21 | run: make check 22 | - name: make distcheck 23 | run: make distcheck 24 | -------------------------------------------------------------------------------- /.github/workflows/clojure.yml: -------------------------------------------------------------------------------- 1 | name: Clojure CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Install dependencies 17 | run: lein deps 18 | - name: Run tests 19 | run: lein test 20 | -------------------------------------------------------------------------------- /.github/workflows/crystal.yml: -------------------------------------------------------------------------------- 1 | name: Crystal CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | container: 15 | image: crystallang/crystal 16 | 17 | steps: 18 | - uses: actions/checkout@v2 19 | - name: Install dependencies 20 | run: shards install 21 | - name: Run tests 22 | run: crystal spec 23 | -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- 1 | name: Docker Image CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | 11 | build: 12 | 13 | runs-on: ubuntu-latest 14 | 15 | steps: 16 | - uses: actions/checkout@v2 17 | - name: Build the Docker image 18 | run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) 19 | -------------------------------------------------------------------------------- /.github/workflows/erlang.yml: -------------------------------------------------------------------------------- 1 | name: Erlang CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | 11 | build: 12 | 13 | runs-on: ubuntu-latest 14 | 15 | container: 16 | image: erlang:22.0.7 17 | 18 | steps: 19 | - uses: actions/checkout@v2 20 | - name: Compile 21 | run: rebar3 compile 22 | - name: Run tests 23 | run: rebar3 do eunit, ct 24 | -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- 1 | name: Go 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | 11 | build: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v2 15 | 16 | - name: Set up Go 17 | uses: actions/setup-go@v2 18 | with: 19 | go-version: 1.17 20 | 21 | - name: Build 22 | run: go build -v ./... 23 | 24 | - name: Test 25 | run: go test -v ./... 26 | -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- 1 | name: Rust 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | env: 10 | CARGO_TERM_COLOR: always 11 | 12 | jobs: 13 | build: 14 | 15 | runs-on: ubuntu-latest 16 | 17 | steps: 18 | - uses: actions/checkout@v2 19 | - name: Build 20 | run: cargo build --verbose 21 | - name: Run tests 22 | run: cargo test --verbose 23 | -------------------------------------------------------------------------------- /.github/workflows/scala.yml: -------------------------------------------------------------------------------- 1 | name: Scala CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Set up JDK 11 17 | uses: actions/setup-java@v2 18 | with: 19 | java-version: '11' 20 | distribution: 'adopt' 21 | - name: Run tests 22 | run: sbt test 23 | -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- 1 | name: Swift 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: macos-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Build 17 | run: swift build -v 18 | - name: Run tests 19 | run: swift test -v 20 | -------------------------------------------------------------------------------- /20200609_Effect_of_pandemic_containment_measures.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/20200609_Effect_of_pandemic_containment_measures.gif -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | === Authors ==== 2 | 1. @seanpm2001 3 | 2. No other authors as of 2021, August 25th at 1:23 pm 4 | 5 | --- 6 | The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project. 7 | --- 8 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | === Authors ==== 2 | 1. @seanpm2001 3 | 2. No other authors as of 2021, August 24th at 3:36 pm 4 | 5 | --- 6 | The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project. 7 | --- 8 | -------------------------------------------------------------------------------- /Code-distancing/ALGOL/60/CODEDISTANCING.ALW: -------------------------------------------------------------------------------- 1 | – Code distancing for ALGOL 60 2 | 3 | 4 | 5 | 6 | 7 | 8 | BEGIN DISPLAY("Keep your ALGOL 60 code safe from COVID-19 by staying 6 line breaks apart") END. 9 | 10 | 11 | 12 | 13 | 14 | 15 | – Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/ALGOL/60/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ALGOL/60/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ALGOL/60/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ALGOL/60/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ALGOL/60/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ALGOL/60/OldVersions/CODEDISTANCINGV1.ALW: -------------------------------------------------------------------------------- 1 | – Code distancing for ALGOL 60 2 | 3 | 4 | 5 | 6 | 7 | 8 | BEGIN DISPLAY("Keep your ALGOL 60 code safe from COVID-19 by staying 6 line breaks apart") END. 9 | 10 | 11 | 12 | 13 | 14 | 15 | – Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/2.0/CodeDistancing.as: -------------------------------------------------------------------------------- 1 | // Code distancing for ActionScript 2.0 2 | 3 | 4 | 5 | 6 | 7 | 8 | createTextField("greet", 0, 0, 0, 100, 100); 9 | 10 | 11 | 12 | 13 | 14 | 15 | greet.text = "Keep your ActionScript 2.0 code safe from COVID-19 by staying 6 line breaks apart"; 16 | 17 | 18 | 19 | 20 | 21 | 22 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/2.0/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/2.0/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/2.0/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/2.0/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/2.0/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/2.0/OldVersions/CodeDistancingV1.as: -------------------------------------------------------------------------------- 1 | // Code distancing for ActionScript 2.0 2 | 3 | 4 | 5 | 6 | 7 | 8 | createTextField("greet", 0, 0, 0, 100, 100); 9 | 10 | 11 | 12 | 13 | 14 | 15 | greet.text = "Keep your ActionScript 2.0 code safe from COVID-19 by staying 6 line breaks apart"; 16 | 17 | 18 | 19 | 20 | 21 | 22 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/3.0/CodeDistancing.as: -------------------------------------------------------------------------------- 1 | // Code distancing for ActionScript 3.0 2 | 3 | 4 | 5 | 6 | 7 | 8 | var txtGreet: TextField = new TextField(); 9 | 10 | 11 | 12 | 13 | 14 | 15 | txtGreet.text = "Keep your ActionScript 3.0 code safe from COVID-19 by staying 6 line breaks apart"; 16 | 17 | 18 | 19 | 20 | 21 | 22 | this.addChild(txtGreet); 23 | 24 | 25 | 26 | 27 | 28 | 29 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/3.0/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/3.0/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/3.0/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/3.0/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/3.0/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionScript/3.0/OldVersions/CodeDistancingV1.as: -------------------------------------------------------------------------------- 1 | // Code distancing for ActionScript 3.0 2 | 3 | 4 | 5 | 6 | 7 | 8 | var txtGreet: TextField = new TextField(); 9 | 10 | 11 | 12 | 13 | 14 | 15 | txtGreet.text = "Keep your ActionScript 3.0 code safe from COVID-19 by staying 6 line breaks apart"; 16 | 17 | 18 | 19 | 20 | 21 | 22 | this.addChild(txtGreet); 23 | 24 | 25 | 26 | 27 | 28 | 29 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/ActionServerPages(ASP)/CodeDistancing.asp: -------------------------------------------------------------------------------- 1 | <% 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Response.Write "Keep your Action Server Pages (ASP) code safe from COVID-19 by staying 6 line breaks apart" 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | %> 30 | -------------------------------------------------------------------------------- /Code-distancing/ActionServerPages(ASP)/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionServerPages(ASP)/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionServerPages(ASP)/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionServerPages(ASP)/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionServerPages(ASP)/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ActionServerPages(ASP)/OldVersions/CodeDistancingV1.asp: -------------------------------------------------------------------------------- 1 | <% 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Response.Write "Keep your Action Server Pages (ASP) code safe from COVID-19 by staying 6 line breaks apart" 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | %> 30 | -------------------------------------------------------------------------------- /Code-distancing/Ada/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ada/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ada/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ada/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ada/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/AppleScript/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/AppleScript/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/AppleScript/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/AppleScript/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/AppleScript/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Assembly/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Assembly/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Assembly/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Assembly/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Assembly/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASH/CodeDistancing.sh: -------------------------------------------------------------------------------- 1 | # Code distancing for Bourne Again Shell 2 | 3 | 4 | 5 | 6 | 7 | 8 | $ # A traditional shell does not produce the same output 9 | 10 | 11 | 12 | 13 | 14 | 15 | $ #/bin/sh 16 | 17 | 18 | 19 | 20 | 21 | 22 | $ echo ("Keep your Python 3 code safe from COVID-19 by staying 6 line breaks apart"); 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 32 | -------------------------------------------------------------------------------- /Code-distancing/BASH/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASH/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASH/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASH/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASH/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASH/OldVersions/CodeDistancingV1.sh: -------------------------------------------------------------------------------- 1 | # Code distancing for Bourne Again Shell 2 | 3 | 4 | 5 | 6 | 7 | 8 | $ # A traditional shell does not produce the same output 9 | 10 | 11 | 12 | 13 | 14 | 15 | $ #/bin/sh 16 | 17 | 18 | 19 | 20 | 21 | 22 | $ echo ("Keep your Python 3 code safe from COVID-19 by staying 6 line breaks apart"); 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 32 | -------------------------------------------------------------------------------- /Code-distancing/BASIC/CodeDistancing.bas: -------------------------------------------------------------------------------- 1 | 10 PRINT "Code distancing for BASIC" 2 | 3 | 4 | 5 | 6 | 7 | 8 | 20 PRINT "Keep your BASIC code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | 30 PRINT "Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this!" 16 | 17 | 18 | 19 | 20 | 21 | 22 | 40 END 23 | -------------------------------------------------------------------------------- /Code-distancing/BASIC/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASIC/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASIC/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASIC/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASIC/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/BASIC/OldVersions/CodeDistancingV1.bas: -------------------------------------------------------------------------------- 1 | 10 PRINT "Code distancing for BASIC" 2 | 3 | 4 | 5 | 6 | 7 | 8 | 20 PRINT "Keep your BASIC code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | 30 PRINT "Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this!" 16 | 17 | 18 | 19 | 20 | 21 | 22 | 40 END 23 | -------------------------------------------------------------------------------- /Code-distancing/Batch/CodeDistancing.bat: -------------------------------------------------------------------------------- 1 | REM Code distancing for Batch 2 | 3 | 4 | 5 | 6 | 7 | 8 | @echo off 9 | 10 | 11 | 12 | 13 | 14 | 15 | title code-distancing 16 | 17 | 18 | 19 | 20 | 21 | 22 | color 0b 23 | 24 | 25 | 26 | 27 | 28 | 29 | echo Keep your Batch code safe from COVID-19 by staying 6 line breaks apart 30 | 31 | 32 | 33 | 34 | 35 | 36 | pause 37 | 38 | 39 | 40 | 41 | 42 | 43 | REM Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 44 | -------------------------------------------------------------------------------- /Code-distancing/Batch/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Batch/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Batch/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Batch/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Batch/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Batch/OldVersions/CodeDistancingV1.bat: -------------------------------------------------------------------------------- 1 | REM Code distancing for Batch 2 | 3 | 4 | 5 | 6 | 7 | 8 | @echo off 9 | 10 | 11 | 12 | 13 | 14 | 15 | title code-distancing 16 | 17 | 18 | 19 | 20 | 21 | 22 | color 0b 23 | 24 | 25 | 26 | 27 | 28 | 29 | echo Keep your Batch code safe from COVID-19 by staying 6 line breaks apart 30 | 31 | 32 | 33 | 34 | 35 | 36 | pause 37 | 38 | 39 | 40 | 41 | 42 | 43 | REM Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 44 | -------------------------------------------------------------------------------- /Code-distancing/Boo/CodeDistancing.boo: -------------------------------------------------------------------------------- 1 | # Code distancing for Boo 2 | 3 | 4 | 5 | 6 | 7 | 8 | print "Keep your Boo code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/Boo/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Boo/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Boo/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Boo/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Boo/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Boo/OldVersions/CodeDistancingV1.boo: -------------------------------------------------------------------------------- 1 | # Code distancing for Boo 2 | 3 | 4 | 5 | 6 | 7 | 8 | print "Keep your Boo code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/C#/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C#/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C#/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C#/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C#/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C++/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C++/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C++/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C++/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C++/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C++/OldVersions/CodeDistancingV1.cpp: -------------------------------------------------------------------------------- 1 | // Code distancing for Java 2 | 3 | 4 | 5 | 6 | 7 | 8 | #include 9 | 10 | 11 | 12 | 13 | 14 | 15 | int main() 16 | 17 | 18 | 19 | 20 | 21 | 22 | { 23 | 24 | 25 | 26 | 27 | 28 | 29 | std::cout << "Keep your Java code safe from COVID-19 by staying 6 line breaks apart"; 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | } 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | // Stay safe! 48 | -------------------------------------------------------------------------------- /Code-distancing/C/CodeDistancing.c: -------------------------------------------------------------------------------- 1 | // Code distancing for C 2 | 3 | 4 | 5 | 6 | 7 | 8 | # include 9 | 10 | 11 | 12 | 13 | 14 | 15 | int main(void) 16 | 17 | 18 | 19 | 20 | 21 | { 22 | 23 | 24 | 25 | 26 | 27 | 28 | printf("Keep your C code safe from COVID-19 by staying 6 line breaks apart"); 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | } 37 | 38 | 39 | 40 | 41 | 42 | 43 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 44 | -------------------------------------------------------------------------------- /Code-distancing/C/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/C/OldVersions/CodeDistancingV1.c: -------------------------------------------------------------------------------- 1 | // Code distancing for C 2 | 3 | 4 | 5 | 6 | 7 | 8 | # include 9 | 10 | 11 | 12 | 13 | 14 | 15 | int main(void) 16 | 17 | 18 | 19 | 20 | 21 | { 22 | 23 | 24 | 25 | 26 | 27 | 28 | printf("Keep your C code safe from COVID-19 by staying 6 line breaks apart"); 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | } 37 | 38 | 39 | 40 | 41 | 42 | 43 | // Stay safe! 44 | -------------------------------------------------------------------------------- /Code-distancing/C/OldVersions/CodeDistancingV2.c: -------------------------------------------------------------------------------- 1 | // Code distancing for C 2 | 3 | 4 | 5 | 6 | 7 | 8 | # include 9 | 10 | 11 | 12 | 13 | 14 | 15 | int main(void) 16 | 17 | 18 | 19 | 20 | 21 | { 22 | 23 | 24 | 25 | 26 | 27 | 28 | printf("Keep your C code safe from COVID-19 by staying 6 line breaks apart"); 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | } 37 | 38 | 39 | 40 | 41 | 42 | 43 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 44 | -------------------------------------------------------------------------------- /Code-distancing/CMake/CodeDistancing.cmake: -------------------------------------------------------------------------------- 1 | # Code distancing for Cmake 2 | 3 | 4 | 5 | 6 | 7 | 8 | message "Keep your CMake code safe from COVID-19 by staying 6 line breaks apart";; 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! *) 18 | -------------------------------------------------------------------------------- /Code-distancing/CMake/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CMake/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CMake/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CMake/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CMake/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CMake/OldVersions/CodeDistancingV1.cmake: -------------------------------------------------------------------------------- 1 | # Code distancing for Cmake 2 | 3 | 4 | 5 | 6 | 7 | 8 | message "Keep your CMake code safe from COVID-19 by staying 6 line breaks apart";; 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! *) 18 | -------------------------------------------------------------------------------- /Code-distancing/COBOL/68/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/COBOL/68/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/COBOL/68/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/COBOL/68/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/COBOL/68/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CSS/3.0/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CSS/3.0/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CSS/3.0/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CSS/3.0/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CSS/3.0/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/GitHub/LightMode/Screenshot from 2021-02-28 17-00-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Code-distancing/CSound/Images/Screenshots/GitHub/LightMode/Screenshot from 2021-02-28 17-00-25.png -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/GitHub/LightMode/Screenshot from 2021-02-28 17-00-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Code-distancing/CSound/Images/Screenshots/GitHub/LightMode/Screenshot from 2021-02-28 17-00-29.png -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/GitHub/LightMode/Screenshot from 2021-02-28 17-00-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Code-distancing/CSound/Images/Screenshots/GitHub/LightMode/Screenshot from 2021-02-28 17-00-32.png -------------------------------------------------------------------------------- /Code-distancing/CSound/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | -------------------------------------------------------------------------------- /Code-distancing/Caml/CodeDistancing.ml: -------------------------------------------------------------------------------- 1 | (* Code distancing for Caml *) 2 | 3 | 4 | 5 | 6 | 7 | 8 | print_endline "Keep your Caml code safe from COVID-19 by staying 6 line breaks apart";; 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | (* Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! *) 18 | -------------------------------------------------------------------------------- /Code-distancing/Caml/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Caml/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Caml/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Caml/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Caml/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Caml/OldVersions/CodeDistancingV1.ml: -------------------------------------------------------------------------------- 1 | (* Code distancing for Caml *) 2 | 3 | 4 | 5 | 6 | 7 | 8 | print_endline "Keep your Caml code safe from COVID-19 by staying 6 line breaks apart";; 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | (* Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! *) 18 | -------------------------------------------------------------------------------- /Code-distancing/CoffeeScript/CodeDistancing.coffee: -------------------------------------------------------------------------------- 1 | # Code distancing for Coffeescript 2 | 3 | 4 | 5 | 6 | 7 | 8 | alert 'Keep your CoffeeScript code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/CoffeeScript/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CoffeeScript/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CoffeeScript/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CoffeeScript/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CoffeeScript/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/CoffeeScript/OldVersions/CodeDistancingV1.coffee: -------------------------------------------------------------------------------- 1 | # Code distancing for Coffeescript 2 | 3 | 4 | 5 | 6 | 7 | 8 | alert 'Keep your CoffeeScript code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/D/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/D/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/D/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/D/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/D/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Dart/CodeDistancing.dart: -------------------------------------------------------------------------------- 1 | // Code distancing for Dart 2 | 3 | 4 | 5 | 6 | 7 | 8 | void main() { 9 | 10 | 11 | 12 | 13 | 14 | 15 | print('Keep your Dart code safe from COVID-19 by staying 6 line breaks apart'); 16 | 17 | 18 | 19 | 20 | 21 | 22 | } 23 | 24 | 25 | 26 | 27 | 28 | 29 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/Dart/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Dart/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Dart/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Dart/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Dart/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Dart/OldVersions/CodeDistancingV1.dart: -------------------------------------------------------------------------------- 1 | // Code distancing for Dart 2 | 3 | 4 | 5 | 6 | 7 | 8 | void main() { 9 | 10 | 11 | 12 | 13 | 14 | 15 | print('Keep your Dart code safe from COVID-19 by staying 6 line breaks apart'); 16 | 17 | 18 | 19 | 20 | 21 | 22 | } 23 | 24 | 25 | 26 | 27 | 28 | 29 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/Erlang/CodeDistancing.erl: -------------------------------------------------------------------------------- 1 | %% Code distancing for Erlang 2 | 3 | 4 | 5 | 6 | 7 | 8 | console.log("Keep your Erlang code safe from COVID-19 by staying 6 line breaks apart"); %% Bad syntax, I can't find good documentation on output in Erlang 9 | 10 | 11 | 12 | 13 | 14 | 15 | %% Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Erlang/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Erlang/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Erlang/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Erlang/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Erlang/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Erlang/OldVersions/CodeDistancingV1.erl: -------------------------------------------------------------------------------- 1 | %% Code distancing for Erlang 2 | 3 | 4 | 5 | 6 | 7 | 8 | console.log("Keep your Erlang code safe from COVID-19 by staying 6 line breaks apart"); %% Bad syntax, I can't find good documentation on output in Erlang 9 | 10 | 11 | 12 | 13 | 14 | 15 | %% Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/F#/CodeDistancing.fs: -------------------------------------------------------------------------------- 1 | // Code distancing for F# 2 | 3 | 4 | 5 | 6 | 7 | 8 | printfn "Keep your C# code safe from COVID-19 by staying 6 line breaks apart." 9 | 10 | 11 | 12 | 13 | 14 | 15 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/F#/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/F#/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/F#/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/F#/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/F#/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/F#/OldVersions/CodeDistancingV1.fs: -------------------------------------------------------------------------------- 1 | // Code distancing for F# 2 | 3 | 4 | 5 | 6 | 7 | 8 | printfn "Keep your C# code safe from COVID-19 by staying 6 line breaks apart." 9 | 10 | 11 | 12 | 13 | 14 | 15 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/FORTRAN/90/CodeDistancing.f90: -------------------------------------------------------------------------------- 1 | ! Code distancing for FORTRAN 90 2 | 3 | 4 | 5 | 6 | 7 | 8 | program codedistancing 9 | 10 | 11 | 12 | 13 | 14 | 15 | print *, "Keep your FORTRAN 90 code safe from COVID-19 by staying 6 line breaks apart" 16 | 17 | 18 | 19 | 20 | 21 | 22 | end program codedistancing 23 | 24 | 25 | 26 | 27 | 28 | 29 | ! Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/FORTRAN/90/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/FORTRAN/90/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/FORTRAN/90/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/FORTRAN/90/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/FORTRAN/90/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/FORTRAN/90/OldVersions/CodeDistancingV1.f90: -------------------------------------------------------------------------------- 1 | ! Code distancing for FORTRAN 90 2 | 3 | 4 | 5 | 6 | 7 | 8 | program codedistancing 9 | 10 | 11 | 12 | 13 | 14 | 15 | print *, "Keep your FORTRAN 90 code safe from COVID-19 by staying 6 line breaks apart" 16 | 17 | 18 | 19 | 20 | 21 | 22 | end program codedistancing 23 | 24 | 25 | 26 | 27 | 28 | 29 | ! Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/Genie/CodeDistancing.gs: -------------------------------------------------------------------------------- 1 | // Code distancing for Genie 2 | 3 | 4 | 5 | 6 | 7 | 8 | [indent=4] 9 | 10 | 11 | 12 | 13 | 14 | 15 | init 16 | 17 | 18 | 19 | 20 | 21 | 22 | print "Keep your Genie code safe from COVID-19 by staying 6 line breaks apart" 23 | 24 | 25 | 26 | 27 | 28 | 29 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/Genie/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Genie/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Genie/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Genie/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Genie/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Genie/OldVersions/CodeDistancingV1.gs: -------------------------------------------------------------------------------- 1 | // Code distancing for Genie 2 | 3 | 4 | 5 | 6 | 7 | 8 | [indent=4] 9 | 10 | 11 | 12 | 13 | 14 | 15 | init 16 | 17 | 18 | 19 | 20 | 21 | 22 | print "Keep your Genie code safe from COVID-19 by staying 6 line breaks apart" 23 | 24 | 25 | 26 | 27 | 28 | 29 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/Go (By Google, 2009)/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go (By Google, 2009)/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go (By Google, 2009)/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go (By Google, 2009)/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go (By Google, 2009)/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go!/CodeDistancing.go: -------------------------------------------------------------------------------- 1 | // Code distancing for Go! 2 | 3 | 4 | 5 | 6 | 7 | 8 | print ("Keep your Go! code safe from COVID-19 by staying 6 line breaks apart"); // The original Go! language has very poor documentation, so this is the best I can do. 9 | 10 | 11 | 12 | 13 | 14 | 15 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Go!/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go!/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go!/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go!/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go!/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Go!/OldVersions/CodeDistancingV1.go: -------------------------------------------------------------------------------- 1 | // Code distancing for Go! 2 | 3 | 4 | 5 | 6 | 7 | 8 | print ("Keep your Go! code safe from COVID-19 by staying 6 line breaks apart"); // The original Go! language has very poor documentation, so this is the best I can do. 9 | 10 | 11 | 12 | 13 | 14 | 15 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/HTML5/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/HTML5/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/HTML5/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/HTML5/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/HTML5/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Haskell/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Haskell/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Haskell/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Haskell/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Haskell/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Java/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Java/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Java/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Java/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Java/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Java/OldVersions/CodeDistancingV1.java: -------------------------------------------------------------------------------- 1 | // Code distancing for Java 2 | 3 | 4 | 5 | 6 | 7 | 8 | public class CodeDistancingApp { 9 | 10 | 11 | 12 | 13 | 14 | 15 | public static void main(String[] args) { 16 | 17 | 18 | 19 | 20 | 21 | 22 | System.out.println("Keep your Java code safe from COVID-19 by staying 6 line breaks apart") 23 | 24 | 25 | 26 | 27 | 28 | 29 | } 30 | 31 | 32 | 33 | 34 | 35 | 36 | } 37 | 38 | 39 | 40 | 41 | 42 | 43 | // Stay safe! 44 | -------------------------------------------------------------------------------- /Code-distancing/JavaScript/1.8/CodeDistancing.js: -------------------------------------------------------------------------------- 1 | // Code distancing for JavaScript 1.8 2 | 3 | 4 | 5 | 6 | 7 | 8 | console.log("Keep your JavaScript 1.8 code safe from COVID-19 by staying 6 line breaks apart"); 9 | 10 | 11 | 12 | 13 | 14 | 15 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/JavaScript/1.8/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/JavaScript/1.8/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/JavaScript/1.8/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/JavaScript/1.8/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/JavaScript/1.8/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/JavaScript/1.8/OldVersions/CodeDistancingV1.js: -------------------------------------------------------------------------------- 1 | // Code distancing for JavaScript 1.8 2 | 3 | 4 | 5 | 6 | 7 | 8 | console.log("Keep your JavaScript 1.8 code safe from COVID-19 by staying 6 line breaks apart"); 9 | 10 | 11 | 12 | 13 | 14 | 15 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Lisp/CodeDistancing.lisp: -------------------------------------------------------------------------------- 1 | ;; Code distancing for LISP 2 | 3 | 4 | 5 | 6 | 7 | 8 | (print "Keep your LISP code safe from COVID-19 by staying 6 line breaks apart") 9 | 10 | 11 | 12 | 13 | 14 | 15 | ;; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Lisp/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lisp/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lisp/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lisp/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lisp/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lisp/OldVersions/CodeDistancingV1.lisp: -------------------------------------------------------------------------------- 1 | ;; Code distancing for LISP 2 | 3 | 4 | 5 | 6 | 7 | 8 | (print "Keep your LISP code safe from COVID-19 by staying 6 line breaks apart") 9 | 10 | 11 | 12 | 13 | 14 | 15 | ;; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Lua/CodeDistancing.lua: -------------------------------------------------------------------------------- 1 | -- Code distancing for Lua 2 | 3 | 4 | 5 | 6 | 7 | 8 | print 'Keep your Lua code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | --Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/Lua/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lua/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lua/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lua/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lua/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Lua/OldVersions/CodeDistancingV1.lua: -------------------------------------------------------------------------------- 1 | -- Code distancing for Lua 2 | 3 | 4 | 5 | 6 | 7 | 8 | print 'Keep your Lua code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | --Stay safe! 18 | -------------------------------------------------------------------------------- /Code-distancing/Lua/OldVersions/CodeDistancingV2.lua: -------------------------------------------------------------------------------- 1 | -- Code distancing for Lua 2 | 3 | 4 | 5 | 6 | 7 | 8 | print 'Keep your Lua code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | --Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/MatLab/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MatLab/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MatLab/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MatLab/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MatLab/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MediaWiki/CodeDistancing.wiki: -------------------------------------------------------------------------------- 1 | === Code distancing for MediaWiki === 2 | 3 | 4 | 5 | 6 | 7 | 8 | Keep your MediaWiki documentation code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | === Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! === 18 | -------------------------------------------------------------------------------- /Code-distancing/MediaWiki/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MediaWiki/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MediaWiki/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MediaWiki/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MediaWiki/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/MediaWiki/OldVersions/CodeDistancingV1.wiki: -------------------------------------------------------------------------------- 1 | === Code distancing for MediaWiki === 2 | 3 | 4 | 5 | 6 | 7 | 8 | Keep your MediaWiki documentation code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | === Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! === 18 | -------------------------------------------------------------------------------- /Code-distancing/Nim/CodeDistancing.nim: -------------------------------------------------------------------------------- 1 | # Code distancing for NimRod/Nim 2 | 3 | 4 | 5 | 6 | 7 | 8 | echo "Keep your NimRod/Nim code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/Nim/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Nim/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Nim/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Nim/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Nim/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Nim/OldVersions/CodeDistancingV1.nim: -------------------------------------------------------------------------------- 1 | # Code distancing for NimRod/Nim 2 | 3 | 4 | 5 | 6 | 7 | 8 | echo "Keep your NimRod/Nim code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/Objective-C/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Objective-C/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Objective-C/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Objective-C/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Objective-C/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PHP/7.x/CodeDistancing.php: -------------------------------------------------------------------------------- 1 | 38 | -------------------------------------------------------------------------------- /Code-distancing/PHP/7.x/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PHP/7.x/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PHP/7.x/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PHP/7.x/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PHP/7.x/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Pascal/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Pascal/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Pascal/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Pascal/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Pascal/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Perl/CodeDistancing.pl: -------------------------------------------------------------------------------- 1 | # Code distancing for Perl 2 | 3 | 4 | 5 | 6 | 7 | 8 | print "Keep your Perl code safe from COVID-19 by staying 6 line breaks apart\n"; 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Perl/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Perl/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Perl/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Perl/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Perl/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Perl/OldVersions/CodeDistancingV1.pl: -------------------------------------------------------------------------------- 1 | # Code distancing for Perl 2 | 3 | 4 | 5 | 6 | 7 | 8 | print "Keep your Perl code safe from COVID-19 by staying 6 line breaks apart\n"; 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/PostScript/CodeDistancing.ps: -------------------------------------------------------------------------------- 1 | % Code distancing for PostScript 2 | 3 | 4 | 5 | 6 | 7 | 8 | %!PS 9 | 10 | 11 | 12 | 13 | 14 | 15 | (Keep your PostScript code safe from COVID-19 by staying 6 line breaks apart) = 16 | 17 | 18 | 19 | 20 | 21 | 22 | % Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/PostScript/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PostScript/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PostScript/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PostScript/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PostScript/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PostScript/OldVersions/CodeDistancingV1.ps: -------------------------------------------------------------------------------- 1 | % Code distancing for PostScript 2 | 3 | 4 | 5 | 6 | 7 | 8 | %!PS 9 | 10 | 11 | 12 | 13 | 14 | 15 | (Keep your PostScript code safe from COVID-19 by staying 6 line breaks apart) = 16 | 17 | 18 | 19 | 20 | 21 | 22 | % Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/PowerShell/CodeDistancing.ps1: -------------------------------------------------------------------------------- 1 | # Code distancing for PowerShell 2 | 3 | 4 | 5 | 6 | 7 | 8 | write-Host "Keep your PowerShell code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | echo "Keep your PowerShell code safe from COVID-19 by staying 6 line breaks apart" 16 | 17 | 18 | 19 | 20 | 21 | 22 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/PowerShell/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PowerShell/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PowerShell/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PowerShell/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PowerShell/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PowerShell/OldVersions/CodeDistancingV1.ps1: -------------------------------------------------------------------------------- 1 | # Code distancing for PowerShell 2 | 3 | 4 | 5 | 6 | 7 | 8 | write-Host "Keep your PowerShell code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | echo "Keep your PowerShell code safe from COVID-19 by staying 6 line breaks apart" 16 | 17 | 18 | 19 | 20 | 21 | 22 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/PureBasic/CodeDistancing.pb: -------------------------------------------------------------------------------- 1 | ; Code distancing for PureBasic 2 | 3 | 4 | 5 | 6 | 7 | 8 | MessageRequester("Message Box", "Keep your PureBasic code safe from COVID-19 by staying 6 line breaks apart" button "Quit" [quit]] 9 | 10 | 11 | 12 | 13 | 14 | 15 | ; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/PureBasic/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PureBasic/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PureBasic/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PureBasic/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PureBasic/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/PureBasic/OldVersions/CodeDistancingV1.pb: -------------------------------------------------------------------------------- 1 | ; Code distancing for PureBasic 2 | 3 | 4 | 5 | 6 | 7 | 8 | MessageRequester("Message Box", "Keep your PureBasic code safe from COVID-19 by staying 6 line breaks apart" button "Quit" [quit]] 9 | 10 | 11 | 12 | 13 | 14 | 15 | ; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Python3/CodeDistancing.py: -------------------------------------------------------------------------------- 1 | # Code distancing for Python 3 2 | 3 | 4 | 5 | 6 | 7 | 8 | print ("Keep your Python 3 code safe from COVID-19 by staying 6 line breaks apart") 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/Python3/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Python3/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Python3/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Python3/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Python3/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Python3/OldVersions/CodeDistancingV1.py: -------------------------------------------------------------------------------- 1 | # Code distancing for Python 3 2 | 3 | 4 | 5 | 6 | 7 | 8 | print ("Keep your Python 3 code safe from COVID-19 by staying 6 line breaks apart") 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! 18 | -------------------------------------------------------------------------------- /Code-distancing/Python3/OldVersions/CodeDistancingV2.py: -------------------------------------------------------------------------------- 1 | # Code distancing for Python 3 2 | 3 | 4 | 5 | 6 | 7 | 8 | print ("Keep your Python 3 code safe from COVID-19 by staying 6 line breaks apart") 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/R/CodeDistancing.r: -------------------------------------------------------------------------------- 1 | # Code distancing for R 2 | 3 | 4 | 5 | 6 | 7 | 8 | print ("Keep your R code safe from COVID-19 by staying 6 line breaks apart") 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/R/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/R/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/R/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/R/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/R/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/R/OldVersions/CodeDistancingV1.r: -------------------------------------------------------------------------------- 1 | # Code distancing for R 2 | 3 | 4 | 5 | 6 | 7 | 8 | print ("Keep your R code safe from COVID-19 by staying 6 line breaks apart") 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Welcome to the code hospital 5 | 6 | These scripts have been placed into the code hospital to be quarantined for COVID-19. You should wear a mask to visit them. [Put on a mask now](../Mask/EnableMask.md) 7 | 8 | Support your favorite programming languages in the hospital and work on not spreading COVID-19. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /Code-distancing/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Welcome to the code hospital 5 | 6 | These scripts have been placed into the code hospital to be quarantined for COVID-19. You should wear a mask to visit them. [Put on a mask now](../Mask/EnableMask.md) 7 | 8 | Support your favorite programming languages in the hospital and work on not spreading COVID-19. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /Code-distancing/REBOL/CodeDistancing.reb: -------------------------------------------------------------------------------- 1 | ; Code distancing for REBOL 2 | 3 | 4 | 5 | 6 | 7 | 8 | view layout [text "Keep your REBOL code safe from COVID-19 by staying 6 line breaks apart" button "Quit" [quit]] 9 | 10 | 11 | 12 | 13 | 14 | 15 | ; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/REBOL/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/REBOL/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/REBOL/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/REBOL/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/REBOL/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/REBOL/OldVersions/CodeDistancingV1.reb: -------------------------------------------------------------------------------- 1 | ; Code distancing for REBOL 2 | 3 | 4 | 5 | 6 | 7 | 8 | view layout [text "Keep your REBOL code safe from COVID-19 by staying 6 line breaks apart" button "Quit" [quit]] 9 | 10 | 11 | 12 | 13 | 14 | 15 | ; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/ReStructuredText/CodeDistancing.rst: -------------------------------------------------------------------------------- 1 | Code distancing for ReStructuredText 2 | 3 | 4 | 5 | 6 | 7 | 8 | Keep your ReStructuredText documentation code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/ReStructuredText/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ReStructuredText/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ReStructuredText/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ReStructuredText/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ReStructuredText/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ReStructuredText/OldVersions/CodeDistancingV1.rst: -------------------------------------------------------------------------------- 1 | Code distancing for ReStructuredText 2 | 3 | 4 | 5 | 6 | 7 | 8 | Keep your ReStructuredText documentation code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/Ruby/CodeDistancing.rb: -------------------------------------------------------------------------------- 1 | # Code distancing for Ruby 2 | 3 | 4 | 5 | 6 | 7 | 8 | puts 'Keep your Ruby code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Ruby/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ruby/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ruby/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ruby/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ruby/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Ruby/OldVersions/CodeDistancingV1.rb: -------------------------------------------------------------------------------- 1 | # Code distancing for Ruby 2 | 3 | 4 | 5 | 6 | 7 | 8 | puts 'Keep your Ruby code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Rust/CodeDistancing.rs: -------------------------------------------------------------------------------- 1 | // Code distancing for Rust 2 | 3 | 4 | 5 | 6 | 7 | 8 | fn main() { 9 | 10 | 11 | 12 | 13 | 14 | 15 | println!("Keep your Rust code safe from COVID-19 by staying 6 line breaks apart"); 16 | 17 | 18 | 19 | 20 | 21 | 22 | } 23 | 24 | 25 | 26 | 27 | 28 | 29 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/Rust/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Rust/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Rust/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Rust/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Rust/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Rust/OldVersions/CodeDistancingV1.rs: -------------------------------------------------------------------------------- 1 | // Code distancing for Rust 2 | 3 | 4 | 5 | 6 | 7 | 8 | fn main() { 9 | 10 | 11 | 12 | 13 | 14 | 15 | println!("Keep your Rust code safe from COVID-19 by staying 6 line breaks apart"); 16 | 17 | 18 | 19 | 20 | 21 | 22 | } 23 | 24 | 25 | 26 | 27 | 28 | 29 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 30 | -------------------------------------------------------------------------------- /Code-distancing/SQL/CodeDistancing.sql: -------------------------------------------------------------------------------- 1 | -- Code distancing for SQL 2 | 3 | 4 | 5 | 6 | 7 | 8 | CREATE TABLE MESSAGE; 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | INSERT INTO MESSAGE "Keep your SQL code safe from COVID-19 by staying 6 line breaks apart"; 17 | 18 | 19 | 20 | 21 | 22 | 23 | COMMIT; 24 | 25 | 26 | 27 | 28 | 29 | 30 | DROP TABLE MESSAGE; 31 | 32 | 33 | 34 | 35 | 36 | 37 | -- Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 38 | -------------------------------------------------------------------------------- /Code-distancing/SQL/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SQL/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SQL/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SQL/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SQL/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SQL/OldVersions/CodeDistancingV1.sql: -------------------------------------------------------------------------------- 1 | -- Code distancing for SQL 2 | 3 | 4 | 5 | 6 | 7 | 8 | CREATE TABLE MESSAGE; 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | INSERT INTO MESSAGE "Keep your SQL code safe from COVID-19 by staying 6 line breaks apart"; 17 | 18 | 19 | 20 | 21 | 22 | 23 | COMMIT; 24 | 25 | 26 | 27 | 28 | 29 | 30 | DROP TABLE MESSAGE; 31 | 32 | 33 | 34 | 35 | 36 | 37 | -- Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 38 | -------------------------------------------------------------------------------- /Code-distancing/Scheme/CodeDistancing.scm: -------------------------------------------------------------------------------- 1 | ;; Code distancing for Scheme 2 | 3 | 4 | 5 | 6 | 7 | 8 | (let ((message0 (lambda() (display "Keep your Scheme code safe from COVID-19 by staying 6 line breaks apart") (newline)))) 9 | 10 | 11 | 12 | 13 | 14 | 15 | (message0)) 16 | 17 | 18 | 19 | 20 | 21 | 22 | ;; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/Scheme/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Scheme/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Scheme/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Scheme/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Scheme/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Scheme/OldVersions/CodeDistancingV1.scm: -------------------------------------------------------------------------------- 1 | ;; Code distancing for Scheme 2 | 3 | 4 | 5 | 6 | 7 | 8 | (let ((message0 (lambda() (display "Keep your Scheme code safe from COVID-19 by staying 6 line breaks apart") (newline)))) 9 | 10 | 11 | 12 | 13 | 14 | 15 | (message0)) 16 | 17 | 18 | 19 | 20 | 21 | 22 | ;; Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/SmallTalk/CodeDistancing.st: -------------------------------------------------------------------------------- 1 | "Code distancing for SmallTalk" 2 | 3 | 4 | 5 | 6 | 7 | 8 | Transcript show: 'Keep your SmallTalk code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | "Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this!" 18 | -------------------------------------------------------------------------------- /Code-distancing/SmallTalk/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SmallTalk/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SmallTalk/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SmallTalk/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SmallTalk/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/SmallTalk/OldVersions/CodeDistancingV1.st: -------------------------------------------------------------------------------- 1 | "Code distancing for SmallTalk" 2 | 3 | 4 | 5 | 6 | 7 | 8 | Transcript show: 'Keep your SmallTalk code safe from COVID-19 by staying 6 line breaks apart' 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | "Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this!" 18 | -------------------------------------------------------------------------------- /Code-distancing/Swift/CodeDistancing.swift: -------------------------------------------------------------------------------- 1 | // Code distancing for Swift 2 | 3 | 4 | 5 | 6 | 7 | 8 | msg1 str = "Keep your Swift code safe from COVID-19 by staying 6 line breaks apart"; 9 | 10 | 11 | 12 | 13 | 14 | 15 | print(msg1); // I can't find how to output in Swift. 16 | 17 | 18 | 19 | 20 | 21 | 22 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/Swift/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Swift/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Swift/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Swift/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Swift/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Swift/OldVersions/CodeDistancingV1.swift: -------------------------------------------------------------------------------- 1 | // Code distancing for Swift 2 | 3 | 4 | 5 | 6 | 7 | msg1 str = "Keep your Java code safe from COVID-19 by staying 6 line breaks apart"; 8 | 9 | 10 | 11 | 12 | 13 | 14 | print(msg1); // I can't find how to output in Swift. 15 | 16 | 17 | 18 | 19 | 20 | 21 | // Stay safe! 22 | -------------------------------------------------------------------------------- /Code-distancing/Swift/OldVersions/CodeDistancingV2.swift: -------------------------------------------------------------------------------- 1 | // Code distancing for Swift 2 | 3 | 4 | 5 | 6 | 7 | 8 | msg1 str = "Keep your Java code safe from COVID-19 by staying 6 line breaks apart"; 9 | 10 | 11 | 12 | 13 | 14 | 15 | print(msg1); // I can't find how to output in Swift. 16 | 17 | 18 | 19 | 20 | 21 | 22 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/Swift/OldVersions/CodeDistancingV3.swift: -------------------------------------------------------------------------------- 1 | // Code distancing for Swift 2 | 3 | 4 | 5 | 6 | 7 | 8 | msg1 str = "Keep your Swift code safe from COVID-19 by staying 6 line breaks apart"; 9 | 10 | 11 | 12 | 13 | 14 | 15 | print(msg1); // I can't find how to output in Swift. 16 | 17 | 18 | 19 | 20 | 21 | 22 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 23 | -------------------------------------------------------------------------------- /Code-distancing/ToolCommandLanguage(TCL)/CodeDistancing.tcl: -------------------------------------------------------------------------------- 1 | # Code distancing for Tool Command Language (TCL) 2 | 3 | 4 | 5 | 6 | 7 | 8 | puts "Keep your Tool Command Language (TCL) code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/ToolCommandLanguage(TCL)/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ToolCommandLanguage(TCL)/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ToolCommandLanguage(TCL)/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ToolCommandLanguage(TCL)/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ToolCommandLanguage(TCL)/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/ToolCommandLanguage(TCL)/OldVersions/CodeDistancingV1.tcl: -------------------------------------------------------------------------------- 1 | # Code distancing for Tool Command Language (TCL) 2 | 3 | 4 | 5 | 6 | 7 | 8 | puts "Keep your Tool Command Language (TCL) code safe from COVID-19 by staying 6 line breaks apart" 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 16 | -------------------------------------------------------------------------------- /Code-distancing/Vala/CodeDistancing.vala: -------------------------------------------------------------------------------- 1 | // Code distancing for Vala 2 | 3 | 4 | 5 | 6 | 7 | 8 | void main () { 9 | 10 | 11 | 12 | 13 | 14 | 15 | print ("Keep your Vala code safe from COVID-19 by staying 6 line breaks apart."); 16 | 17 | 18 | 19 | 20 | 21 | 22 | } 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 31 | -------------------------------------------------------------------------------- /Code-distancing/Vala/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Vala/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Vala/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Vala/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Vala/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Vala/OldVersions/CodeDistancingV1.vala: -------------------------------------------------------------------------------- 1 | // Code distancing for Vala 2 | 3 | 4 | 5 | 6 | 7 | 8 | void main () { 9 | 10 | 11 | 12 | 13 | 14 | 15 | print ("Keep your Vala code safe from COVID-19 by staying 6 line breaks apart."); 16 | 17 | 18 | 19 | 20 | 21 | 22 | } 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | // Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 31 | -------------------------------------------------------------------------------- /Code-distancing/Visual Basic/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Visual Basic/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Visual Basic/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Visual Basic/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/Visual Basic/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/XML/CodeDistancing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Code distancing for XML 9 | 10 | 11 | 12 | 13 | 14 | 15 | Keep your XML code safe from COVID-19 by staying 6 line breaks apart 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this!
25 | 26 | 27 | 28 | 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /Code-distancing/XML/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/XML/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/XML/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/XML/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/XML/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/XML/OldVersions/CodeDistancingV1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Code distancing for XML 9 | 10 | 11 | 12 | 13 | 14 | 15 | Keep your XML code safe from COVID-19 by staying 6 line breaks apart 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Code-distancing/YAML/CodeDistancing.yaml: -------------------------------------------------------------------------------- 1 | --- # Code distancing for YAML 2 | 3 | 4 | 5 | 6 | 7 | 8 | info: Keep your YAML code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | message: Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/YAML/CodeDistancing.yml: -------------------------------------------------------------------------------- 1 | --- # Code distancing for YAML 2 | 3 | 4 | 5 | 6 | 7 | 8 | info: Keep your YAML code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | message: Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/YAML/Images/Screenshots/Gedit/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/YAML/Images/Screenshots/Gedit/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/YAML/Images/Screenshots/GitHub/DarkMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/YAML/Images/Screenshots/GitHub/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/YAML/Images/Screenshots/Notepad++/LightMode/IGNORE.md: -------------------------------------------------------------------------------- 1 | # Ignore this file 2 | 3 | I needed to make this file in order to create a directory to map out the file system further. 4 | 5 | -------------------------------------------------------------------------------- /Code-distancing/YAML/OldVersions/CodeDistancingV1.yaml: -------------------------------------------------------------------------------- 1 | --- # Code distancing for YAML 2 | 3 | 4 | 5 | 6 | 7 | 8 | info: Keep your YAML code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | message: Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Code-distancing/YAML/OldVersions/CodeDistancingV1.yml: -------------------------------------------------------------------------------- 1 | --- # Code distancing for YAML 2 | 3 | 4 | 5 | 6 | 7 | 8 | info: Keep your YAML code safe from COVID-19 by staying 6 line breaks apart 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | message: Stay safe! Wear a mask, stay 6 feet apart. Flatten the curve. We can beat this! 18 | -------------------------------------------------------------------------------- /Dev/Templates/ImageDir/EmptyImageDirectoryTemplate_V1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Dev/Templates/ImageDir/EmptyImageDirectoryTemplate_V1.zip -------------------------------------------------------------------------------- /Docs/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code-Distancing Docs 5 | 6 | Additional documentation is available in a separate repository. 7 | 8 | - [:octocat: `Click/tap here to go to the official Code Distancing documentation repository`](https://github.com/seanpm2001/Code-Distancing_Docs/) 9 | 10 | *** 11 | 12 | **File version:** `1 (2024, Monday, May 27th at 03:52 pm PST)` 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /Docs/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code-Distancing Docs 5 | 6 | Additional documentation is available in a separate repository. 7 | 8 | - [:octocat: `Click/tap here to go to the official Code Distancing documentation repository`](https://github.com/seanpm2001/Code-Distancing_Docs/) 9 | 10 | *** 11 | 12 | **File version:** `1 (2024, Monday, May 27th at 03:52 pm PST)` 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code-Distancing Docs 5 | 6 | Additional documentation is available in a separate repository. 7 | 8 | - [:octocat: `Click/tap here to go to the official Code Distancing documentation repository`](https://github.com/seanpm2001/Code-Distancing_Docs/) 9 | 10 | *** 11 | 12 | **File version:** `1 (2024, Monday, May 27th at 03:52 pm PST)` 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /External/Plans/V3/REF_LanguagesFromYesterday_October7th2020.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Reference: Languages from yesterday (October 7th 2020) 5 | 6 | 1. S-RECORD 7 | 2. VHDL 8 | 3. Verilog 9 | 4. SystemVerilog 10 | 5. Diff 11 | 6. Intel Hex 12 | 7. No others 13 | 14 | These were the languages from October 7th 2020 that I couldn't format into code distancing format. 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /External/Plans/V3/V3_CODEDISTANCINGPLANS.md: -------------------------------------------------------------------------------- 1 | Gist update 2 | Code distancing {ML, ASP.NET (2x) JScript, JScript.NET, XUL, Elixir, JQuery, Forth, Objective-J, VHDL (comments only) Verilog (comments only) others from yesterday (comments only) Python2, SVG, GUI4CLI, B, Scala, SH, etc.} 3 | *** Release V3 4 | Possible En-US, EN-UK, DE-DE, RU-RU etc. Separations 5 | -------------------------------------------------------------------------------- /External/Project/README/OldVersions/20200609_Effect_of_pandemic_containment_measures.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/External/Project/README/OldVersions/20200609_Effect_of_pandemic_containment_measures.gif -------------------------------------------------------------------------------- /External/Project/README/OldVersions/SARS-CoV-2_(CDC-23312).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/External/Project/README/OldVersions/SARS-CoV-2_(CDC-23312).png -------------------------------------------------------------------------------- /External/ProjectWiki/.TODO/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/.TODO 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Admission-process/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Admission-process 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/CODEVID-19/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/CODEVID-19 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Code-distancing-distancer-(software)/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Code-distancing-distancer-(software) 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Code-distancing/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Code-distancing 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Code-hospital/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Code-hospital 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Home/OldVersions/HomeV1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code distancing joke program - Project Wiki (homepage) 5 | 6 | *** 7 | 8 | ## Welcome to the Code-distancing wiki! 9 | 10 | *** 11 | 12 | ### Featured articles: 13 | 14 | > * None, at the moment. 15 | 16 | *** 17 | 18 | ## File info 19 | 20 | File version: `1 (Wednesday, October 7th 2020 at 1:26 pm)` 21 | 22 | File type: `Markdown (*.md)` 23 | 24 | Line count: `29` 25 | 26 | ### End of file 27 | 28 | *** 29 | -------------------------------------------------------------------------------- /External/ProjectWiki/Home/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Introvert-paradise/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Introvert-paradise 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Plothole-how-did-everyone-get-CODEVID-19/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Plothole-how-did-everyone-get-CODEVID-19 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # About the ProjectWiki directory 5 | 6 | The ProjectWiki directory is a directory that contains markup copies of the GitHub project Wiki. This directory normally is not a main or original part of the project, but its purpose is archiving the project Wiki. 7 | 8 | That is pretty much it. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /External/ProjectWiki/Social-distancing/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Social-distancing 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Solving-plotholes/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Solving-plotholes 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Supported-languages/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Supported-languages 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Vaccine-(feature)/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Vaccine-(feature) 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/Valid-code-distancing-guidelines/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/Valid-code-distancing-guidelines 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/What-we-learned-from-the-pandemic/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/wiki/What-we-learned-from-the-pandemic 2 | -------------------------------------------------------------------------------- /External/ProjectWiki/_Footer/OldVersions/_FooterV1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code distancing joke project - Project Wiki (Footer) 5 | 6 | *** 7 | 8 | ## Info 9 | 10 | Social distancing - `?-present (October 7th 2020)` 11 | 12 | COVID-19 Pandemic - `December 31st 2019-present (October 7th 2020)` 13 | 14 | Computer programming - `~1840-present (October 7th 2020)` 15 | 16 | *** 17 | 18 | Footer version: `1 (Wednesday, October 7th 2020 at 1:41 pm)` 19 | 20 | ### End of footer 21 | 22 | *** 23 | -------------------------------------------------------------------------------- /External/ProjectWiki/_Footer/_Footer.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code distancing joke project - Project Wiki (Footer) 5 | 6 | *** 7 | 8 | ## Info 9 | 10 | Social distancing - `?-present (October 7th 2020)` 11 | 12 | COVID-19 Pandemic - `December 31st 2019-present (October 7th 2020)` 13 | 14 | Computer programming - `~1840-present (October 7th 2020)` 15 | 16 | *** 17 | 18 | Footer version: `1 (Wednesday, October 7th 2020 at 1:41 pm)` 19 | 20 | ### End of footer 21 | 22 | *** 23 | -------------------------------------------------------------------------------- /External/ProjectWiki/_Sidebar/OldVersions/_SidebarV1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code distancing joke program (and awareness program) - Project Wiki (Sidebar) 5 | 6 | [Back home](https://github.com/seanpm2001/Code-distancing/wiki/) 7 | 8 | *** 9 | 10 | ## Featured articles: 11 | 12 | > * None, at the moment. 13 | 14 | *** 15 | 16 | Code distancing comedy and awareness program - Project Wiki 17 | 18 | Sidebar version: `1 (Wednesday, October 7th 2020 at 1:45 pm)` 19 | 20 | ### End of sidebar 21 | 22 | *** 23 | -------------------------------------------------------------------------------- /External/ProjectWiki/_Sidebar/_Sidebar.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Code distancing joke program (and awareness program) - Project Wiki (Sidebar) 5 | 6 | [Back home](https://github.com/seanpm2001/Code-distancing/wiki/) 7 | 8 | *** 9 | 10 | ## Featured articles: 11 | 12 | > * None, at the moment. 13 | 14 | *** 15 | 16 | Code distancing comedy and awareness program - Project Wiki 17 | 18 | Sidebar version: `1 (Wednesday, October 7th 2020 at 1:45 pm)` 19 | 20 | ### End of sidebar 21 | 22 | *** 23 | -------------------------------------------------------------------------------- /External/Releases/v1.0-covid-19/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/releases/tag/v1.0-covid19 2 | -------------------------------------------------------------------------------- /External/Releases/v1.0.1-covid-19/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/releases/tag/v1.0.1-covid-19 2 | -------------------------------------------------------------------------------- /External/Releases/v1.0.2-covid-19/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/releases/tag/v1.0.2-covid-19 2 | -------------------------------------------------------------------------------- /External/Releases/v1.0.2.1-covid-19/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Code-distancing/releases/tag/v1.0.2.1-covid-19 2 | -------------------------------------------------------------------------------- /External/Research/Wikimedia/Wikipedia/2021/February/28th/COVID-19_Pandemic/PDF/COVID-19_pandemic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/External/Research/Wikimedia/Wikipedia/2021/February/28th/COVID-19_Pandemic/PDF/COVID-19_pandemic.pdf -------------------------------------------------------------------------------- /External/Research/Wikimedia/Wikipedia/2021/February/28th/Social-Distancing/PDF/Social_distancing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/External/Research/Wikimedia/Wikipedia/2021/February/28th/Social-Distancing/PDF/Social_distancing.pdf -------------------------------------------------------------------------------- /Mask/1930s_gas_mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Mask/1930s_gas_mask.jpg -------------------------------------------------------------------------------- /Mask/3M_N95_Particulate_Respirator.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Mask/3M_N95_Particulate_Respirator.JPG -------------------------------------------------------------------------------- /Mask/Clothfacemask101.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Mask/Clothfacemask101.jpeg -------------------------------------------------------------------------------- /Mask/Gas_mask_MUA_IMGP0157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Mask/Gas_mask_MUA_IMGP0157.jpg -------------------------------------------------------------------------------- /Mask/NoMaskTerminalIllness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Mask/NoMaskTerminalIllness.png -------------------------------------------------------------------------------- /Mask/Russian_gas_mask_ПМК-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Mask/Russian_gas_mask_ПМК-2.jpg -------------------------------------------------------------------------------- /Mask/Surgical_N95.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Mask/Surgical_N95.jpeg -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1: -------------------------------------------------------------------------------- 1 | === Authors ==== 2 | 1. @seanpm2001 3 | 2. No other authors as of 2021, August 25th at 1:23 pm 4 | 5 | --- 6 | The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project. 7 | --- 8 | -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1.md: -------------------------------------------------------------------------------- 1 | === Authors ==== 2 | 1. @seanpm2001 3 | 2. No other authors as of 2021, August 25th at 1:23 pm 4 | 5 | --- 6 | The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project. 7 | --- 8 | -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/README.txt: -------------------------------------------------------------------------------- 1 | === Authors ==== 2 | 1. @seanpm2001 3 | 2. No other authors as of 2021, August 25th at 1:23 pm 4 | 5 | --- 6 | The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project. 7 | --- 8 | -------------------------------------------------------------------------------- /OldVersions/Desktop.ini/README.ini: -------------------------------------------------------------------------------- 1 | # Start of script 2 | 3 | # Sample INI file 4 | 5 | [.ShellClassInfo] 6 | ConfirmFileOp=0 7 | NoSharing=1 8 | IconFile=/ 9 | IconIndex=0 10 | InfoTip="Miscellaneous project from @seanpm2001 [WRITE A BETTER DESCRIPTION HERE" 11 | 12 | # File info 13 | 14 | # File type: Windows INI file [desktop.ini] (*.ini) 15 | # File version: 1 (2023, Wednesday, May 3rd at 6:09 pm PST) 16 | # Line count (including blank lines and compiler line): 19 17 | 18 | # End of script 19 | -------------------------------------------------------------------------------- /OldVersions/Desktop.ini/V1_desktop.ini: -------------------------------------------------------------------------------- 1 | # Start of script 2 | 3 | # Sample INI file 4 | 5 | [.ShellClassInfo] 6 | ConfirmFileOp=0 7 | NoSharing=1 8 | IconFile=/ 9 | IconIndex=0 10 | InfoTip="Miscellaneous project from @seanpm2001 [WRITE A BETTER DESCRIPTION HERE" 11 | 12 | # File info 13 | 14 | # File type: Windows INI file [desktop.ini] (*.ini) 15 | # File version: 1 (2023, Wednesday, May 3rd at 6:09 pm PST) 16 | # Line count (including blank lines and compiler line): 19 17 | 18 | # End of script 19 | -------------------------------------------------------------------------------- /Plotholes/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Welcome to plotholes 5 | 6 | This is the place where possible plotholes in the CODEVID-19 story are discussed, and go solved or unsolved. I got a bit creative with this project, I tried, but it may not be perfect. 7 | 8 | Please remember that this project is _satire_. I feel like it would be pretty obvious to most people that this project is a big joke, but I have to put a disclaimer. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /Plotholes/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Welcome to plotholes 5 | 6 | This is the place where possible plotholes in the CODEVID-19 story are discussed, and go solved or unsolved. I got a bit creative with this project, I tried, but it may not be perfect. 7 | 8 | Please remember that this project is _satire_. I feel like it would be pretty obvious to most people that this project is a big joke, but I have to put a disclaimer. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README.md: -------------------------------------------------------------------------------- 1 | Keep your code safe from COVID-19 by staying 6 line breaks apart. 2 | -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt: -------------------------------------------------------------------------------- 1 | Keep your code safe from COVID-19 by staying 6 line breaks apart. 2 | -------------------------------------------------------------------------------- /RepoData/Description/GitHub/README.txt: -------------------------------------------------------------------------------- 1 | Keep your code safe from COVID-19 by staying 6 line breaks apart. 2 | -------------------------------------------------------------------------------- /SARS-CoV-2_(CDC-23312).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/SARS-CoV-2_(CDC-23312).png -------------------------------------------------------------------------------- /SocialDistancngSticker.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/SocialDistancngSticker.jpeg -------------------------------------------------------------------------------- /SponsorButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/SponsorButton.png -------------------------------------------------------------------------------- /Vaccine/Vaccine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Code-distancing/a3c1287554edea2bc5503313f283979f49819063/Vaccine/Vaccine.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-leap-day -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | # Start of script 2 | 3 | # Sample INI file 4 | 5 | [.ShellClassInfo] 6 | ConfirmFileOp=0 7 | NoSharing=1 8 | IconFile=/ 9 | IconIndex=0 10 | InfoTip="Miscellaneous project from @seanpm2001 [WRITE A BETTER DESCRIPTION HERE" 11 | 12 | # File info 13 | 14 | # File type: Windows INI file [desktop.ini] (*.ini) 15 | # File version: 1 (2023, Wednesday, May 3rd at 6:09 pm PST) 16 | # Line count (including blank lines and compiler line): 19 17 | 18 | # End of script 19 | --------------------------------------------------------------------------------