Introduction Whether you are running your site on your own server or in the cloud, security must be at the top of your priority list. If so, you will ...
分类:
移动开发 时间:
2016-11-16 19:41:17
阅读次数:
325
在已有的git库中搭建新的库,并将本地的git仓库,上传到服务器的git库中,从而开始一个新的项目。 首先是在本地操作: 在本地新建文件夹spider,进入到spider中:如下 下一步登录到远程的服务器中: 登录到远程的git服务器上,到你要创建仓库的位置然后进入spider.git目录。 git ...
分类:
其他好文 时间:
2016-11-15 13:25:55
阅读次数:
259
SVN是集中式版本控制系统,版本库是集中放在中央服务器的,而干活的时候,用的都是自己的电脑,所以首先要从中央服务器哪里得到最新的版本,然后干活,干完后,需要把自己做完的活推送到中央服务器。集中式版本控制系统是必须联网才能工作,如果在局域网还可以,带宽够大,速度够快,如果在互联网下,如果网速慢的话,就 ...
分类:
移动开发 时间:
2016-11-15 01:14:19
阅读次数:
176
1.查看所有高级的npm moudles 2.查看所有全局安装的模块 ...
分类:
其他好文 时间:
2016-11-14 20:35:11
阅读次数:
164
php的含义:超文本预处理语言 优点: 集成环境,是把搭建一个WEB服务器所需要的所有组件人为的组合在一起,常见的有WAMP,LAMP。但对于我们开发人员来说,需要了解其中的原理。集成环境都属于第三方,不一定安全。 Apache 安装: 设置安装目录 可通过Localhost ,127.0.0.1 ...
分类:
Web程序 时间:
2016-11-14 02:27:03
阅读次数:
208
1 . 函数参数传递 push 4 push 3 push 2 push 1 call Add (1161A60h) add esp,10h //调用者平衡堆栈 push 4 push 3 push 2 push 1 call Add (1161A60h) //子程序Add里面平衡堆栈 push 4 ...
分类:
其他好文 时间:
2016-11-14 01:52:39
阅读次数:
218
<?php//无返回值,无参数/*function CreateTable(){ $col=""; //echo $col; $cindex=0; while($cindex<10){ $col.="<td></td>"; $cindex++; } $rindex=0; $row=""; while ...
分类:
Web程序 时间:
2016-11-13 22:01:55
阅读次数:
275
简介: 数据量比较大时,使用 innobackupex 备份数据新增 MySQL Slave 节点。 安装 innobackupex 工具,我这里写过一次:http://www.cnblogs.com/wangxiaoqiangs/p/5961413.html 场景: 一、增加节点 C # 由于有从 ...
分类:
数据库 时间:
2016-11-11 20:00:20
阅读次数:
249
在Global.asax文件中添加 protected void Application_BeginRequest(Object sender, EventArgs e) { if (Context.Request.FilePath == "/") Context.RewritePath("inde... ...
分类:
其他好文 时间:
2016-11-11 14:43:36
阅读次数:
228
正则表达式,也可以称为规则表达式。英文为:regular expression,简写为reg.而实际上,正则表达式就是和字符串打交道,而制定的一系列的规则。特点:性能极高,方便。正则的写法: 1.传一个参数 var reg = new RegExp('要查找的字符串()'); str.search( ...
分类:
其他好文 时间:
2016-11-10 23:57:10
阅读次数:
355