摘要:
一、工作表 (sheet) 实例一:批量创建工作表、生成1-12月的sheet。 Sub makesheet() '生成1-12月的sheet Dim i As Integer For i = 12 To 1 Step -1 Sheets.Add.Name = i & "月" Next Sheets 阅读全文
摘要:
1:编写Shell程序,首先显示提示信息:“below is the information of command line”,然后显示命令行中的程序名称,接着一行显示实际给出的所有实参字符串,最后一行再显示命令行上参数的个数。 echo "below is the infomaion of com 阅读全文
摘要:
学习和使用一个技术、官方文档至关重要。 一、认证Authentication Auth needs to be pluggable.— Jacob Kaplan-Moss, 一言以蔽之:认证需要可插拔 1、 How authentication is determined(如何确定身份验证) 常见的 阅读全文
摘要:
统计系统功能,把每个步骤操作时间都进行记录,找出比较长的请求时间 一、nginx 过程时间节点 1: $time_local The $time_local variable contains the time when the log entry is written. when the HTTP 阅读全文