├── .gitignore ├── CNAME ├── README.md ├── _config.yml ├── elixir ├── README.md └── installation │ ├── MACOS.md │ ├── README.md │ └── WINDOWS.md ├── frontend └── README.md ├── getting started └── README.md ├── git ├── MARKDOWN.md ├── README.md ├── gitflow │ ├── README.md │ └── WINDOWS.md └── hub-to-lab-migration.sh ├── guidelines ├── blog │ └── README.md └── code-review │ ├── FAQ.md │ ├── FEEDBACK_CHECKLIST.md │ ├── README.md │ ├── REVIEW_CHECKLIST.md │ └── SETTING_UP_CODE_REVIEW_FOR_PROJECT.md ├── javascript └── README.md ├── laravel ├── QUICKSTART.md ├── README.md ├── installation │ ├── MACOS.md │ ├── README.md │ └── WINDOWS.md └── production-setup-guide │ ├── QUEUE_WORKER.md │ └── README.md ├── mysql └── README.md ├── php └── README.md ├── project setup └── README.md ├── react-native ├── README.md └── WINDOWS.md ├── react └── README.md ├── software-practices ├── README.md └── code-editors │ └── vs-code │ ├── README.md │ └── recommended-extensions │ └── README.md ├── testing └── cypress │ └── README.md ├── virtualhost ├── MACOS.md ├── README.md └── WINDOWS.md └── wordpress ├── README.md └── WPCS.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | resources.coloredcow.com -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/_config.yml -------------------------------------------------------------------------------- /elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/elixir/README.md -------------------------------------------------------------------------------- /elixir/installation/MACOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/elixir/installation/MACOS.md -------------------------------------------------------------------------------- /elixir/installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/elixir/installation/README.md -------------------------------------------------------------------------------- /elixir/installation/WINDOWS.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | 3 | ` TO BE ADDED` -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/frontend/README.md -------------------------------------------------------------------------------- /getting started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/getting started/README.md -------------------------------------------------------------------------------- /git/MARKDOWN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/git/MARKDOWN.md -------------------------------------------------------------------------------- /git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/git/README.md -------------------------------------------------------------------------------- /git/gitflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/git/gitflow/README.md -------------------------------------------------------------------------------- /git/gitflow/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/git/gitflow/WINDOWS.md -------------------------------------------------------------------------------- /git/hub-to-lab-migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/git/hub-to-lab-migration.sh -------------------------------------------------------------------------------- /guidelines/blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/guidelines/blog/README.md -------------------------------------------------------------------------------- /guidelines/code-review/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/guidelines/code-review/FAQ.md -------------------------------------------------------------------------------- /guidelines/code-review/FEEDBACK_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/guidelines/code-review/FEEDBACK_CHECKLIST.md -------------------------------------------------------------------------------- /guidelines/code-review/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/guidelines/code-review/README.md -------------------------------------------------------------------------------- /guidelines/code-review/REVIEW_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/guidelines/code-review/REVIEW_CHECKLIST.md -------------------------------------------------------------------------------- /guidelines/code-review/SETTING_UP_CODE_REVIEW_FOR_PROJECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/guidelines/code-review/SETTING_UP_CODE_REVIEW_FOR_PROJECT.md -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/javascript/README.md -------------------------------------------------------------------------------- /laravel/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/laravel/QUICKSTART.md -------------------------------------------------------------------------------- /laravel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/laravel/README.md -------------------------------------------------------------------------------- /laravel/installation/MACOS.md: -------------------------------------------------------------------------------- 1 | # Installation 2 | 3 | ` TO BE ADDED` -------------------------------------------------------------------------------- /laravel/installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/laravel/installation/README.md -------------------------------------------------------------------------------- /laravel/installation/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/laravel/installation/WINDOWS.md -------------------------------------------------------------------------------- /laravel/production-setup-guide/QUEUE_WORKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/laravel/production-setup-guide/QUEUE_WORKER.md -------------------------------------------------------------------------------- /laravel/production-setup-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/laravel/production-setup-guide/README.md -------------------------------------------------------------------------------- /mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/mysql/README.md -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/php/README.md -------------------------------------------------------------------------------- /project setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/project setup/README.md -------------------------------------------------------------------------------- /react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/react-native/README.md -------------------------------------------------------------------------------- /react-native/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/react-native/WINDOWS.md -------------------------------------------------------------------------------- /react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/react/README.md -------------------------------------------------------------------------------- /software-practices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/software-practices/README.md -------------------------------------------------------------------------------- /software-practices/code-editors/vs-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/software-practices/code-editors/vs-code/README.md -------------------------------------------------------------------------------- /software-practices/code-editors/vs-code/recommended-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/software-practices/code-editors/vs-code/recommended-extensions/README.md -------------------------------------------------------------------------------- /testing/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/testing/cypress/README.md -------------------------------------------------------------------------------- /virtualhost/MACOS.md: -------------------------------------------------------------------------------- 1 | # Virtualhost guide 2 | 3 | `Yet to add`. -------------------------------------------------------------------------------- /virtualhost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/virtualhost/README.md -------------------------------------------------------------------------------- /virtualhost/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/virtualhost/WINDOWS.md -------------------------------------------------------------------------------- /wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/wordpress/README.md -------------------------------------------------------------------------------- /wordpress/WPCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColoredCow/resources/HEAD/wordpress/WPCS.md --------------------------------------------------------------------------------