Skip to content

Instantly share code, notes, and snippets.

@scripting
Created April 9, 2021 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scripting/07d420d6d4b54a1a8163cbcf0dd5b8c5 to your computer and use it in GitHub Desktop.
Save scripting/07d420d6d4b54a1a8163cbcf0dd5b8c5 to your computer and use it in GitHub Desktop.
A script that runs in the Drummer environment, and uses the Twitter verbs to find the names of the earliest Twitter users, starting with @jack.
var flfirst = true;
op.insert ("Early Twitter signups", down);
for (var i = 12; i < 25; i++) {
op.insert (twitter.getScreenname (i), (flfirst) ? "right" : "down");
flfirst = false;
}
op.go (left, 1);
@scripting
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment