摘要: yum -y install nginxyum -y i php php-fpm systemctl start nginx systemctl start php-fpm yum install php-bcmathsystemctl reload nginx.servicesystemctl r 阅读全文
posted @ 2020-03-31 18:23 manhelp 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 在网站 https://www.ipaddress.com/ 解析地址github.global.ssl.fastly.net github.com git clone特别慢可能是因为github的域名被限制了。 只要找到这个域名对应的ip地址,然后在hosts文件中加上ip–>域名的映射,刷新DN 阅读全文
posted @ 2020-03-08 18:28 manhelp 阅读(3991) 评论(0) 推荐(2) 编辑
摘要: 第一次: top -c 查看一下进程ID : 30850 pstack 30850 查看一下当前堆栈的信息, 刷一闪, 满屏std的东西~~ 一个一个线程慢慢看下来, 发现代码最终在: strText.replace(size, strlen(pszSrcText), pszDestText); 再 阅读全文
posted @ 2019-12-04 20:49 manhelp 阅读(508) 评论(0) 推荐(0) 编辑
摘要: get请求 //得到session对象NSURLSession *session = [NSURLSession sharedSession]; NSURL *url = [NSURL URLWithString:@"http://localhost:80/video"]; //创建一个任务NSUR 阅读全文
posted @ 2019-11-23 16:59 manhelp 阅读(442) 评论(0) 推荐(0) 编辑
摘要: // 64位编码//先将string转换成dataNSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];NSData *base64Data = [data base64EncodedDataWithOptions:0];NSS 阅读全文
posted @ 2019-11-23 16:57 manhelp 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 在导出私钥之前, 先把私钥的访问控制改为:所有应用程序都可以访问 阅读全文
posted @ 2019-11-18 20:29 manhelp 阅读(3848) 评论(0) 推荐(0) 编辑
摘要: 一、很多同学疑问既然es6已经出来的了,为很莫写完es6语法还要把他转换成es5,这不是脱裤子放屁吗? ECMAScript 6(ES6)的发展速度非常之快,但现代浏览器对ES6新特性支持度不高,所以要想在浏览器中直接使用ES6的新特性就得借助别的工具来实现。 Babel是一个广泛使用的转码器,ba 阅读全文
posted @ 2019-10-09 20:17 manhelp 阅读(1271) 评论(0) 推荐(0) 编辑
摘要: 删除冲突文件 找出冲突路径文件 svn status | grep -P '^(?=.{0,6}C)' svn resolved 冲突路径 svn revert 冲突路径 阅读全文
posted @ 2019-10-09 19:29 manhelp 阅读(1854) 评论(0) 推荐(0) 编辑
摘要: File "anaconda3\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 627, in exec_module File "site-packages\PyQt5\__init__.py", line 41, 阅读全文
posted @ 2019-09-25 15:34 manhelp 阅读(1443) 评论(0) 推荐(0) 编辑
摘要: curl -sL https://rpm.nodesource.com/setup_8.x | bash - yum install nodejs 阅读全文
posted @ 2019-09-24 11:14 manhelp 阅读(303) 评论(0) 推荐(0) 编辑