1. 安装nginx 1.1 选择稳定版本 我们编译安装nginx来定制自己的模块,机器CentOS 6.2 x86_64。首先安装缺少的依赖包: # yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-de ...
分类:
其他好文 时间:
2020-02-05 20:11:26
阅读次数:
287
模型的定义,models.py文件中示例代码如下: range:判断某个field的值是否在给定的区间中。示例代码如下: 查看打印出的结果: SELECT .`id article title article content article category_id article create_ti ...
分类:
其他好文 时间:
2020-02-05 13:29:06
阅读次数:
72
CLIENT SIDE ATTACKS - Spoofing backdoor extension Change the extension of the trojan from exe to a suitable one. Make the trojan even more trustable. ...
分类:
数据库 时间:
2020-02-05 09:26:31
阅读次数:
75
Go语言中 new 和 make 是两个内置函数,主要用来创建并分配类型的内存。在我们定义变量的时候,可能会觉得有点迷惑,不知道应该使用哪个函数来声明变量,其实他们的规则很简单,new 只分配内存,而 make 只能用于 slice、map 和 channel 的初始化 new 在Go语言中,new ...
分类:
编程语言 时间:
2020-02-04 23:35:14
阅读次数:
103
第八讲 定语从句 雅思写作高分句型 ? The last thing ? that students ? want to do is ? perhaps to take ? test. ? 学生最不愿意做的事情是... Goals:(七分版) \1. 关系代词三大难点 A. 关系代词 | | 人 | ...
分类:
其他好文 时间:
2020-02-04 23:27:10
阅读次数:
112
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Input: "aba" Output: True Exa ...
分类:
其他好文 时间:
2020-02-04 11:04:16
阅读次数:
77
We are given an array A of N lowercase letter strings, all of the same length. Now, we may choose any set of deletion indices, and for each string, we ...
分类:
其他好文 时间:
2020-02-04 10:24:21
阅读次数:
67
ToggleButton和Switch 状态开关ToggleButton与开关switch也是由button按钮派生出来的,因此他们的本质也是按钮,button支持的各种属性,方法toggleButton和switch也适用。 ToggleButton常用的属性: android:textOff:按 ...
分类:
移动开发 时间:
2020-02-03 22:42:57
阅读次数:
108
模板是C++中泛型编程的基础,一个模板就是一个创建类或函数的蓝图。函数模板我们可以定义一个通用的函数模板(function template),而不是为每个类型都定义一个新函数。compare的模板版本如下:1234567template int (const T &v1, const T &v2)... ...
分类:
编程语言 时间:
2020-02-03 15:42:19
阅读次数:
79
map 的遍历过程使用 for range 循环完成,代码如下: package main import "fmt" func main() { mapNum := make(map[string]int) mapNum["key1"] = 1 mapNum["key2"] = 2 mapNum[" ...
分类:
编程语言 时间:
2020-02-03 11:31:26
阅读次数:
92