mkdir 创建目录 touch user{1..10}.txt 批量创建文件 whoami 查看当前用户 su <user> 切换用户O(需要知道密码) sudo <cmd> 可以以特权级别运行cmd命令 sudo adduser longshisan 创建用户longshisan groups ...
分类:
系统相关 时间:
2019-12-15 20:16:22
阅读次数:
142
1. devtool代码调试 1. 生产模式下 source-map: 生成一个map文件,直接定位到源码的行列 ?可以使用该模式,用于测试服务器 cheap-source-map: 只能定位到行,且只能定位到babel转码后的代码 cheap-module-source-map: 只能定位到行,但 ...
分类:
Web程序 时间:
2019-12-15 12:41:27
阅读次数:
105
Introduction As a strong type static language, Go has many primitive types we will care about. In first level, they can be divided into two groups: no ...
分类:
其他好文 时间:
2019-12-14 18:54:16
阅读次数:
84
1RCN(remote computer network远程网) 2telephone line(电话线) 3communication channel(通信信道) 4Internet(互联网) 5Web(环球网) 6World Wide Web(万维网) 7Internet service(互联网 ...
分类:
其他好文 时间:
2019-12-12 21:16:07
阅读次数:
120
https://sqlserver.code.blog/2019/12/10/different-ag-groups-have-the-exactly-same-group_id-value-if-the-group-names-are-same-and-the-cluster_type-exter ...
分类:
其他好文 时间:
2019-12-11 09:33:11
阅读次数:
72
在Maven的安装目录下的conf目录下的settings.xml加入这段 <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</ ...
分类:
其他好文 时间:
2019-12-08 15:58:31
阅读次数:
401
然后发现maven的依赖项里面没有web的包,可能是maven镜像由于网络下载不完全 把D:\apache-maven-3.6.3\conf\seetings.xml改一下其mirror,换成aliyun的镜像 <mirror> <id>nexus-aliyun</id> <mirrorOf>cen ...
分类:
编程语言 时间:
2019-12-07 23:04:06
阅读次数:
99
首先需要明确一点,正则默认就是贪婪模式,何为贪婪模式? 就是在满足条件的前提下,尽可能多的进行匹配。 下面先来个例子 s ='my tel number is 132-4567-1258' r = re.match(r'(.+)(\d+-\d+-\d+)',s) print(r.groups()) ...
分类:
其他好文 时间:
2019-12-07 01:08:26
阅读次数:
115
今天用到了testng的执行,确不太理解执行的机制是什么,就自己测试了一下、 1.testng.xml中存在两个标签groups和classes,执行是classes下边指定的TestCreateOrder类里的分组包含smoke分组的方法 <?xml version="1.0" encoding= ...
分类:
其他好文 时间:
2019-12-04 20:15:38
阅读次数:
110
http://codeforces.com/gym/101775/problem/M The 2018 World Cup will be hosted in Russia. 32 national teams will be divided into 8 groups. Each group co ...
分类:
其他好文 时间:
2019-11-29 10:34:47
阅读次数:
80