上一页 1 2 3 4 5 6 7 ··· 30 下一页
摘要: 在使用puppeteer的时候添加代理的时候总是遇到 ERR_NO_SUPPORTED_PROXIES (async () => { const browser = await puppeteer.launch({ headless: false, args: [ '--proxy-server=h 阅读全文
posted @ 2020-05-07 10:58 闲云-野鹤 阅读(4672) 评论(0) 推荐(0) 编辑
摘要: 基本概念 先说一下关于用户、验证和角色的基本概念。 用户 要在MongoDB中验证客户端,必须向MongoDB添加相应的用户。 添加用户 添加用户使用MongoDB的用户管理接口,此接口提供db.createUser()的方式添加用户(这里有坑,网络上很多关于MongoDB添加用户的内容还都在使用d 阅读全文
posted @ 2020-04-21 16:34 闲云-野鹤 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 在docker安装php的intl拓展的时候 报缺少icu。发现容器使用的apline linux 于是就google找到了 方法 apk add icu-dev 在RedHat/Centos下可以使用 # yum install libicu-devel 在Ubuntu/Debian下可以使用 a 阅读全文
posted @ 2020-04-17 15:23 闲云-野鹤 阅读(1057) 评论(0) 推荐(0) 编辑
摘要: dstf, err := os.Create("./data/" + fileName) defer dstf.Close() if err != nil { beego.Error("create file error: " + err.Error()) return "", err } dstf 阅读全文
posted @ 2020-03-19 10:46 闲云-野鹤 阅读(793) 评论(0) 推荐(0) 编辑
摘要: 1. 检测命令是否存在 不使用which ,which不是内建命令,可能不同的平台实现不一样。 2. 检测元素是否在数组里 阅读全文
posted @ 2020-01-08 11:08 闲云-野鹤 阅读(126) 评论(0) 推荐(0) 编辑
摘要: The problem is simpler than it looks. You convert a rune value to an int value with int(r). But your code implies you want the integer value out of th 阅读全文
posted @ 2019-12-27 09:32 闲云-野鹤 阅读(569) 评论(0) 推荐(0) 编辑
摘要: shell 字符串小写转大写 shell字符串拼接 对于变量或者字符串的连接,shell提供了相当简单的做法 直接放到一起或用双引号即可 golang 编译时加入额外信息 golang中我们在编译时可以使用-ldflags编译选项来添加一些信息,这些信息会被写入到目标文件中 交叉编译 GOOS:目标 阅读全文
posted @ 2019-12-20 14:45 闲云-野鹤 阅读(629) 评论(0) 推荐(0) 编辑
摘要: echo要支持同C语言一样的\转义功能,只需要加上参数-e,如下所示: 阅读全文
posted @ 2019-12-19 17:17 闲云-野鹤 阅读(1287) 评论(0) 推荐(0) 编辑
摘要: drone 更新仓库为truested 阅读全文
posted @ 2019-12-16 20:03 闲云-野鹤 阅读(347) 评论(0) 推荐(0) 编辑
摘要: Ubuntu ssh一直无法启动。 通过 systemctl status ssh.service 查看到的错误是 Dec 16 13:35:22 iZm5eckxl2tqyka9eoe7b3Z systemd[1]: Starting OpenBSD Secure Shell server...D 阅读全文
posted @ 2019-12-16 13:55 闲云-野鹤 阅读(4499) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 30 下一页