今天使用pip安装第三库时,有时会报错: pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out. 使用 ...
分类:
编程语言 时间:
2020-05-17 15:56:24
阅读次数:
76
1、Ajax(读A—jax不是阿贾克斯)原理图: 2、HTTP请求概念 <script> document.getElementById("search").onclick = function() { var request = new XMLHttpRequest(); request.open ...
分类:
Web程序 时间:
2020-05-17 13:06:40
阅读次数:
54
CanChen ggchen@mail.ustc.edu.cn 讲完了二次线性规划,这节课主要是讲了一般的非线性约束最优化怎么解。 等式约束-Lagrange-Newton 先列Lagrange方程: 然后用牛顿法求方程的根(这个迭代又被称为Newton-Raphson迭代): Sequential ...
分类:
其他好文 时间:
2020-05-16 20:27:33
阅读次数:
76
1.代码演示案例 <?php class BaseProcess{ private $process; public function __construct(){ $this->process = new swoole_process(array($this,'run'),false,true); ...
分类:
系统相关 时间:
2020-05-16 17:06:25
阅读次数:
159
F12查看格式化的源码 from flask import Flask, request import os app = Flask(__name__) flag_file = open("flag.txt", "r") # flag = flag_file.read() # flag_file.c ...
分类:
其他好文 时间:
2020-05-16 12:29:48
阅读次数:
77
TF卡读写实验 1、实验原理 开发板上自动带有TF卡外接接口,这里只需调用封装好的IP核即可实现该功能。当然,你还需要一个TF卡(感觉SD卡也可以,反正这两种卡差不多)。实验就是调用一个IP核,不涉及其他的设计,所以比较简单。 2、实验步骤 1)新建工程 file》new》project走一遍就可以 ...
分类:
其他好文 时间:
2020-05-16 10:45:00
阅读次数:
80
5.2文件权限与归属r--------read--------4w------write---------2x-----execute------15.3特殊权限SUID让有执行权限的执行者零时拥有更改权限-------------------------------4SGID对目录使用,让目录下新建的文件所属组归该目录所属组----------2SBIT粘滞位、安全位,仅文件所有者可以删除、修改
分类:
系统相关 时间:
2020-05-16 09:23:10
阅读次数:
96
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54 fatal: the remote end hung up unexpectedly fatal: early EOF fatal: index-pac ...
分类:
Web程序 时间:
2020-05-16 09:19:10
阅读次数:
158
发表于二月 7, 2020由星空下 主要关注两个方面: 文件在文件系统和进程中的表现 文件操作函数 文件操作函数 libc有fopen, fwrite, fread, fseek等库函数,系统调用有open, create, write, read, lseek, fcntl, ioctl等函数。 ...
分类:
其他好文 时间:
2020-05-16 00:41:52
阅读次数:
63
1.bitand()函数 学习链接https://blog.csdn.net/sread/article/details/9971471?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2- ...
分类:
数据库 时间:
2020-05-16 00:19:48
阅读次数:
84