View CloudFormationResourceSpecification.json
This file has been truncated, but you can view the full file.
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
{ | |
"PropertyTypes": { | |
"AWS::AppMesh::VirtualRouter.PortMapping": { | |
"Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualrouter-portmapping.html", | |
"Properties": { | |
"Port": { | |
"Required": true, | |
"Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualrouter-portmapping.html#cfn-appmesh-virtualrouter-portmapping-port", | |
"PrimitiveType": "Integer", | |
"UpdateType": "Mutable" |
View template.yaml
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
Parameters: | |
CreateResource: | |
Default: false | |
Type: String | |
AllowedValues: [true, false] | |
Conditions: | |
ShouldCreateResource: | |
!Equals [true, !Ref CreateResource] | |
Resources: | |
Macro: |
View stackSetsRoles.yaml
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
Resources: | |
AdministrationRole: | |
Type: AWS::IAM::Role | |
Properties: | |
RoleName: AWSCloudFormationStackSetAdministrationRole | |
AssumeRolePolicyDocument: | |
Version: 2012-10-17 | |
Statement: | |
- Effect: Allow | |
Principal: |
View Dribblr Privacy Policy
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
Event data, including the Facebook IDs of those who are invited and RSVP, is stored in Firebase. | |
No other sensitive data is stored anywhere. |
View MLH Map CSV file Creator
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
var els = document.getElementsByTagName('span'); | |
var h3s = document.getElementsByTagName('h3'); | |
j=0; | |
for(i=0; i < els.length; i+=2) { | |
prop = els[i].getAttribute('itemprop'); | |
if(prop) { | |
console.log(h3s[j++].innerHTML + ", " + els[i].innerHTML + ", " + els[i+1].innerHTML); | |
} | |
} |