1 使用git pull origin xjyu2/web-html: 提醒冲突: Please commit your changes or stash them before you merge. 这个意思是说更新下来的内容和本地修改的内容有冲突,先提交你的改变或者先将本地修改暂时存储起来。 处 ...
分类:
其他好文 时间:
2019-10-11 16:43:26
阅读次数:
100
# coding=utf-8"""请输入10个数,并安从小到大的顺序排序"""num = []def getTenNum(): for i in range(10): x = int(input("please input the num:")) num.append(x)def sortNum(n ...
分类:
其他好文 时间:
2019-10-10 15:33:37
阅读次数:
64
Apache 安装后Error 403的故障排错方法 2018年01月07日 14:25:41 个人分类: "Linux" 一、问题描述 在apache2的httpd配置中,很多情况都会出现403。 刚安装好httpd服务,当然是不会有403的问题了。主要是修改了一些配置后出现,问题描述如下: 修改 ...
分类:
Web程序 时间:
2019-10-10 11:05:14
阅读次数:
186
PHP编译安装时常见错误解决办法,php编译常见错误 configure: error: xslt config not found. Please reinstall the libxslt = 1.1.0 distribution 复制代码 代码如下: yum y install libxslt ...
分类:
Web程序 时间:
2019-10-10 10:33:57
阅读次数:
100
“废弃”函数的标记 编译器给出警告: function Please update your code to the new API before upgrading to the next release,otherwise your project will no longer compile. ...
分类:
其他好文 时间:
2019-10-09 21:10:54
阅读次数:
124
安装全局包时报错,之前已经遇到过,结果第二次又忘记解决方法,果然还是要记下来,好记性不如烂笔头哇 $ npm i electron -gUnhandled rejection Error: EPERM: operation not permitted, open 'C:\Program Files\ ...
分类:
Web程序 时间:
2019-10-06 20:34:35
阅读次数:
144
409 Conflict(in all regions except us-east-1) ...
分类:
其他好文 时间:
2019-10-06 13:44:35
阅读次数:
92
本文转自:https://blog.csdn.net/mapeifan/article/details/82428493python 发送邮件,出现如下异常 异常如下:smtplib.SMTPDataError: (554, b'DT:SPM 163 smtp12,EMCowxxn7yO5rI9bT ...
分类:
其他好文 时间:
2019-10-05 16:53:22
阅读次数:
343
1 #include<bits/stdc++.h> 2 using namespace std; 3 #define sc scanf 4 #define pr printf 5 6 typedef struct LNode{ 7 int data; 8 struct LNode *next; 9 ... ...
分类:
其他好文 时间:
2019-10-05 14:25:44
阅读次数:
132
参考文章:How I built TensorFlow 1.8.0 on Jetson TX2 与参考文章大部分都是相似的,如果不习惯看英文,可以看看我下面的描述 在我们使用python3进行编程时,import cv2不起作用。由于预先安装的opencv是与python2.7绑定的,如果想在pyt ...
分类:
其他好文 时间:
2019-10-04 15:09:06
阅读次数:
454