brew install asdf
# Required for installing / compiling Erlang documentation...
brew install autoconf wxmac
export KERL_CONFIGURE_OPTIONS="--disable-debug --without-javac"
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
ROOT_PATH=$(PWD) | |
BUILD_PATH=$(ROOT_PATH)/build | |
DIST_PATH=$(ROOT_PATH)/dist | |
SRC_PATH=$(ROOT_PATH)/lambda/src | |
PROJECT_NAME=some-lambda-function | |
STACK_NAME=test-${PROJECT_NAME} | |
TEST_LAMBDA_ZIP_FILE=test-${PROJECT_NAME}.zip | |
TEST_LAMBDA_ZIP_PATH=${DIST_PATH}/${TEST_LAMBDA_ZIP_FILE} | |
CF_STACK_NAME=test-${PROJECT_NAME} |
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
# 4 hours... | |
param($minutes = 240) | |
$myShell = New-Object -com "Wscript.Shell" | |
for ($i = 0; $i -lt $minutes; $i++) { | |
$myShell.sendkeys("{F15}") | |
Clear-Host | |
$remaining = $minutes - $i |