- Go to http://github.com/lmccart/itp-critical-apis, and click the "Fork" button.
- You will see a "forking..." animation, then you will end up at your own forked version of the class repository. Click the link to the file "README.md".
- To edit the file, click the pencil icon in the upper right. Edit the file adding your name, then hit "Commit changes" at the bottom of the page (it's ok to leave the description field blank).
- On the right hand side of the page, click the "Pull requests" icon.
- Click the "Create pull request" button at the top of the page. Submit the form, and you're done!
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 notes = []; | |
var gridEdge = 40; | |
function setup() { | |
createCanvas(400, 400); | |
stroke(255); | |
fill(0); | |
} |
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
<html> | |
<head> | |
<style> | |
#pic { | |
width: 200; | |
height: 200; | |
position: absolute; | |
} | |
#overlay { | |
opacity: 0; |
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 img; | |
var avgColor = [0, 0, 0, 0]; | |
function setup() { | |
createCanvas(400, 400); | |
img = loadImage('cat.jpg', getAverageColor); | |
} | |
function getAverageColor() { |
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
<html> | |
<head> | |
<style> | |
#centered { | |
width: 100px; | |
margin: 300px auto; // top offset 300px, side margin auto (centered) | |
} | |
</style> |
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
$("#change").click(function() { | |
$.ajax({ | |
url: "http://api.openweathermap.org/data/2.5/weather?id=5128581&units=imperial", | |
dataType: 'json', | |
success: function(data) { | |
changeMainPage(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
<html> | |
<head> | |
<script src="clmtrackr.js"></script> | |
<script src="model_pca_20_svm.js"></script> | |
<script src="p5.js"></script> | |
<script src="p5.dom.js"></script> | |
<script> | |
var ctracker; |
###Reducing / outsourcing emotional labor
Hell Is Other People, Scott Garner
Devices for Mindless Communication, Gerardo Rallo
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 s0 = function(p) { | |
p.setup = function() { | |
p.createCanvas(200, 200); | |
p.noCanvas(); | |
p.frameRate(1); | |
} | |
p.draw = function() { | |
p.print(p.floor(10.3)); | |
}; | |
}; |
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,.000,1.000,.000,Undefined,1.000,Undefined | |
1,.017,1.000,.017,57.290,1.000,57.299 | |
2,.035,.999,.035,28.636,1.001,28.654 | |
3,.052,.999,.052,19.081,1.001,19.107 | |
4,.070,.998,.070,14.301,1.002,14.336 | |
5,.087,.996,.087,11.430,1.004,11.474 | |
6,.105,.995,.105,9.514,1.006,9.567 | |
7,.122,.993,.123,8.144,1.008,8.206 | |
8,.139,.990,.141,7.115,1.010,7.185 | |
9,.156,.988,.158,6.314,1.012,6.392 |