A Pen by Michael Mathews on CodePen.
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
| /** @class */ | |
| function A () { | |
| } | |
| /** Document me | |
| @abstract | |
| */ | |
| A.prototype.m = function () {} | |
| /** |
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
| <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> |
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
| <!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; |
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
| 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); |
$ aws configure --profile mycoolproject
$ aws configure list --profile mycoolproject Name Value Type Location
---- ----- ---- --------
profile mycoolproject manual --profile
access_key ****************FAKE shared-credentials-file
$ aws s3 mb s3://mycoolbucket --region eu-west-1
make_bucket: mycoolbucket
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
| <!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; |
OlderNewer