Skip to content

Instantly share code, notes, and snippets.

Advanced JavaScript Learning Resources

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'])
@kaptankereviz
kaptankereviz / playground_.idea_.name
Created September 9, 2014 11:13
playground : anim studio management
playground
import maya.cmds as mc
mc.print('Hello World')