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 GetQueueIdWhenRedirectedToTarget() { | |
| var n = window; | |
| return n.queueViewModel ? n.queueViewModel.getIsRedirectedToTarget ? n.queueViewModel.getIsRedirectedToTarget() ? n.queueViewModel.getQueueId() : void 0 : null : null | |
| } | |
| var __extends, QueueIt; | |
| (function(n) { | |
| var t; | |
| (function(n) { | |
| var t; | |
| (function(n) { |
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
| --- | |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: > | |
| A basic CloudFormation template for an RDS Aurora cluster. | |
| Parameters: | |
| DatabaseUsername: | |
| AllowedPattern: "[a-zA-Z0-9]+" | |
| ConstraintDescription: must be between 1 to 16 alphanumeric characters. |
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
| <?php | |
| // implementers are responsible for doing the necessary math, store the data in whatever structure it requires | |
| interface IForecaster | |
| { | |
| public function fetchForecastResult(); | |
| } | |
| // only encapsulates the result of a forecast, DOES NOT DO ANY CALCULATIONS OR LOGIC | |
| interface IForecastResult |