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
| alias ng="npm list -g --depth=0 2>/dev/null" | |
| alias nl="npm list --depth=0 2>/dev/null" |
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
| #!/usr/bin/python | |
| #coding:utf-8 | |
| ''' | |
| date:9/2/17 18:03 PM | |
| author:lockey | |
| email:lockey@123.com | |
| desc:python自动化安装用户指定版本的python环境 | |
| ''' | |
| #导入Python的系统编程操作模块 | |
| import os |
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
| function if_shadiao(str){ | |
| var flag=str.length | |
| if(flag<6){ | |
| console.log('表面朋友'); | |
| }else if(flag==6){ | |
| console.log('朋友'); | |
| }else if(flag>6&&flag<=8){ | |
| console.log('觉得你有趣'); | |
| }else if(flag>8&&flag<=10){ | |
| console.log('喜欢你,才怪'); |
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
| # projectName | |
| ## 页面URL | |
| * 生产环境: | |
| * staging测试环境: | |
| ## wiki | |
| * 接口文档: | |
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
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { | |
| // no easing, no acceleration | |
| linear: function (t) { return t }, | |
| // accelerating from zero velocity | |
| easeInQuad: function (t) { return t*t }, | |
| // decelerating to zero velocity |
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
| [ | |
| { | |
| "name": "home", | |
| "grayName": "quickapp:com.application.demo", | |
| "rpkName": "com.application.demo", | |
| "name_cn": "小爱app首页", | |
| "domain": [ | |
| "" | |
| ], | |
| "appid": 112, |