This file contains hidden or 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
| bundle exec ruby bot.rb | |
| bot created | |
| (JSON::ParserError)bies/ruby-2.3.0/lib/ruby/2.3.0/json/common.rb:156:in `parse': 784: unexpected token at '<html> | |
| <head><title>302 Found</title></head> | |
| <body bgcolor="white"> | |
| <center><h1>302 Found</h1></center> | |
| <hr><center>nginx/1.9.1</center> | |
| </body> | |
| </html> | |
| ' |
This file contains hidden or 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
| {% macro outputTiles(tileList) %} | |
| {# use macro to keep it DRY #} | |
| <div class="tiles"> | |
| {% for tile in tileList %} | |
| <div class="tile">{{ tile.tileTitle }}</div> | |
| {% endfor %} | |
| </div> | |
| {% endmacro %} |
This file contains hidden or 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
| import android.animation.TypeEvaluator; | |
| import android.graphics.Matrix; | |
| public class MatrixEvaluator implements TypeEvaluator<Matrix> { | |
| private Matrix evaluated = new Matrix(); | |
| private float[] values = new float[9]; | |
| private float[] startValues = new float[9]; | |
| private float[] endValues = new float[9]; | |
| @Override |
NewerOlder