摘要: 1. connect slack with github is a good start! 2. git checkout -b dashboard create a branch named dashboard git pull origin master pull before push!! 阅读全文
posted @ 2018-11-13 05:54 切力 阅读(155) 评论(0) 推荐(0) 编辑
摘要: change the line compile 'com.android.support:appcompat-v7:26.0.0-alpha1' to compile 'com.android.support:appcompat-v7:26.+' 阅读全文
posted @ 2018-08-11 17:01 切力 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: 想查看手机/虚拟机 data下文件,但是Tools -> Android -> Android Device Monitor -> File Exploerer 下点击data没有反应。需要修改文件权限。 1. 如果是通过虚拟机 这好办,因为直接就可以在root下进行文件权限修改。 a) https 阅读全文
posted @ 2018-07-17 18:13 切力 阅读(5429) 评论(0) 推荐(0) 编辑
摘要: 1. drawable里面图片名字不能大写开头 2.Error:Execution failed for task ':app:mergeDebugResources'.> Error: java.lang.RuntimeException: Some file crunching failed, 阅读全文
posted @ 2018-07-10 10:34 切力 阅读(130) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u014657752/article/details/47301569 结论: Bundle在存取数据是比较灵活的,而Intent在存取数据的种类很少且没有指定数据类型; 想对数据进行比较灵活的操作如批量操作的话就用bundle; Bundle是可以对对象 阅读全文
posted @ 2018-07-09 16:54 切力 阅读(298) 评论(0) 推荐(0) 编辑
摘要: Apache Server可以正常启动,但是MySQL Server无法正常启动,原因在于以前安装过MySQL并且正在运行,占用了端口,所以 进入系统偏好设置,把它stop掉就好 阅读全文
posted @ 2018-06-26 15:46 切力 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 每次anaconda提示我更新环境的时候,我都点击更新,然后它退出之后就什么都没有做。。。 所以只有cmd手动更新环境啦~~~ put this in cmd (admin)conda install -c continuumcrew anaconda-navigator=1.5.1 then pu 阅读全文
posted @ 2018-04-19 07:33 切力 阅读(3057) 评论(0) 推荐(0) 编辑
摘要: 之前在python3.6版本下安装了pandas,但是import的时候总是出错 其实很容易可以看出是版本问题,因为本来在3.6下运行的,nose目录下config.py里适应的却是2.7版本的。网上查了好多方法,都不行,结果今天把我lib目录下python2.7整个文件夹删除了只留下python3 阅读全文
posted @ 2018-02-04 09:29 切力 阅读(288) 评论(0) 推荐(0) 编辑
摘要: brew install cmake brew install boost brew install boost-python --with-python3(根据版本不同有变化) 阅读全文
posted @ 2017-12-24 00:14 切力 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 跑monkey想要导出log,最开始提示command not found 原因是,没有添加adb路径,所以直接在前面添加上adb所在路径即可,如果查看路径如下图: 然后在后面加上/Users/chenrui/Library/Android/sdk/platform-tools即可。 但是继续输入a 阅读全文
posted @ 2017-11-18 09:05 切力 阅读(311) 评论(0) 推荐(0) 编辑