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
| old_stream_id | new_stream_id | |
|---|---|---|
| CBAFTDT.ca@SD | IciRadioCanadaTele.ca@CBAFTDT | |
| CBATDT.ca@SD | CBCTelevision.ca@CBATDT | |
| CBCTDT.ca@SD | CBCTelevision.ca@CBCTDT | |
| CBETDT.ca@SD | CBCTelevision.ca@CBETDT | |
| CBFTDT.ca@SD | IciRadioCanadaTele.ca@CBFTDT | |
| CBHTDT.ca@SD | CBCTelevision.ca@CBHTDT | |
| CBKFTDT.ca@SD | IciRadioCanadaTele.ca@CBKFTDT | |
| CBKTDT.ca@SD | CBCTelevision.ca@CBKTDT | |
| CBLFTDT.ca@SD | IciRadioCanadaTele.ca@CBLFTDT |
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
| [ | |
| { | |
| "secLiveStreaming": "N", | |
| "chNum": 1, | |
| "authCode": "NA", | |
| "chRec": true, | |
| "chCall": "WINS", | |
| "chId": 238, | |
| "secondaryChannelId": 0, | |
| "chHd": false, |
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
| { | |
| "shell_cmd": "cd $folder && xcodebuild -configuration Debug && open build/Debug/*.app", | |
| "selector": "source.swift" | |
| } |
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
| [ | |
| { | |
| "id": "/m/04rlf", | |
| "label": "Music" | |
| }, | |
| { | |
| "id": "/m/05fw6t", | |
| "label": "Children's music" | |
| }, | |
| { |
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
| "babel-core": "^6.18.2", | |
| "babel-loader": "^6.2.7", | |
| "babel-plugin-transform-runtime": "^6.15.0", | |
| "babel-preset-es2015": "^6.18.0", | |
| "css-loader": "^0.25.0", | |
| "vue-html-loader": "^1.2.3", | |
| "vue-style-loader": "^1.0.0" |
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
| { | |
| "binary_file_patterns": | |
| [ | |
| "node_modules/" | |
| ], | |
| "color_scheme": "Packages/Material Theme/schemes/Facebook.tmTheme", | |
| "font_options": | |
| [ | |
| "subpixel_antialias" | |
| ], |
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
| var Vue = require('vue') | |
| var hello = require('./components/hello.vue') | |
| new Vue({ | |
| el: 'body', | |
| render: function(createElement) { | |
| return createElement(hello) | |
| } | |
| }) |
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
| function declOfNum(number, titles) { | |
| cases = [2, 0, 1, 1, 1, 2]; | |
| return titles[ (number%100>4 && number%100<20)? 2 : cases[(number%10<5)?number%10:5] ]; | |
| } | |
| use: | |
| declOfNum(count, ['найдена', 'найдено', 'найдены']); |
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
| // Для работы так же необходимо установить соответствующие webpack загрузчики | |
| // npm install style-loader css-loader node-sass sass-loader --save-dev | |
| var Vue = require('vue') | |
| require('style!css!sass!./style.scss') | |
| new Vue({ | |
| el: '#app' | |
| }) |
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
| <template> | |
| <div id="app"> | |
| Привет, SASS! | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'app' | |
| } |
NewerOlder