Created
January 26, 2017 10:34
-
-
Save nytr0gen/521274908799ab8fd1c87f7de4ae89d9 to your computer and use it in GitHub Desktop.
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
for (var i = 0; i < 100; i++) { | |
setTimeout(function(i) { | |
var text = '/remind me invata python boss in ' + (2*i) + ' minutes'; | |
TS.client.ui.onSubmit(text); | |
console.log(text); | |
}.bind(this, i), i * 500); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment