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
YandexDisk CLI Linux Utilite | |
================== | |
$ yandex-disk token USERNAME - получить ключ авторизации для логина на Яндексе | |
$ yandex-disk start - запустить демон и синхронизировать все папки | |
$ yandex-disk status - отобразить статус работы демона (состояние синхронизации, ошибки синхронизации, список синхронизированных файлов, общее и свободное пространство на Диске) | |
$ yandex-disk stop - остановить работу демона | |
$ yandex-disk sync - синхронизировать все папки | |
$ yandex-disk publish FILE - получить публичную ссылку на указанный файл или папку | |
$ yandex-disk unpublish FILE - отменить публикацию для указанного файла или папки | |
=================== |
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
<div class="container"> | |
<div class="container__part">1</div> | |
<div class="container__part">2</div> | |
<div class="container__part">3</div> | |
<div class="container__part">4</div> | |
<div class="container__part">5</div> | |
</div> |
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
.mail__products__wrap | |
- for (var x = 1; x < 5; x++) | |
.mail__products__item | |
a(href="#{js}") | |
img(src="img/items/" + x + ".jpg", alt="Alt") | |
.mail__price 2 000 руб. | |
a(href="#{js}").product__button Заказать |
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
{ | |
"auto_complete": false, | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 0, | |
"caret_extra_top": 0, | |
"caret_extra_width": 1, | |
"color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme", | |
"draw_white_space": "all", | |
"enable_telemetry": "false", | |
"ensure_newline_at_eof_on_save": true, |
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
HTML: | |
<div id="mask"></div> | |
CSS: | |
#mask { | |
background: url(demo.png) no-repeat 0 0 transparent; | |
height: 37px; | |
overflow: hidden; | |
position: relative; | |
width: 95px; |
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
HTML: | |
<div class="block1"> | |
<img src="images/charlize_theron_1.jpg" width="480" height="300"> | |
</div> | |
CSS: | |
.block1{ | |
box-shadow: inset 0 0 6px 4px rgba(0,0,0,.7); | |
width: 480px; | |
height: 300px; |
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
HTML: | |
<div class="block2"></div> | |
CSS: | |
.block2{ | |
box-shadow: inset 0 0 12px 8px rgba(0,0,0,.6); | |
width: 481px; | |
height: 361px; | |
background: url(images/charlize_theron_2.jpg) 0 0 no-repeat; | |
} |
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
Создать постоянные alias в OSX | |
1. Создаем файл (если его нет): ~/.profile | |
2. Прописываем необходимый алиас в таком виде: alias name='command' | |
Где 'name' — имя алиаса; 'command' - консольная команда | |
3. Обновляем лист алиасов: source ~/.profile |