摘要: readonly myCentos="bigman": echo $myCentos; unset myCentos; fuckArr=(123 'good' 'man' 'is' 'me'); for var in fuckArr;do printf $var done; 阅读全文
posted @ 2017-12-26 16:28 bigman-bugman 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 安装 virtualbox centos 之后 vi test.sh echo 'bigman is here:)'; chmod +x ./test.sh //可用ls -l 查看文件权限 ./test.sh //bigman is here 阅读全文
posted @ 2017-12-26 16:06 bigman-bugman 阅读(269) 评论(0) 推荐(0) 编辑
摘要: let type = function(t) { var p = ({}).toString.call(t); var typeObj = { "[object Object]": "Object", "[object Array]": "Array", "[object Number]": "Number", "[object String]": "St... 阅读全文
posted @ 2017-12-21 09:28 bigman-bugman 阅读(180) 评论(0) 推荐(0) 编辑
摘要: function clone(obj) { var c = obj instanceof Array ? [] : {}; for (var i in obj) if (obj.hasOwnProperty(i)) { var prop = obj[i]; if (typeof prop == 'o 阅读全文
posted @ 2017-12-21 09:22 bigman-bugman 阅读(919) 评论(0) 推荐(0) 编辑
摘要: 首先从git 下载requests库 解压,放入python安装目录,选中requests库,shfit鼠标右键,进入CMD,输入python setup.py install ,运行结束后,输入import requests检测是否安装成功 若为这样,即安装成功。 同样,安装 从HTML中提取数据 阅读全文
posted @ 2017-11-23 16:32 bigman-bugman 阅读(376) 评论(0) 推荐(0) 编辑
摘要: import os import os.path list = os.listdir("../python/"); for i in list: print i, os.path.isfile(i) 判断函数在os.path 模块里面:isfile,isdir 相关文档 判断函数在os.path 模 阅读全文
posted @ 2017-11-23 16:10 bigman-bugman 阅读(318) 评论(0) 推荐(0) 编辑
摘要: import shutil isOk = shutil.rmtree("F:\\QQPCMgr",True); print isOk 相关文档 import shutil isOk = shutil.rmtree("F:\\QQPCMgr",True); print isOk 相关文档 阅读全文
posted @ 2017-11-23 15:39 bigman-bugman 阅读(333) 评论(0) 推荐(0) 编辑
摘要: webpack3+babel+react 在使用这个配置环境时,需要用到es6 import 动态加载模块。webpack 3 以上版本,官方说 已经支持, 结果 跑起来报 unexperted token,网上 搜了一堆资料 也没有解决。最好,发现import() 是在 stage 3 of th 阅读全文
posted @ 2017-11-14 11:07 bigman-bugman 阅读(1450) 评论(0) 推荐(0) 编辑