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
| devServer: { | |
| inline: true, | |
| contentBase: 'dist/', | |
| port: 8085 | |
| } |
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 ScheduleManager() { | |
| function start(intervalTime) { | |
| intervalTime = intervalTime || 1000; | |
| _tickFn(); | |
| _interval = window.setInterval(_tickFn, intervalTime); | |
| } | |
| } |
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
| import PlayerService from "./player/services/player.service"; | |
| import VideoContentService from "./player/services/video-content.service"; | |
| import TimelineService from "./factory/services/timeline.service"; | |
| import ContentModel from "./factory/models/content.model"; | |
| import MessageScheduleModel from "./factory/models/message-schedule.model"; | |
| import ScheduleModel from "./factory/models/schedule.model"; | |
| import MessageController from "./player/controllers/message.controller"; |
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
| Allegro.createClient(options, function(err, client) { | |
| client.doGetItemsList(); | |
| }); | |
| // [Error: Sender: Element '{https://webapi.allegro.pl/service.php}object': This element is not expected. Expected is ( {https://webapi.allegro.pl/service.php}item ).] |
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
| * The version of SDB client (2.2.83) is not same with that of SDB server (2.3.0). | |
| It may cause version compatibility problems. | |
| It is recommended to use SDB server with version 2.2.83. * | |
| * The version of SDB client (2.2.83) is not same with that of SDB server (2.3.0). | |
| It may cause version compatibility problems. | |
| It is recommended to use SDB server with version 2.2.83. * | |
| [Version] | |
| Model=Tizen3/TV; | |
| Build=latest; | |
| Release=latest; |
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
| let instance = null; | |
| class Viewports { | |
| constructor() { | |
| if(!instance){ | |
| instance = this; | |
| } | |
| this.isMobile = false; | |
| this.init(); |
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
| /* | |
| * forEach Polyfill | |
| * | |
| * 2015-12-27 | |
| * | |
| * By Feifei Hang, http://feifeihang.info | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ | |
| 'use strict'; |
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
| let sortedLinkByHosting = []; | |
| let elements = document.querySelectorAll('td .code'); | |
| elements.forEach(key => { | |
| let link = key.innerText; | |
| if(link.includes('http')) { | |
| if(link.includes('catshare')) { | |
| sortedLinkByHosting.push(link); | |
| } | |
| } | |
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
| pbcopy < ~/.ssh/id_rsa.pub | |
| cat ~/.ssh/id_rsa.pub |