第一步,gitbash进入到项目目录 第二步:打开webpack.base.config.js在loaders里面加上 第三步,在需要用到scss的地方写上 ...
分类:
Web程序 时间:
2017-08-08 12:37:50
阅读次数:
200
参考文章 代理模式(Proxy):为其他对象提供一种代理以控制对这个对象的访问。 ...
分类:
编程语言 时间:
2017-08-08 12:37:41
阅读次数:
129
方法1: 用SET PASSWORD命令 首先登录MySQL。 格式:mysql> set password for 用户名@localhost = password('新密码'); 例子:mysql> set password for root@localhost = password('123' ...
分类:
数据库 时间:
2017-08-08 12:37:35
阅读次数:
215
1、 /etc/security/limit.conf * soft nofile 65535 * hard nofile 65535 * soft nproc 65535 * hard nproc 65535 * soft nofile 65535 * hard nofile 65535 * so ...
分类:
其他好文 时间:
2017-08-08 12:37:28
阅读次数:
304
//链接:http://cnodejs.org/topic/580743a627a1d99178a98fc5 1.求输出: ([]+![])[+!![]] //a 2.求输出//评论里的问题 同计算了 ((-{})+[])[+![]]//N 解析: //虽然平时没看到有这么用的 代码里这么写的要么是 ...
分类:
Web程序 时间:
2017-08-08 12:37:20
阅读次数:
136
/********************************************************************* * Author : Samson * Date : 07/09/2014 * Test platform: * 3.11.0.11-generic #19- ...
分类:
数据库 时间:
2017-08-08 12:37:12
阅读次数:
163
django目前支持三种mysql驱动来进行mysql的链接MySQLdbisanativedriverthathasbeendevelopedandsupportedforover
adecadebyAndyDustman.mysqlclientisaforkofMySQLdbwhichnotablysupportsPython3and
canbeusedasadrop-inreplacementforMySQLdb.Atthetimeofthiswriting,
thisist..
分类:
数据库 时间:
2017-08-08 12:37:06
阅读次数:
338
1.实现MagicFunction MagicFunction(3) == 3; // should return true MagicFunction(1, 2) == 3; // should return true MagicFunction(1, 3)(2) == 6; // should ...
分类:
Web程序 时间:
2017-08-08 12:36:59
阅读次数:
156
多表查询:(多张表中数据集合到一张表中) SELECT USER_NAME AS '昵称‘,GNAME AS '游戏名称’,SCORE AS '分数‘ FROM USERS,GAMES,SCORES WHERE USERS.USER_QQ=SCORES.USER_QQ AND GAMES.GNO=S ...
分类:
数据库 时间:
2017-08-08 12:36:52
阅读次数:
197
发现存在大量TIME_WAIT状态的连接tcp 0 0 127.0.0.1:3306 127.0.0.1:41378 TIME_WAITtcp 0 0 127.0.0.1:3306 127.0.0.1:41379 TIME_WAITtcp 0 0 127.0.0.1:3306 127.0.0.1:3 ...
分类:
Web程序 时间:
2017-08-08 12:36:43
阅读次数:
292
AT+CREG=2 //设置参数,2为返回详细信息,包含基站的地区区域码和基站码 注意:GPRS命令后面都要有回车 AT+CREG?下面为返回值+CREG: 2,1,"5183","66F0"16进制转换第一个参数 5183 Lac:20867第一个参数 66F0 Cid:26352 得到这两个参数 ...
分类:
其他好文 时间:
2017-08-08 12:36:35
阅读次数:
165
[原文] 集合对 HashMap 进行排序: HashMap 本身无序,但其子类 LinkedHashMap 使用链表结构,实现了有序。通过 HashMap#entrySet() 方法可以将 Map 转为 Set<Entry> ,再在 ArrayList 的构造函数中可以传入 Collections ...
分类:
移动开发 时间:
2017-08-08 12:36:25
阅读次数:
175
法一:开启父路径在IIS7中ASP默认情况下,“父路径”是没有启用的,我们必须手动开启“父路径”,选择“True”,搞定“父路径”选项。具体操作如下图所示:打开“Tnternet信息服务(IIS)管理器”,左侧栏选择“DefaultWebSite”,内容区域选择“ASP”,如下图:双击打开“ASP”..
分类:
数据库 时间:
2017-08-08 12:36:17
阅读次数:
204
回到目录 我们在进行docker swarm部署高可用集群时,在yml文件里可能要配置一些服务,而这些服务可能要使用一些公用的数据库,这些数据库可能已经运行在某个容器里,而这些容器有自己的网络,docker inspect 容器ID 来查看容器所使用的网络,使用docker network ls来查 ...
分类:
其他好文 时间:
2017-08-08 12:36:11
阅读次数:
180
1.概述 最近有朋友问我Secondary NameNode的作用,是不是NameNode的备份?是不是为了防止NameNode的单点问题?确实,刚接触Hadoop,从字面上看,很容易会把Secondary NameNode当作备份节点;其实,这是一个误区,我们不能从字面来理解,阅读官方文档,我们可 ...
分类:
其他好文 时间:
2017-08-08 12:36:02
阅读次数:
172
WestartwithinstallingAnsibleusingroot.step1-run"yuminstallansible"toinstallitononemachinewithCenOS7;step2-configuringansiblehostsOpenthefile/etc/ansible/hosts,inthisfile,add:[servers]
host1ansible_ssh_host=user_name@server_ip
host2ansible_ssh_host=user_name..
分类:
其他好文 时间:
2017-08-08 12:35:54
阅读次数:
167
以一个实际工作为例,在一个金融系统中,从业务上看有投资人和借款人这两类用户,但从用户类别上看有企业用户和个人用户,请问建表时如何做比较好。 方式一: user表 user_person表、user_enterprise表 方式二: user表 user_investor 投资人表 、 user_bo ...
分类:
数据库 时间:
2017-08-08 12:35:47
阅读次数:
185