Created
April 9, 2021 14:13
-
-
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.
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 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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The full write-up is here --
http://scripting.com/2021/04/09/141443.html?title=aDrummerExample