This file contains 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. - если после тега поставить точку, многострочный текст будет восприниматься как содержимое одного тега | |
запуск с ключом -P в cmd - создает отформатированный html, где все теги с новой строки. | |
ключ -w = watch вотчит изменения, автоматически компилит. |
This file contains 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
.* | |
!.bowerrc | |
/.idea/ | |
/app/cache/* | |
/app/logs/* | |
/app/config/parameters.yml | |
!.fontcustom* | |
/vendor | |
/uploads |
This file contains 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
/msnp24 |
This file contains 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
net use X: \\SERVER\Share | |
// привязать к расшареной папке на сетевом ресурсе имя диска (X) | |
xcopy C:\users D:\copy1 /H /Y /C /R /S | |
// скопировать все файлы и подкаталоги ( /S ) с перезаписью существующих без запроса ( /Y ) , включая скрытые и системные. ( /H ) с перезаписью файлов с атрибутом "Только чтение" (/R) и игнорированием ошибок ( /C ) | |
This file contains 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
bs.reload({stream: true}) |
This file contains 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
Круглая шпация, U+2003,   — как было сказано, имеет ширину, равную размеру кегля. Также называется Em Space, возможно, потому что буква «M» в каких-либо старых шрифтах имела такую ширину. Вместе с тем, сейчас это выполняется далеко не везде, и поэтому утверждение, что Em Space всегда имеет ширину буквы «M» — заблуждение. | |
Полукруглая шпация, U+2002,   — половина круглой. Также называется En Space, возможно, потому что буква «N» в каких-либо старых шрифтах имела такую ширину. Вместе с тем, сейчас это выполняется далеко не везде, и поэтому утверждение, что En Space всегда имеет ширину буквы «N» — заблуждение. | |
Третная шпация, U+2004,   — треть круглой. По-английски называется Three-per-Em Space. | |
Четвертная шпация, U+2005,   — четверть круглой. По-английски называется Four-per-Em Space. | |
Одна шестая круглой, U+2006,  . По-английски называется Six-per-Em Space. | |
Тонкая шпация, U+2009,   — обычно имеет ширину в 1⁄5 круглой (реже — 1⁄6). Вообще говоря, её ширина зависит от языка набор |
This file contains 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
gulp.src(['input/folder/**/*']).pipe(gulp.dest('output/folder')); |
This file contains 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
// more here http://stackoverflow.com/questions/662220/how-to-change-the-pop-up-position-of-the-jquery-datepicker-control | |
beforeShow: function(input, inst) { | |
var cal = inst.dpDiv; | |
var top = $(this).offset().top + $(this).outerHeight(); | |
var left = $(this).offset().left; | |
setTimeout(function() { | |
cal.css({ | |
'top' : top, | |
'left': left |
This file contains 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
.clearfix:before, | |
.clearfix:after | |
content: " " | |
display: table | |
.clearfix:after | |
clear: both | |
.clearfix | |
*zoom: 1 |
This file contains 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
// Norm | |
body | |
font-family: Helvetica, Arial, Sans-Serif | |
// Better | |
body | |
font-family: Sans-Serif | |
// Why? | |
Macs will get awesome Helvetica by default. On PC's, |