├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── PAIR_PROGRAMMING.md ├── README.md ├── best_practices ├── AWS.md ├── CODE_REVIEWER_GUIDE.md ├── COOL_AND_DAMNED_GEMS.md ├── PROJECT_SETUP_GUIDE.md ├── README.md ├── USING_RELEASE_TOGGLES.md ├── VSCODE_ROR_SETUP_GUIDE.md ├── aws │ ├── ecr │ │ └── lifecycle_policies.json │ ├── iam │ │ └── media_management_policy.json │ └── s3 │ │ └── public_access_block_config.json ├── code-analysis │ ├── .gitignore │ ├── .rubocop-rails.yml │ ├── .rubocop.yml │ ├── .scss-lint.yml │ ├── README.md │ ├── bin │ │ └── parse_rubocop.rb │ ├── default.eslintrc.yml │ ├── ember │ │ ├── ember-2.codeclimate.yml │ │ ├── ember-2.eslintrc.js │ │ ├── ember-3.codeclimate.yml │ │ ├── ember-3.eslintignore.txt │ │ └── ember-3.eslintrc.js │ ├── javascript.codeclimate.yml │ ├── python.codeclimate.yml │ ├── rails-and-react.codeclimate.yml │ ├── rails.codeclimate.yml │ ├── react.eslintrc.yml │ ├── react │ │ ├── eslintignore.txt │ │ └── react-spa.codeclimate.yml │ ├── reek-defaults.yml │ ├── reek-rails.yml │ ├── rubocop │ │ ├── 0.60 │ │ │ ├── core.yml │ │ │ └── rails.yml │ │ └── 1.9.1 │ │ │ └── rubocop.yml │ └── tox.ini └── mobile_development.md ├── design ├── FREEZE_EMAIL_TEMPLATE_V1.md ├── FREEZE_EMAIL_TEMPLATE_V2.md ├── POST_DESIGN_SPRINT_WEEK_LAYOUT.md └── POST_SPRINT_WEEK_LAYOUT_EMAIL_TEMPLATE.md ├── happiness └── README.md ├── images ├── cname_config.png └── forwarding.png ├── onboarding └── README.md ├── open_source ├── README.md └── SAMPLE.md ├── project_administration ├── README.md └── project_administration.md ├── remote └── README.md ├── stack ├── docker │ ├── COMMON_DOCKERFILE_STEPS.md │ ├── README.md │ └── dockerignore_linux ├── git │ ├── GIT_ADD_PATCH.md │ ├── GIT_ALIASES.md │ ├── GIT_STASH.md │ ├── README.md │ ├── gitignore_ios │ ├── gitignore_rails │ └── img │ │ ├── step_1.png │ │ ├── step_2.png │ │ ├── step_3.png │ │ ├── step_4.png │ │ ├── step_5.png │ │ └── step_6.png ├── javascript │ └── README.md ├── python │ └── README.md ├── rails │ ├── BEST_PRACTICES.md │ ├── PURGE_CSS_INTEGRATION.md │ ├── README.md │ └── purgecss_results │ │ ├── after.png │ │ └── before.png ├── react │ └── README.md ├── ruby │ ├── BEST_PRACTICES.md │ └── README.md ├── sass │ ├── BEST_PRACTICES.md │ └── README.md └── swift │ └── README.md ├── templates ├── CONTRIBUTING_TEMPLATE.md ├── FEEDBACK_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── README_TEMPLATE.md └── REPORTING_BUG.md ├── testing ├── README.md └── rails.md ├── usability_test └── README.md └── workshops ├── README.md └── TEMPLATE.md /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### What does this PR do? 2 | 3 | * 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | tdd/Node_JS.md 3 | *.swp 4 | 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /PAIR_PROGRAMMING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/PAIR_PROGRAMMING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/README.md -------------------------------------------------------------------------------- /best_practices/AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/AWS.md -------------------------------------------------------------------------------- /best_practices/CODE_REVIEWER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/CODE_REVIEWER_GUIDE.md -------------------------------------------------------------------------------- /best_practices/COOL_AND_DAMNED_GEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/COOL_AND_DAMNED_GEMS.md -------------------------------------------------------------------------------- /best_practices/PROJECT_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/PROJECT_SETUP_GUIDE.md -------------------------------------------------------------------------------- /best_practices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/README.md -------------------------------------------------------------------------------- /best_practices/USING_RELEASE_TOGGLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/USING_RELEASE_TOGGLES.md -------------------------------------------------------------------------------- /best_practices/VSCODE_ROR_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/VSCODE_ROR_SETUP_GUIDE.md -------------------------------------------------------------------------------- /best_practices/aws/ecr/lifecycle_policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/aws/ecr/lifecycle_policies.json -------------------------------------------------------------------------------- /best_practices/aws/iam/media_management_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/aws/iam/media_management_policy.json -------------------------------------------------------------------------------- /best_practices/aws/s3/public_access_block_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/aws/s3/public_access_block_config.json -------------------------------------------------------------------------------- /best_practices/code-analysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/.gitignore -------------------------------------------------------------------------------- /best_practices/code-analysis/.rubocop-rails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/.rubocop-rails.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/.rubocop.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/.scss-lint.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/README.md -------------------------------------------------------------------------------- /best_practices/code-analysis/bin/parse_rubocop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/bin/parse_rubocop.rb -------------------------------------------------------------------------------- /best_practices/code-analysis/default.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/default.eslintrc.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/ember/ember-2.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/ember/ember-2.codeclimate.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/ember/ember-2.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/ember/ember-2.eslintrc.js -------------------------------------------------------------------------------- /best_practices/code-analysis/ember/ember-3.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/ember/ember-3.codeclimate.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/ember/ember-3.eslintignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/ember/ember-3.eslintignore.txt -------------------------------------------------------------------------------- /best_practices/code-analysis/ember/ember-3.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/ember/ember-3.eslintrc.js -------------------------------------------------------------------------------- /best_practices/code-analysis/javascript.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/javascript.codeclimate.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/python.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/python.codeclimate.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/rails-and-react.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/rails-and-react.codeclimate.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/rails.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/rails.codeclimate.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/react.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/react.eslintrc.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/react/eslintignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/react/eslintignore.txt -------------------------------------------------------------------------------- /best_practices/code-analysis/react/react-spa.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/react/react-spa.codeclimate.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/reek-defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/reek-defaults.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/reek-rails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/reek-rails.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/rubocop/0.60/core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/rubocop/0.60/core.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/rubocop/0.60/rails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/rubocop/0.60/rails.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/rubocop/1.9.1/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/rubocop/1.9.1/rubocop.yml -------------------------------------------------------------------------------- /best_practices/code-analysis/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/code-analysis/tox.ini -------------------------------------------------------------------------------- /best_practices/mobile_development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/best_practices/mobile_development.md -------------------------------------------------------------------------------- /design/FREEZE_EMAIL_TEMPLATE_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/design/FREEZE_EMAIL_TEMPLATE_V1.md -------------------------------------------------------------------------------- /design/FREEZE_EMAIL_TEMPLATE_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/design/FREEZE_EMAIL_TEMPLATE_V2.md -------------------------------------------------------------------------------- /design/POST_DESIGN_SPRINT_WEEK_LAYOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/design/POST_DESIGN_SPRINT_WEEK_LAYOUT.md -------------------------------------------------------------------------------- /design/POST_SPRINT_WEEK_LAYOUT_EMAIL_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/design/POST_SPRINT_WEEK_LAYOUT_EMAIL_TEMPLATE.md -------------------------------------------------------------------------------- /happiness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/happiness/README.md -------------------------------------------------------------------------------- /images/cname_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/images/cname_config.png -------------------------------------------------------------------------------- /images/forwarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/images/forwarding.png -------------------------------------------------------------------------------- /onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/onboarding/README.md -------------------------------------------------------------------------------- /open_source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/open_source/README.md -------------------------------------------------------------------------------- /open_source/SAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/open_source/SAMPLE.md -------------------------------------------------------------------------------- /project_administration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/project_administration/README.md -------------------------------------------------------------------------------- /project_administration/project_administration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/project_administration/project_administration.md -------------------------------------------------------------------------------- /remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/remote/README.md -------------------------------------------------------------------------------- /stack/docker/COMMON_DOCKERFILE_STEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/docker/COMMON_DOCKERFILE_STEPS.md -------------------------------------------------------------------------------- /stack/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/docker/README.md -------------------------------------------------------------------------------- /stack/docker/dockerignore_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/docker/dockerignore_linux -------------------------------------------------------------------------------- /stack/git/GIT_ADD_PATCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/GIT_ADD_PATCH.md -------------------------------------------------------------------------------- /stack/git/GIT_ALIASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/GIT_ALIASES.md -------------------------------------------------------------------------------- /stack/git/GIT_STASH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/GIT_STASH.md -------------------------------------------------------------------------------- /stack/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/README.md -------------------------------------------------------------------------------- /stack/git/gitignore_ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/gitignore_ios -------------------------------------------------------------------------------- /stack/git/gitignore_rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/gitignore_rails -------------------------------------------------------------------------------- /stack/git/img/step_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/img/step_1.png -------------------------------------------------------------------------------- /stack/git/img/step_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/img/step_2.png -------------------------------------------------------------------------------- /stack/git/img/step_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/img/step_3.png -------------------------------------------------------------------------------- /stack/git/img/step_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/img/step_4.png -------------------------------------------------------------------------------- /stack/git/img/step_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/img/step_5.png -------------------------------------------------------------------------------- /stack/git/img/step_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/git/img/step_6.png -------------------------------------------------------------------------------- /stack/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/javascript/README.md -------------------------------------------------------------------------------- /stack/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/python/README.md -------------------------------------------------------------------------------- /stack/rails/BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/rails/BEST_PRACTICES.md -------------------------------------------------------------------------------- /stack/rails/PURGE_CSS_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/rails/PURGE_CSS_INTEGRATION.md -------------------------------------------------------------------------------- /stack/rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/rails/README.md -------------------------------------------------------------------------------- /stack/rails/purgecss_results/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/rails/purgecss_results/after.png -------------------------------------------------------------------------------- /stack/rails/purgecss_results/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/rails/purgecss_results/before.png -------------------------------------------------------------------------------- /stack/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/react/README.md -------------------------------------------------------------------------------- /stack/ruby/BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/ruby/BEST_PRACTICES.md -------------------------------------------------------------------------------- /stack/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/ruby/README.md -------------------------------------------------------------------------------- /stack/sass/BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/sass/BEST_PRACTICES.md -------------------------------------------------------------------------------- /stack/sass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/sass/README.md -------------------------------------------------------------------------------- /stack/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/stack/swift/README.md -------------------------------------------------------------------------------- /templates/CONTRIBUTING_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/templates/CONTRIBUTING_TEMPLATE.md -------------------------------------------------------------------------------- /templates/FEEDBACK_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/templates/FEEDBACK_TEMPLATE.md -------------------------------------------------------------------------------- /templates/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/templates/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/README_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/templates/README_TEMPLATE.md -------------------------------------------------------------------------------- /templates/REPORTING_BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/templates/REPORTING_BUG.md -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/testing/rails.md -------------------------------------------------------------------------------- /usability_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/usability_test/README.md -------------------------------------------------------------------------------- /workshops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/workshops/README.md -------------------------------------------------------------------------------- /workshops/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IcaliaLabs/guides/HEAD/workshops/TEMPLATE.md --------------------------------------------------------------------------------