WebDav is 2x faster
I used the same NAS to configure all three protocols and test them remotely (half-way across the globe)
rsync -a --progress --stats --human-readable SOURCEFILE DESTINATIONPATH
brew cask list | xargs brew cask install |
If you get the following error on AWS:
Either user is not authorized to perform iam:ChangePassword or entered password does not comply with account password policy set by administrator
TLDR: Don't use "paths" in IAM
You checked all your policies for a while including AWS's managed policy IAMUserChangePassword and you can't find what the hell is wrong. Maybe you were using, like me, the IAM path feature...
The IAMUserChangePassword policy is as follow:
Find out which framework is the lightest out of the box with its dependencies
I wanted to develop a NodeJS microservice to be deployed on AWS Lambda (serverless) where size matters! Note that out-of-the-box, each framework has very different capabilities and helpers. The aim of this test is to find out what is the minimum size for each. The next step is to compare each framework with a specific use case.
I hereby claim:
To claim this, I am signing this object:
# This script is used for repos that need to commit a build folder (eg. Github actions) | |
# Add more sources/destinations by separating them by spaces (ie. source="src lib") | |
source="src" | |
build="dist" | |
# If some changes in $source are staged | |
if [[ $(git status --porcelain $source | egrep '^M') ]] | |
then |
The following information is either not mentioned in the various docs and tutorials either well-hidden:
Official provider template: https://github.com/hashicorp/terraform-provider-scaffolding
When making a new provider from scratch, build it in $GOPATH/bin/terraform-provider-example
then let's say your provider will reside on the official Terraform registry under my-company/example
, you need to create a bypass to use your locally built provider on your system:
mkdir -p ~/.terraform.d/plugins/registry.terraform.io/my-company/example/1.0.0/darwin_amd64
ln -s $GOPATH/bin/terraform-provider-example ~/.terraform.d/plugins/registry.terraform.io/my-company/example/1.0.0/darwin_amd64/terraform-provider-example