VyOS and ESXi,VyOS Configuration The next step is to configure both VyOS routers. Before we do, we should ensure that we have a good high-level unders ...
分类:
其他好文 时间:
2017-06-04 13:49:25
阅读次数:
271
super()和this ()不能共存。否则编译时会报异常。 Constructorcall must be the first statement in a constructor 换句话说就是super()和this()都必须在构造方法的第一行。 this(有參数/无參数) 用于调用本类对应的构 ...
分类:
其他好文 时间:
2017-05-31 22:21:01
阅读次数:
347
Every movie needs a director and every rented movie needs to exist in the store. How do we make sure something in another table exists before insertin ...
分类:
数据库 时间:
2017-05-31 22:18:01
阅读次数:
212
Let’s say we have a bank. Our bank wants to give each account for each user a unique name, for instance, “Personal” or “Checking.” How can we make sur ...
分类:
数据库 时间:
2017-05-31 21:32:49
阅读次数:
254
mongodb官网 The mongodb-org-server package provides an initialization script that starts mongod with the /etc/mongod.conf configuration file. See Run Mo ...
分类:
数据库 时间:
2017-05-30 23:15:01
阅读次数:
373
ArrayList继承了AbstractList类,实现了List接口。 默认的大小为10,所有元素值保存在一个Object数组内。 add方法 在ArrayList内,有两个add方法,分别如下图。 add(E e)方法:首先确保Capacity可以容纳下加一个元素,然后将下一个元素赋值为e,返回 ...
分类:
其他好文 时间:
2017-05-30 20:51:11
阅读次数:
228
应用场景如下:从api下载数据,json解析,存入字典,定期保存。重启程序需要加载保存的文本。 问题1:json中都是unicode串,存到文本里都是些\u*** 解决:关闭ensure_ascii开关 json.dump(pub.listData,fp,ensure_ascii=False) 问题... ...
分类:
编程语言 时间:
2017-05-27 10:50:53
阅读次数:
219
阿里“天池”竞赛平台近日推出了一个新的挑战任务:对于给定的一串 DNA 碱基序列 tt,判断它在另一个根据规则生成的 DNA 碱基序列 ss 中出现了多少次。 首先,定义一个序列 ww: \displaystyle w_{i} = \begin{cases}b, & i = 0\\(w_{i-1} ...
分类:
其他好文 时间:
2017-05-20 22:42:09
阅读次数:
381
在使用json.dumps时要注意一个问题 >>> import json >>> print json.dumps('中国') "\u4e2d\u56fd" 输出的会是 '中国' 中的ascii 字符码,而不是真正的中文。 这是因为json.dumps 序列化时对中文默认使用的ascii编码.想输 ...
分类:
编程语言 时间:
2017-05-20 15:27:05
阅读次数:
159
16 How To Move a MySQL Data Directory to a New Location on Ubuntu 16.04 PostedJuly 21, 2016 62.1kviews MYSQL BLOCK STORAGE STORAGE UBUNTU UBUNTU 16.04 ...
分类:
数据库 时间:
2017-05-18 20:01:31
阅读次数:
275