One day my email stopped working… Turns out the Google Workspaces had been suspended… So, I had to address that post haste!
|
|||
The response was: A delivery loop was detected which causes this email to be undeliverable.
|
One day my email stopped working… Turns out the Google Workspaces had been suspended… So, I had to address that post haste!
|
|||
The response was: A delivery loop was detected which causes this email to be undeliverable.
|
WordPress uses .htaccess to automatically attempt to correct URLs that are misunderstood. This behavior can lead to errors such as ERR_TOO_MANY_REDIRECTS and prevent intended funcationality such as using an index.html as a landing page for the domain. It is possible to Disable WordPress Canonical URL or Permalink Auto Redirect to fix these problems.
This code snippet can be placed at the top of the theme’s functions.php file:
remove_filter('template_redirect', 'redirect_canonical');
const SKILL_NAME = ‘SKILL_NAME ‘;
const GET_FACT_MESSAGE = ‘Here\’s your information: ‘;
const HELP_MESSAGE = ‘You can say tell me a fact, or, tell me about something… What can I help you with?’;
const HELP_REPROMPT = ‘What can I help you with?’;
const STOP_MESSAGE = ‘Goodbye!’;
const data = [
‘Fact Number One.’,
‘Fact Number Two.’
];
const GetNewFactHandler = {
canHandle(handlerInput) {
const request = handlerInput.requestEnvelope.request;
return request.type === ‘LaunchRequest’
|| (request.type === ‘IntentRequest’
&& request.intent.name === ‘GetNewFactIntent’);
},
handle(handlerInput) {
const factArr = data;
const factIndex = Math.floor(Math.random() * factArr.length);
const randomFact = factArr[factIndex];
const speechOutput = GET_FACT_MESSAGE + randomFact;
return handlerInput.responseBuilder
.speak(speechOutput)
.withSimpleCard(SKILL_NAME, randomFact)
.getResponse();
},
};
Tool for constructing AWS CLI commands
https://awsclibuilder.com/home
Created by https://twitter.com/pdomala
AWS CLI 2 for Exporting Lambdas
https://gist.github.com/TheNetJedi/0847ba0ec1da9879b4fa1d8f3276b004
Export all lambda functions to lambdafunctions directory as indivudual zip files. Be sure to update the region, currently set to us-east-1
This works great in AWS CloudShell
mkdir lambdafunctions
aws lambda --profile kickpost list-functions | \
grep FunctionName | \
cut -d '"' -f4 | \
while read -r name; do
# aws lambda --profile kickpost get-function --function-name $name | tail -n 3 | egrep -o 'https?://[^ ]+' | sed 's/"//' | xargs wget -O ./lambdafunctions/$name.zip
aws lambda --profile kickpost get-function --function-name $name | tee ./lambdafunctions/$name.json | jq -r '.Code.Location' | xargs wget -O ./lambdafunctions/$name.zip
done
# https://awscli.amazonaws.com/v2/documentation/api/latest/reference/lambda/get-function.html
# https://gist.github.com/TheNetJedi/0847ba0ec1da9879b4fa1d8f3276b004
AWS CLI 2 for Exporting a Bot
https://docs.aws.amazon.com/lex/latest/dg/export-to-lex.html
https://docs.aws.amazon.com/lex/latest/dg/API_GetExport.html
Export all bots to lexbots directory as indivudual zip files. Be sure to update the region, currently set to us-east-1
mkdir lexbots
aws lex-models get-bots | grep name | cut -d '"' -f4 | \
while read -r name; do
echo $name
url=$(aws lex-models get-export --name $name --resource-type BOT --export-type LEX --resource-version 1 --region us-east-1 --output json | grep url | cut -d '"' -f4)
wget $url -O ./lexbots/$name.zip
done
Gradle versions available from:
https://gradle.org/releases/
sudo mkdir /opt/gradle
wget -c https://services.gradle.org/distributions/gradle-6.8.3-bin.zip
sudo unzip -d /opt/gradle gradle-6.8.3-bin.zip
export PATH=$PATH:/opt/gradle/gradle-6.8.3/bin
gradle -v
**NOTE: export PATH will have to be done over with every launch of the shell. Alternatively, add it to ~/.bash_profile
PATH=$PATH:$HOME/.local/bin:$HOME/bin:/opt/gradle
You can switch between versions with sudo
from https://tecadmin.net/install-java-on-amazon-linux/
The OpenJDK 8 is available under default yum repositories and OpenJDK 11 is available under Amazon Linux 2 extras repositories. You can simply install Java 11 or Java 8 on the Amazon Linux system using the following commands.
sudo amazon-linux-extras install java-openjdk11
sudo yum install java-1.8.0-openjdk
After successfully installing Java on Amazon Linux using the above steps, Let’s verify the installed version using the following command.
java -version openjdk version "1.8.0_222" OpenJDK Runtime Environment (build 1.8.0_222-8u222-b10-1ubuntu1~18.04.1-b10) OpenJDK 64-Bit Server VM (build 25.222-b10, mixed mode)
Use alternatives command-line utility to switch active Java version on your Amazon Linux system. Run below command from the command line and select the appropriate Java version to make it default.
sudo alternatives --config java
After switching let’s check again active Java version:
java -version openjdk version "11.0.7" 2020-04-14 LTS OpenJDK Runtime Environment 18.9 (build 11.0.7+10-LTS) OpenJDK 64-Bit Server VM 18.9 (build 11.0.7+10-LTS, mixed mode, sharing)
Periodically, Apple updates its development and distribution certificates. They are updated when XCode updates. If you haven’t updated to the latest version you may have to update these files yourself.
1. Download the certificate APPLEWWDCRCA3.cer
2. Install it into KeyChain Access
https://developer.apple.com/support/certificates/
https://stackoverflow.com/questions/64596362/iphone-distribution-certificate-is-not-trusted
XCode’s CLI Swiss Army Knife
xcrun -h (for help)
xcrun -v (verbose output)
xcrun –show-sdk-path (will show the SDK path including its platform)
ls /Applications/Xcode.app/Contents/Developer/Platforms (displays all the platforms)
xcrun simctl list (list device uuid for the simulator)
xcrun simctl install [sim-device-uuid] tester.app (install an app onto the simulator)
===============================================
xcrun actool Assets.xcassets –compile build –platform iphoneos –minimum-deployment-target 9.3 (Create Assets.car by compiling the .xcassets folder)
[ platform name is all lowercase ]
xcrun –sdk iphoneos assetutil –info Assets.car (view contents of the archive)
/Applications/Xcode.app/Contents/Developer/usr/bin/actool Assets.xcassets –compile build –platform tvOS –minimum-deployment-target 8.0
https://guides.codepath.com/ios/Adding-Image-Assets
AIR SDK 33.1.1.345 iOS 14.3 signature issue
https://github.com/Gamua/Adobe-Runtime-Support/issues/590
Hello, when I compile IPA applications and install it into device with iOS 14.3, I got this message:
This app will not work with future versions of iOS
Powered by WordPress