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
| class Customer | |
| attr_reader :name | |
| def initialize(name) | |
| @name = name # @name instance variable, cause it's created when instance initialized | |
| end | |
| @class_variable = 'hello' #=> also class variable :P |
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
| - в меню бренда нужно добавить пункт "Акции" и в пункт "Информация о бренде", надо добавить стрелочку как и на каталоге (на всех макетах). | |
| - нужна страница "О бреде". | |
| - В способе доставки, когда выбран способ доставки надо указать адрес, должно быть место куда этот адрес можно ввести. |
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
| <?php | |
| $sourcefile = fopen('word.txt', 'r'); | |
| while (!feof($sourcefile)){ | |
| $cursymbol = fread($sourcefile, 1); | |
| if ($cursymbol != " "){ | |
| $word = $word . $cursymbol; | |
| } else { | |
| $words[$word] += 1; | |
| $word = null; | |
| } |
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
| <ul> | |
| <li class="parent_li" data-id="5" data-loaded="false"> | |
| <span><i class="glyphicon glyphicon-plus-sign"></i>Jake Johnson</span> | |
| <i class="glyphicon glyphicon-earphone"></i>78293423 | |
| <i class="glyphicon glyphicon-envelope"></i>[email protected] | |
| <i class="glyphicon glyphicon-credit-card"></i>0.0рублей | |
| </li> | |
| <li class="parent_li" data-id="8" data-loaded="false"> | |
| <span><i class="glyphicon glyphicon-plus-sign"></i>Michael</span> | |
| <i class="glyphicon glyphicon-earphone"></i>366666 |