Created
April 29, 2022 19:39
-
-
Save shiffman/1f1ebf401994400eb00978133746ddf2 to your computer and use it in GitHub Desktop.
Picked via random.org
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
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); | |
} | |
} |
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
0: "382" | |
1: "1036" | |
2: "1287" | |
3: "1228" | |
4: "1224" | |
5: "760" | |
6: "805" | |
7: "77" | |
8: "2" | |
9: "91" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi :)