This is a list of advanced JavaScript learning resources from people who responded to this [Tweet][13] and this [Tweet][20].
-
[You Don't Know JS][3]
-
[Frontend Masters courses by Kyle Simpson][12]
-
[@mpjme][6]'s [YouTube videos][5]
| import maya.cmds as mc | |
| class SimpleUI(object): | |
| def __init__(self, *args): | |
| self.wg={} | |
| self.wg['win'] = 'MySimpleWindow' | |
| self.wg['dock'] = 'MySimpleDock' | |
| if mc.dockControl(self.wg['dock'], exists=True): | |
| mc.deleteUI(self.wg['dock']) |
| playground |
| import maya.cmds as mc | |
| mc.print('Hello World') |