Skip to content

Instantly share code, notes, and snippets.

@shiffman
Created April 29, 2022 19:39
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 shiffman/1f1ebf401994400eb00978133746ddf2 to your computer and use it in GitHub Desktop.
Save shiffman/1f1ebf401994400eb00978133746ddf2 to your computer and use it in GitHub Desktop.
Picked via random.org
function setup() {
createCanvas(400, 400);
const url = 'https://www.random.org/integers/?num=10&min=2&max=1316&col=1&base=10&format=plain&rnd=new';
loadStrings(url, gotData);
function gotData(data) {
console.log(data);
}
}
0: "382"
1: "1036"
2: "1287"
3: "1228"
4: "1224"
5: "760"
6: "805"
7: "77"
8: "2"
9: "91"
@realguystuff
Copy link

hi :)

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