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
#!/bin/bash | |
# Start an AWS instance with one of the AMIs provided by: | |
# http://www.louisaslett.com/RStudio_AMI/ | |
# | |
# Get this script and make executable. | |
# wget THE_RAW_URL | |
# chmod +x build_logins.sh | |
# | |
# Then use this script to create many logins on the system. |
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
<!doctype html> | |
<html> | |
<head> | |
<script src="p5.js"></script> | |
<script> | |
var img; | |
function setup() { | |
createCanvas(600,600); | |
img = createImage(1372,1332,RGB); | |
var client = require('redis').createClient(); |