For beginners
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
{ | |
"timestamp": 1433442891698, | |
"chars": [ | |
бла бла бла | |
] | |
} |
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
{extname} = require 'path' | |
fileTypes = | |
'.css' : 'source.css.scss' | |
atom.workspace.observeTextEditors (editor) -> | |
scopeName = fileTypes[extname editor.getPath()] | |
return unless scopeName? | |
g = atom.grammars.grammarForScopeName scopeName | |
return unless g? |
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
gulp.task('styles', () => { | |
// May be useful | |
// ---------------- | |
// webpcss | |
// postcss-mixins | |
// postcss-simple-extend | |
return gulp.src('src/styles.css') | |
.pipe($.if(dev, $.sourcemaps.init())) | |
.pipe($.postcss([ |
- Set up iCloud Keychain
- Remove icons and hide Dock
- Default address in iMessage
- Install Updates
- Add Ru Input Sources
- Set up Shortcuts
- Add text shortcuts 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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
- Основным клиентом, с которого будет приниматься контент, является Ваш телефон/планшет
- Все Ваши файлы в поддерживаемых Chromecast'ом форматах, либо Вы хотите сконвертировать их в оные
- На Вашем устройстве хранится много медиафайлов, и они в поддерживаемых Chromecast'ом форматах
- У Вас имеется отличный от Plex DLNA-сервер, и Вы хотите транслировать контент с него
- У Вас нет медиасервера, либо не хотите его запускать, или же нет в наличии системы, с которого его можно было бы запустить
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
Show hidden characters
{ | |
"env": { | |
"node4": { | |
"presets": ["es2015-node4"] | |
}, | |
"node5": { | |
"presets": ["es2015-node5"] | |
}, | |
"development": { | |
"presets": ["es2015"] |
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
CREATE_CARD = "createCard"; | |
COMMENT_CARD = "commentCard"; | |
UPDATE_CARD = "updateCard"; | |
UPDATE_CARD_ID_LIST = "updateCard:idList"; | |
UPDATE_CARD_CLOSED = "updateCard:closed"; | |
UPDATE_CARD_DESC = "updateCard:desc"; | |
UPDATE_CARD_NAME = "updateCard:name"; | |
ADD_MEMBER_TO_CARD = "addMemberToCard"; | |
REMOVE_MEMBER_FROM_CARD = "removeMemberFromCard"; | |
UPDATE_CHECK_ITEM = "updateCheckItemStateOnCard"; |
OlderNewer