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
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
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
/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
.* | |
!.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
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
npm install rimraf -g | |
rimraf node_modules | |
// Delete folder with all includes | |
rd /s/q path_to_folder | |
rmdir /s/q path_to_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
/* Styles for dialog window */ | |
#small-dialog | |
background: white | |
padding: 20px 30px | |
text-align: left | |
max-width: 400px | |
margin: 40px auto | |
position: relative | |
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
; | |
google.maps.event.addDomListener(window, 'load', init); | |
function init() { | |
// Basic options for a simple Google Map | |
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions | |
var mapOptions = { | |
// How zoomed in you want the map to start at (always required) | |
zoom: 15, |
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
'use strict'; | |
var gulp = require('gulp'), | |
concat = require('gulp-concat'), | |
scss = require('gulp-sass'), | |
uglify = require('gulp-uglify'), | |
plumber = require('gulp-plumber'), | |
ngAnnotate = require('gulp-ng-annotate'), | |
sourcemaps = require('gulp-sourcemaps'), | |
webserver = require('gulp-webserver'); |