Description Saruman the White must lead his army along a straight path from Isengard to Helm’s Deep. To keep track of his forces, Saruman distributes ...
分类:
其他好文 时间:
2018-05-15 00:23:38
阅读次数:
156
5582: Box and Ball 题目描述 We have N boxes, numbered 1 through N. At first, box 1 contains one red ball, and each of the other boxes contains one white b ...
分类:
其他好文 时间:
2018-05-14 21:29:19
阅读次数:
181
import turtle while True: turtle.color("white") turtle.bgcolor('pink') turtle.forward(110) turtle.right(140) if abs(turtle.pos())<1: break turtle.done ...
分类:
其他好文 时间:
2018-05-14 16:43:11
阅读次数:
134
import qrcode #先通过pip install qrcode[pil] 将qrcode模块导入进来qr = qrcode.QRCode( version=1, #值为1~40的整数,可以控制二维码的大小 error_correction=qrcode.constants.ERROR_CO ...
分类:
编程语言 时间:
2018-05-13 13:37:58
阅读次数:
196
1 // 这是一个用JavaScript编写JSON解析器的实现方案: 2 var jsonParser = (function() { 3 // 这是一个能把JSON文本解析成JavaScript数据结构的函数。 4 // 它是一个简单的递归降序解析器。 5 // 我们在另一个函数中定义此函数,以... ...
分类:
编程语言 时间:
2018-05-12 21:37:08
阅读次数:
211
首先,要知道css的三条属性。 overflow:hidden; //超出的文本隐藏 text-overflow:ellipsis; //溢出用省略号显示 white-space:nowrap; //溢出不换行 这三个是css的基础属性,需要记得。 但是第三条属性,只能显示一行,不能用在这里,那么如 ...
分类:
Web程序 时间:
2018-05-11 10:38:26
阅读次数:
218
对于SQL的Join,在学习起来可能是比较乱的。我们知道,SQL的Join语法有很多inner的,有outer的,有left的,有时候,对于Select出来的结果集是什么样子有点不是很清楚。CodingHorror上有一篇文章,通过文氏图Venndiagrams解释了SQL的Join。我觉得清楚易懂... ...
分类:
数据库 时间:
2018-05-09 01:18:03
阅读次数:
178
硬件要求: 树莓派开发板 USB外接硬盘 一. Together 1. 更新安装程序 2. 安装Deuge: 3. 配置后台启动 4. 登陆:(地址:http://树莓派ip地址:8112,默认密码deluge) 二. 安装transmission 1. 安装transmission 2. 停止tr ...
分类:
其他好文 时间:
2018-05-08 16:24:08
阅读次数:
468
?这段时间做了个小项目,给客户部署了一套基于OpenStackHypervisor的私有云环境。其中涉及到一台独立的存储设备——EMCUNITY400,因此需要与OpenStackOcataCinder进行整合。?目前整合完成,经测试一切正常!现把所参考的官方配置文档链接分享出来(https://www.emc.com/collateral/white-papers/h15921-emc-unit
分类:
编程语言 时间:
2018-05-08 14:47:43
阅读次数:
369
第一步: 从postman中导出collection和enviroment文件,上传到linux主机上 第二步: linux上安装node 和npm ,然后才能用npm安装newman 第三步:安装newman 执行:sudo npm install -g newman 如果: newman -v ...
分类:
系统相关 时间:
2018-05-08 14:27:51
阅读次数:
535