Various PT workouts including tabata, HIIT, etc.
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
| package app | |
| { | |
| import flash.events.Event; | |
| import flash.events.IEventDispatcher; | |
| import mx.core.FlexGlobals; | |
| import mx.managers.IFocusManager; | |
| import app.commands.GetSystemSettingsCommand; | |
| import app.commands.GetUtilityDataCommand; |
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/sh | |
| enter_directory(){ | |
| if [ "$PWD" != "$PREV_PWD" ]; then | |
| PREV_PWD="$PWD"; | |
| if [ -e ".nvmrc" ]; then | |
| nvm use; | |
| fi | |
| fi | |
| } |
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
| .directive 'saveOnBlur', [ | |
| '$timeout' | |
| ($timeout)-> | |
| INPUT_SELECTOR = 'input, select, textarea' | |
| IGNORE_SELECTOR = '.ignore-save-on-blur, .nx-save-ignore, .ignore-save, .save-ignore' | |
| dir = | |
| require: '^form' | |
| restrict: 'A' |
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
| .controller 'ClientDetailViewController', [ | |
| '$q' | |
| '$state' | |
| 'adminService' | |
| ($q, $state, adminService)-> | |
| class ClientDetailViewController | |
| resourceType:'client' | |
| adminData: |