This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcloud config set compute/region europe-west3 | |
gcloud config set compute/zone europe-west3-a | |
gcloud container clusters create \ | |
alexandros-kube-test \ | |
--num-nodes=6 \ | |
--preemptible \ | |
--cluster-version=latest \ | |
--disk-size=60G | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://magento.com/help/documentation | |
http://devdocs.magento.com/guides/m1x/magefordev/mage-for-dev-1.html | |
https://github.com/aleron75/mageres | |
http://magedevguide.com/ | |
http://icecreamlab.com/wp-content/uploads/2013/07/magebook.pdf | |
https://magentotherightway.com/ | |
https://magento2.atlassian.net/wiki/display/m1wiki/Magento+1.x+Wiki | |
https://github.com/magenx/Magento-nginx-config | |
https://info2.magento.com/rs/318-XBX-392/images/MagentoECG-PoweringMagentowithNgnixandPHP-FPM.pdf | |
http://www.mconnectmedia.com/blog/understanding-magento-module-structure-and-code-execution/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" set default encoding | |
set encoding=utf-8 | |
" Activate indentation | |
filetype plugin indent on | |
" show existing tab with 4 spaces width | |
set tabstop=4 | |
" when indenting with '>', use 4 spaces width | |
set shiftwidth=4 | |
" On pressing tab, insert 4 spaces | |
set expandtab |