Skip to content

Instantly share code, notes, and snippets.

@nytr0gen
Created January 26, 2017 10:34
Show Gist options
  • Save nytr0gen/521274908799ab8fd1c87f7de4ae89d9 to your computer and use it in GitHub Desktop.
Save nytr0gen/521274908799ab8fd1c87f7de4ae89d9 to your computer and use it in GitHub Desktop.
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