http://www.shuijingwanwq.com/2018/02/28/2406/ https://curl.haxx.se/docs/caextract.html 编辑 php.ini,修改 ;curl.cainfo = 为 curl.cainfo = “C:\php-7.1.12\ext ...
分类:
其他好文 时间:
2019-10-16 09:57:03
阅读次数:
262
二分排序 高精加 c++ string s,sx; int a[505],b[505],ans[505]; int main(int argc, char const argv[]) { cin s sx; memset(a,sizeof(a),0); memset(b,sizeof(b),0); ...
分类:
其他好文 时间:
2019-10-13 18:39:49
阅读次数:
74
在Spring Cloud D版本,zipkin server通过引入依赖的方式构建工程,自从E版本之后,这一方式改变了,采用官方的jar形式启动。 出处:https://juejin.im/post/5c623c195188256219175369 heading 5 ...
分类:
其他好文 时间:
2019-10-13 12:39:33
阅读次数:
60
ELK7.3.1 单台部署elasticsearch和kibana
分类:
其他好文 时间:
2019-10-13 11:04:40
阅读次数:
362
了解PHPStudy的介绍 https://baike.baidu.com/item/phpStudy/7894712?fr=aladdin 安装PHPStudy,学会启动、停止服务 https://www.php.cn/php-weizijiaocheng-362379.html 尝试用原生命令行 ...
分类:
数据库 时间:
2019-10-13 01:00:08
阅读次数:
152
一、用top.sls文件管理状态文件 highstate是state模块的一个函数,highstate函数是通过top.sls文件作为作为入口对模块和主机进行管理的,下面首先学习用highstate函数配合top.sls文件来管理状态文件。以上一篇的nginx为例: 创建nginx文件夹 注意调整一 ...
分类:
其他好文 时间:
2019-10-12 18:25:16
阅读次数:
92
RabbitMQ:http://www.ityouknow.com/springboot/2016/11/30/spring-boot-rabbitMQ.html https://www.kancloud.cn/ichenpeng/blog/1090570 netty: https://www.ji ...
分类:
其他好文 时间:
2019-10-12 01:42:56
阅读次数:
82
列表增、删、改、查a=[‘wuchao‘,‘jinxing‘,‘xiaohu‘,‘sanpan‘,‘ligang‘]1.查切片取索引出值,索引从左到右是从0开始算;从右到左是从-1来算print(a[1])#取第二个值print(a[1:-1])#从第二取到倒数第二个值print(a[1:-1:1])#从左到右一个一个
分类:
其他好文 时间:
2019-10-11 00:59:36
阅读次数:
88
一、上下文管理协议其实就是 with obje as f 在文件操作时用过,with open("a.txt","r") as f: 当时的好处就是不用手动关闭文件了 学到现在我们知道了,其实open也是一个类,之所以能用 with as 是类里做了“小手脚” 上述过程: 1. with obj > ...
分类:
其他好文 时间:
2019-10-09 23:55:33
阅读次数:
171
servlet servlet是什么? servlet是一个运行在web服务器上,用于接收和响应客户端的http请求的一个Java程序,更多的是配合动态资源来做。当然静态资源也需要使用到servlet,只不过是tomcat已经定义好了一个defaultservlet。 servlet初次使用 1,得 ...
分类:
其他好文 时间:
2019-10-08 21:52:02
阅读次数:
94