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 | |
gh repo list patmyron --limit 100 --source --json name -q '.[].name' | xargs -I {} curl -I -k -s "https://api.github.com/repos/patmyron/{}/commits?per_page=1" | sed -n '/^[Ll]ink:/ s/.*"next".*page=\([0-9]*\).*"last".*/\1/p' |
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" |
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
Event data, including the Facebook IDs of those who are invited and RSVP, is stored in Firebase. | |
No other sensitive data is stored anywhere. |
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); | |
} | |
} |