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
#!/bin/bash | |
# Fetch emails from Amazon S3 (deposited by the Amazon SES receiver's S3 action) | |
# and feed to procmail. In the spirit of fetchmail, but using S3 instead of SMTP. | |
BUCKET=my-bucket-name | |
export AWS_PROFILE=my-aws-profile | |
PROCMAIL="/usr/bin/procmail" |
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
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: "myALB" | |
labels: | |
app: "myALBApp" | |
annotations: | |
# trigger the alb-ingress-controller | |
kubernetes.io/ingress.class: "alb" | |
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
######################################################################################### | |
# | |
# Copyright (c) Microsoft Corporation. All rights reserved. | |
# | |
######################################################################################### | |
Microsoft.PowerShell.Core\Set-StrictMode -Version Latest | |
#region variables |
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
Mattermost Server | |
© 2015-present Mattermost, Inc. All Rights Reserved. See LICENSE.txt for license information. | |
NOTICES: | |
-------- | |
This document includes a list of open source components used in Mattermost Server, including those that have been modified. | |
--- |
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
MATTERMOST-WEBAPP NPM DEPENDENCIES: | |
(first-degree only) | |
Note: "Missing" means the code is used by mattermost-webapp, but is not mentioned in NOTICE.txt. | |
- bootstrap-colorpicker: out-of-date copyright info | |
- bootstrap: removed, but still referenced in NOTICE.txt | |
- chart.js: out-of-date copyright info | |
- deep-equal: missing | |
- exif2css: missing |
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
version: 2 | |
jobs: | |
build_and_test: | |
# ... insert your test suite here | |
docker_push: | |
# Build app container and push it to the GCR registry | |
# Note: we want to build and push an image with tags based on both | |
# the Git commit hash AND the branch name. This way, we can refer to |
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
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: staging-app | |
labels: | |
app: myapp | |
spec: | |
template: | |
metadata: | |
labels: |
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
#!/bin/sh | |
# this is a wrapper script that runs leelaz via SSH on a fast cloud instance | |
# suitable as a drop-in replacement for the leelaz command used by the Lizzie GUI | |
# see general instructions at https://docs.google.com/document/d/1P_c-RbeLKjv1umc4rMEgvIVrUUZSeY0WAtYHjaxjD64/edit | |
# use p3.2xlarge instance, "Deep Learning Base AMI (Ubuntu) Version 14.0+" (ami-012b19f1736b6aae8) | |
# login: | |
# - nvidia-smi (verify GPU exists) |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": ["acm:DescribeCertificate", "acm:ListCertificates"], | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", |
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
diff --git a/node_modules/expo-notifications/ios/EXNotifications/Permissions/EXNotificationPermissionsModule.m b/node_modules/expo-notifications/ios/EXNotifications/Permissions/EXNotificationPermissionsModule.m | |
index 4b5fcb6..af045f3 100644 | |
--- a/node_modules/expo-notifications/ios/EXNotifications/Permissions/EXNotificationPermissionsModule.m | |
+++ b/node_modules/expo-notifications/ios/EXNotifications/Permissions/EXNotificationPermissionsModule.m | |
@@ -45,10 +45,15 @@ - (instancetype)init | |
requester:(UMPromiseResolveBlock)resolve | |
rejecter:(UMPromiseRejectBlock)reject) | |
{ | |
+ // DJM - revert part of this commit: https://github.com/expo/expo/commit/4500a7536a9d21ce4b1c895d6a11b960be10a82a | |
+ // which drops the requestedPermission parameter: https://github.com/expo/expo/issues/11414 |
OlderNewer