windows下mysql安装

windows下mysql安装

下载:

https://dev.mysql.com/downloads/mysql/

阅读更多

arachni对网站进行安全检查

第一步:安装

可以从官网去下载(下载很慢),我放了一份在百度云
网盘地址:链接: https://pan.baidu.com/s/1dioWcTHx5qR6ffMwS8l-zA 提取码: aqfm

阅读更多

js相关

命名空间 作用:避免全局污染

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(function () {
var _NS = function () {}

_NS.prototype.html = function (obj,value) {
var isArray=this.isArrayLike(obj), i=0;

if (typeof value == 'string') {
if (!isArray) {
obj.innerHTML = value;
} else {
var length = obj.length;
while (i < length) {
obj[i].innerHTML = value;
i += 1;
}
}
} else {
if (!isArray) {
return obj.innerHTML;
} else {
return obj[0].innerHTML;
}
}
}

window.NS = new _NS();
})();

阅读更多

crontab 定时任务的编写

进入时间表编写模式

crontab -e

* * * * * 五颗星分别表示:分、时、日、月、周

查看所有表单任务:

crontab -l

阅读更多

Mysql for mac 配置

主要参考了:https://blog.csdn.net/qq_32180569/article/details/83417656这篇文档

阅读更多