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
aws cloudformation describe-stack-resources --stack-name $STACK_NAME | jq '.StackResources[]|select(.ResourceType=="AWS::DynamoDB::Table").PhysicalResourceId' |
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
#!/bin/sh | |
set -e | |
BASE_MODEL_DIR=$1 | |
BASE_DIR="${AMENITY_PATH:-/data/VSA_Structure}" | |
CUSTOM_DATA_FOLDER="$BASE_DIR/custom_data" | |
echo "searching for custom model in the volume ${BASE_MODEL_DIR} to extract before SA engine" | |
if [ -d $BASE_MODEL_DIR ] | |
then | |
echo "Model mount was found. searching for model zip" |
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
#!/bin/bash -euv | |
CHANGE_SET_NAME=${1:-"change-set"} | |
STAGE=${1:-"dev"} | |
SERVICE=${2:-"myService"} | |
STACK_NAME="$SERVICE-$STAGE" | |
changeSetId=$(aws describe-change-set --change-set-name "$CHANGE_SET_NAME" --stack-name "$STACK_NAME" | jq -r '.ChangeSetId') | |
aws cloudformation delete-change-set --change-set-name "$changeSetId" |
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
'use strict'; | |
const BbPromise = require('bluebird'); | |
class ServerlessPlugin { | |
constructor(serverless, options) { | |
this.serverless = serverless; | |
this.options = options; | |
this.log = this.serverless.cli.log.bind(this); | |
this.commands = {}; |
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
aws cognito-idp admin-update-user-attributes | |
--user-pool-id eu-west-xxxxxx | |
--username xxxxyyyy@exeample.com | |
--user-attributes Name=email_verified,Value=true |
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
curl localhost:8500/v1/catalog/nodes | |
curl localhost:8500/v1/catalog/services | |
dig @127.0.0.1 -p 8600 consul.service.consul SRV | |
curl -v http://localhost:8500/v1/kv/?recurse | |
curl -X PUT -d 'test' http://localhost:8500/v1/kv/web/key1 | |
curl -X PUT -d 'test' http://localhost:8500/v1/kv/web/key2?flags=42 |
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
TAG= "<percentageFloat>10.654656</percentageFloat>" | |
#expected = 10.654656 | |
temp=$(echo $TAG |sed 's/[/]//g') | |
res=$(echo $temp |sed 's/[<percentageFloat>]//g') |
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
<repositories> | |
<repository> | |
<id>exelate.repository</id> | |
<name>exelate-mobile</name> | |
<url>http://maven.exelate.com:8081/nexus/content/groups/public/</url> | |
</repository> | |
</repositories> | |
<dependency> |
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
curl -o exelate-android-sdk.apklib -u public:exelate -L "http://maven.exelate.com:8081/nexus/service/local/artifact/maven/redirect?r=exelate-mobile&g=com.exelate&a=exelate-android-sdk&v=LATEST&e=apklib" |
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
curl -o file-name.jar -u user:pass -L "http://maven.server.com:8081/nexus/service/local/artifact/maven/redirect?r=[Repository id e.g. snapshot]&g=[GROUP-ID]&a=[ARTIFACT-ID]&v=[Version e.g. LATEST]&p=[pkg e.g. jar/war/ear/...]" | |
r - parameter is the maven repository - e.g. snapshot/release/3rd party | |
g - parameter is the maven groupid -e.g. com.exelate.datalinx or com.exelate.bdi | |
a - parameter is the maven artifactid(name of the project) - e.g. datalinx-backend or data-processor | |
v - parameter - version number e.g. LATEST or 1.0.0 or 1.0.0-SNAPSHOT |
NewerOlder