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
gh repo list PatMyron --limit 100 --source --json name -q '.[].name' | xargs -I {} gh repo edit PatMyron/{} --enable-wiki=false --enable-discussions=false --enable-projects=false --enable-merge-commit=false --enable-squash-merge --allow-update-branch --enable-auto-merge |
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: |
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: |
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); | |
} | |
} |