上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: 调试模式 改成Debug 阅读全文
posted @ 2019-08-01 09:13 码到世界末日 阅读(3811) 评论(0) 推荐(0)
摘要: 1 Stopwatch timer = new Stopwatch(); 2 timer.Start(); 3 //要测试的代码 4 timer.Stop(); 阅读全文
posted @ 2019-07-31 09:37 码到世界末日 阅读(191) 评论(0) 推荐(0)
摘要: 1、golang中cannot refer to unexported name问题 今日在golang中编写了个特定包,该包的某个函数试图让外部引用。 结果,在外部引用中,该函数发生错误:cannot refer to unexported name。 比较奇怪的是,其他函数可以被引用。 后来发现 阅读全文
posted @ 2019-07-30 22:34 码到世界末日 阅读(125) 评论(0) 推荐(0)
摘要: 1,本地提交SVN报错 提交文件 is not known to exist in the repository and is not part of the commit, yet its child 从字面意思上看是说提交失败,原因是因为它存在子级文件夹,我们先把父级文件夹提交了之后在去提交子级 阅读全文
posted @ 2019-07-26 11:06 码到世界末日 阅读(555) 评论(0) 推荐(0)
摘要: 简介supervisor是用Python开发的一个client/server服务,是Linux/Unix系统下的一个进程管理工具。可以很方便的监听、启动、停止、重启一个或多个进程。用supervisor管理的进程,当一个进程意外被杀死,supervisor监听到进程死后,会自动将它重启,很方便的做到 阅读全文
posted @ 2019-07-19 17:30 码到世界末日 阅读(556) 评论(0) 推荐(0)
摘要: 1、Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for detai 阅读全文
posted @ 2019-07-16 21:07 码到世界末日 阅读(359) 评论(0) 推荐(0)
摘要: 环境准备 下面我们使用VM虚拟机.我这里安装的Linux系统是centos7 软件提供: VM: https://www.vmware.com/cn.html centos7 Minimal :https://www.centos.org/download/ 如果不会下载可以到我的百度网盘下载:由于 阅读全文
posted @ 2019-07-14 23:02 码到世界末日 阅读(5642) 评论(0) 推荐(2)
摘要: 按照微软指令安装: sdk2.1:https://www.microsoft.com/net/download/linux-package-manager/centos/sdk-current 1. sudo rpm -Uvh https://packages.microsoft.com/confi 阅读全文
posted @ 2019-07-14 19:21 码到世界末日 阅读(792) 评论(0) 推荐(0)
摘要: private void ToActivity(Type type) { Intent i = new Intent(); i.SetClass(this, type); i.AddFlags(ActivityFlags.NewTask); StartActivity(i); } 阅读全文
posted @ 2019-05-05 15:27 码到世界末日 阅读(165) 评论(0) 推荐(0)
摘要: 图片保存报错, 在 AndroidManifest.xml 文件中 添加下面两句代码,给文件夹读写权限 阅读全文
posted @ 2019-05-05 15:13 码到世界末日 阅读(770) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 12 下一页