1.什么是http协议Hyper Text Transport Portocal(超文本传输协议)HTTP协议是应用层协议浏览器和web服务器通讯时遵守的约定互联网使用最多的协议提供超文本的传输服务通过浏览器打开网站使用的是HTTP提供的服务,开发App也会经常使用HTTP协议从网站上获取数据2.H ...
分类:
Web程序 时间:
2019-11-14 18:19:50
阅读次数:
77
题目链接:http://codeforces.com/problemset/problem/939/A A. Love Triangle time limit per test 1 second memory limit per test 256 megabytes input standard i ...
分类:
其他好文 时间:
2019-11-13 00:38:10
阅读次数:
83
这节我们不用@app.route来写路由,而是通过add_url_rule 典型写法 (<int:nid>传递int类型参数,endpoint是取别名) @app.route('/detail/<int:nid>',methods=['GET'],endpoint='detail') 默认转换器 D ...
分类:
Web程序 时间:
2019-11-11 21:35:08
阅读次数:
95
算法特征:利用函数$f(\vec{x})$的1阶信息, 构造其近似的二阶Hessian矩阵. 结合Armijo Rule, 在最优化过程中达到超线性收敛的目的. 算法推导:为书写方便, 引入如下两个符号$B$、$D$分别表示近似Hessian矩阵及其逆矩阵:\begin{equation}\labe ...
分类:
编程语言 时间:
2019-11-10 19:50:45
阅读次数:
166
新的项目需求,使用到了硬件连接,运用到了mqtt技术,查询了相关资料,总结了一下 一、MQTT简介 MQTT(Message Queuing Telemetry Transport,消息队列遥测传输协议),是一种基于发布/订阅(publish/subscribe)模式的轻量级协议,该协议构建于TCP ...
分类:
其他好文 时间:
2019-11-09 21:42:35
阅读次数:
90
Given an encoded string, return its decoded string. The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is be ...
分类:
其他好文 时间:
2019-11-05 13:57:41
阅读次数:
110
[Author] @ Yubao Liu Tables 1.Overview 2.Design explanation 2.1Implemented Routines 2.2Called Routines 2.3Parameters 2.4Packet format 2.5My RDT Sender ...
分类:
其他好文 时间:
2019-11-05 00:41:24
阅读次数:
137
动态刷新Prometheus配置,动态刷新Prometheusrule配置 ...
分类:
其他好文 时间:
2019-11-05 00:38:31
阅读次数:
274
flask注册视图有两种方式 一:add_url_rule()add_url_rule源码:rule:接口地址view_func=视图函数endpoint=终结点,可以理解为给当前视图取的别名,最直观的就是在url_for()的时候会用到,如果指定了endpoint,则在url_for()的时候,不 ...
分类:
移动开发 时间:
2019-11-04 22:08:14
阅读次数:
106
1、SSL 1.1 什么是SSL SSL(Secure Sockets Layer 安全套接层),及其继任者传输层安全(Transport Layer Security,TLS)是为网络通信提供安全及数据完整性的一种安全协议。TLS与SSL在传输层对网络连接进行加密。 Secure Socket L ...
分类:
Web程序 时间:
2019-11-04 09:55:09
阅读次数:
92