#user nobody;worker_processes 1; error_log logs/static_source.error.log;#error_log logs/error.log notice;#error_log logs/error.log info; #pid logs/ngi ...
分类:
系统相关 时间:
2016-05-27 14:36:54
阅读次数:
211
#定义Nginx运行的用户和用户组user www www; #nginx进程数,建议设置为等于CPU总核心数。worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]error_log /var/ ...
分类:
其他好文 时间:
2016-05-20 08:36:40
阅读次数:
219
# import datetime # String to datetime: # Notice: # String 转换datetime类型时,日期的格式要匹配 # datetime to String: # Notice: # datetime 转换为String 类型时,可以转换为任意格式 # ...
分类:
其他好文 时间:
2016-05-19 16:22:24
阅读次数:
118
Use the library indexedDB-promised. Create a database and stroe: Notice put() function take value frist then key. Read the key in stroe: Write value t ...
分类:
数据库 时间:
2016-05-18 06:50:19
阅读次数:
220
一、概念conception: 函数体内调用本函数自身,直到符合某一条件不再继续调用。 二、应满足条件factor: (1)有反复执行的过程(调用自身); (2)有跳出反复执行过程的条件(函数出口) 三、注意事项notice: 1、递归中必须要存在一个循环结束的条件。 2、递归函数的每次调用都需要栈 ...
分类:
其他好文 时间:
2016-05-17 22:36:09
阅读次数:
139
ZABBIX报警内容:邮件标题正常,内容为乱码;微信报警正常。曾试图改变环境变量:exportLANG=zh_CN.UTF-8依旧为乱码原因:export只改变的环境变量而ZABBIX报警内容为传参,因此需要转码。#!/bin/bashTo=$1Title=$2Notice=$3echo"${Notice}"|/usr/bin/iconv-tGB2312-fUTF-8|/bin..
分类:
其他好文 时间:
2016-05-17 20:02:55
阅读次数:
2018
#运行用户 #user nobody; #启动进程,通常设置成和cpu的数量相等或者2倍于cpu的个数(具体结合cpu和内存)。默认为1 worker_processes 1; #全局的错误日志和日志级别[ debug | info | notice | warn | error | crit ] ...
分类:
其他好文 时间:
2016-05-17 17:36:34
阅读次数:
209
Given an unsorted array nums, reorder it in-place such that nums[0] <= nums[1] >= nums[2] <= nums[3].... Notice Please complete the problem in-place. ...
分类:
编程语言 时间:
2016-05-17 00:46:07
阅读次数:
209
一、概念 conception 函数体内调用本函数自身,直到符合某一条件不再继续调用。 二、应满足条件 factor 1、有反复执行的过程(调用自身); 2、有跳出反复执行过程的条件(函数出口); 三、例子 example 四、注意事项 notice 1、递归中必须要存在一个循环结束的条件 2、递归 ...
分类:
其他好文 时间:
2016-05-16 17:04:40
阅读次数:
176
1.1Notice:Undefinedindex:loginin1.1.1现象访问网页,出现如下错误信息:(!)Notice:Undefinedindex:logininD:\ProjectWork\SourceCode\Server\osFileManager\index.phponline59CallStack#TimeMemoryFunctionLocation11.0141919464{main}()..\index.php:01.1.2原因出错的行代码..
分类:
Web程序 时间:
2016-05-13 15:27:10
阅读次数:
153