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
| 时间戳 http://tool.chinaz.com/Tools/unixtime.aspx | |
| 图片压缩 https://tinypng.com/ | |
| app 分析 https://www.qimai.cn/ | |
| 苹果审核文档 https://developer.apple.com/app-store/review/guidelines/ | |
| 苹果审核文档变化 http://www.appstorereviewguidelineshistory.com/ | |
| 像素资源 https://www.spriters-resource.com/ | |
| redis 命令 http://redis.cn/commands.html#sorted_set | |
| mysql https://mp.weixin.qq.com/s/YfCORbcCX1hymXBCrZbAZg | |
| mac 窗口布局 www.spectacleapp.com | |
| 屏幕尺寸 https://uiiiuiii.com/screen/index.htm |
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
| 测试常用高清视频分辨率为640*480,一般要求码率为800kbps以上,带宽限制一般设置为三挡,800kbps、600 kbps以及400 kbps; | |
| 丢包会设置5%、3%、1%; | |
| 延时会设置300ms、200ms、100ms等限制; | |
| 综合网络情况是将带宽、丢包以及延时进行结合的参数; | |
| 为了监控用户实际使用的一些情况,也会进行一些4G、3G网络的覆盖; |
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
| @echo off | |
| :menu | |
| echo 1. mojo_data | |
| echo 2. mojo_activity | |
| echo 3. android_data | |
| echo 4. ci_mojo_data | |
| echo 5. ci_mojo_activity | |
| echo 6. ci_android | |
| echo 7. add image |
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/expect -f | |
| set user name | |
| set host host | |
| set password pw | |
| set timeout -1 | |
| spawn ssh $user@$host | |
| expect "*password:*" | |
| send "$password\r" |
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
| 不能让用户提供个人隐私信息进行注册,如:邮箱、手机号等 | |
| 不能有非苹果的下载途径、支付方式(赠送元宝等) | |
| 不能有推荐系统、邀请码等 | |
| 不能有标记为beta的功能,不能出现“测试”字样 | |
| 不能有激活码、兑换码等 | |
| 不能有月卡(买A赠B的形式) | |
| 不得使用其他app名作为关键词 | |
| app store上的图片、文字描述需与应用符合,不能过分夸大 | |
| 苹果不允许监听通知的状态 |
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
| 如果mac的系统版本是10.11以上(el capitan),这个系统增加了权限限制,可以通过下面方法取消这个限制重启电脑 并立即按住command + r 键,会进入修复界面 | |
| 从上面工具中可以打开终端 | |
| 输入 csrutil disable | |
| 再次正常重启电脑 | |
| 完成 | |
| 安装过程: | |
| 1.安装eclipse或phpstorm解压即可 |