- Go to your IAM Console
- Select Users
- Click on the User Name
- Select "Security Credientials" tab
After downloading, extract the files into the directory where your website is located. Your directory should look something like this:
MyWebsite/
|--css/
| |--materialize.css
|
|--fonts/
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
def cracklepop | |
array = (1..100).to_a | |
array.each do |number| | |
if number % 3 == 0 && number % 5 == 0 | |
array << "CracklePop" | |
elsif number % 3 == 0 | |
array << "Crackle" | |
elsif number % 5 == 0 | |
array << "Pop" |
NewerOlder