Обязательно к прочтению перед работой.
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
| sudo add-apt-repository ppa:scopes-packagers/ppa | |
| sudo apt-get update && sudo apt-get install unity-lens-utilities unity-scope-calculator |
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
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Terminal=false | |
| Icon=/usr/share/pixmaps/sublime.png | |
| Name=Sublime Text 2 | |
| Exec=ПУТЬ_К_SUBLIME | |
| MimeType=image/bmp;image/gif;image/jpeg;image/jpg;image/pjpeg;image/png;image/tiff;image/x-bmp;image/x-gray;image/x-icb;image/x-ico;image/x-png;image/x-portable-anymap;image/x-portable-bitmap;image/x-portable-graymap;image/x-portable-pixmap;image/x-xbitmap;image/x-xpixmap;image/x-pcx;image/svg+xml;image/svg+xml-compressed;image/vnd.wap.wbmp;application/pdf;application/x-bzpdf;application/x-gzpdf;application/x-xzpdf;application/postscript;application/x-bzpostscript;application/x-gzpostscript;image/x-eps;image/x-bzeps;image/x-gzeps;application/x-dvi;application/x-bzdvi;application/x-gzdvi;image/vnd.djvu;image/tiff;application/x-cbr;application/x-cbz;application/x-cb7;application/x-cbt;audio/wav;audio/mpeg; |
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
| #!/bin/bash | |
| USAGE="Usage: -b branch name" | |
| while getopts b: options; do | |
| case $options in | |
| b ) BRANCH="$OPTARG";; | |
| esac | |
| done |
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
| /* | |
| Usage: | |
| fetchTemplate('#hello_world', { | |
| h: 'Hello', | |
| w: 'world', | |
| }) | |
| <!DOCTYPE HTML> | |
| <html> | |
| <body> |
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
| SELECT CONCAT('ALTER TABLE `', t.`TABLE_SCHEMA`, '`.`', t.`TABLE_NAME`, '` CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;') as sqlcode | |
| FROM `information_schema`.`TABLES` t | |
| WHERE 1 | |
| AND t.`TABLE_SCHEMA` = 'db_name' | |
| ORDER BY 1 |
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
| bindkey "^[[1~" beginning-of-line | |
| bindkey "^[[4~" end-of-line | |
| bindkey "^[OH" beginning-of-line | |
| bindkey "^[OF" end-of-line |
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 | |
| array( | |
| // Название динамического объекта, будет использоваться в качестве object_type | |
| 'products' => array ( | |
| // Страница редактирования динамического объекта, на которой должна отобразиться вкладка Blocks в административной части сайта | |
| 'admin_dispatch' => 'products.update', | |
| // Адрес страницы на которой в клинтской зоне и в панели управления блоками будет доступна работа с динамическим объектом | |
| 'customer_dispatch' => 'products.view', |
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 | |
| 'test_block' => array ( | |
| 'content' => array( | |
| 'some_value' => array( | |
| 'type' => 'text', | |
| ) | |
| ) | |
| ) |
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 | |
| // Сука сет через гет | |
| if ($count_cache_parent_items_path < SEO_RUNTIME_CACHE_COUNT) { | |
| $reg = & Registry::get("runtime.seo.parent_items"); | |
| $reg[$object_type][$object_id] = $id_path; | |
| $count_cache_parent_items_path++; | |
| } | |
| // Чётко вообще. | |
| if (is_array($templates)) { |