You will need Python and pip.
$ python --version
Python 2.7.10
$ which aws
/Users/michael/Library/Python/2.7/bin/aws
$ aws --version| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| .choice-set { | |
| padding-top: 8px; | |
| height:120px; |
$ aws s3 mb s3://mycoolbucket --region eu-west-1
make_bucket: mycoolbucket$ aws configure --profile mycoolproject
$ aws configure list --profile mycoolproject Name Value Type Location
---- ----- ---- --------
profile mycoolproject manual --profile
access_key ****************FAKE shared-credentials-file
| var simpleCryptoJs = require("simple-crypto-js").default; | |
| var secret = "FAKE-EXAMPLE-5rV4e!Wvso8%Yhbsq&*j639$7kys"; | |
| var simpleCrypto = new simpleCryptoJs(secret); | |
| var plainText = "Hello Squirrel!"; | |
| var cipherText = simpleCrypto.encrypt(plainText); | |
| var decipherText = simpleCrypto.decrypt(cipherText); | |
| console.log("Plain Text : " + plainText); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| * { box-sizing: border-box; } | |
| body { | |
| margin: 0; |
A Pen by Michael Mathews on CodePen.
| <div class="article cf"> | |
| <div class="primary content"> | |
| <h2>Some Stuff</h2> | |
| <p>Some content. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah.</p> | |
| </div> | |
| <div class="secondary content"> | |
| <img class="responsive" src="http://placehold.it/350x150"> | |
| </div> | |
| </div> |
| /** @class */ | |
| function A () { | |
| } | |
| /** Document me | |
| @abstract | |
| */ | |
| A.prototype.m = function () {} | |
| /** |