摘要: 1、在git或码云创建新的仓库 2、初始化厂库,项目文件夹下 git init 3、添加提交的文件 git add . 4、本地提交 git commit -m "说明" 5、关联git或码云仓库 git remote add origin 仓库地址 6、推送到仓库 git push -u orig 阅读全文
posted @ 2019-11-18 23:42 henry*辉 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 配置 Docker 镜像站 Linux curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361db2.m.daocloud.io 该脚本可以将 --registry-mirror 加入到你的 Dock 阅读全文
posted @ 2019-04-23 15:22 henry*辉 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 安装 Taro 开发工具 @tarojs/cli 执行npm install -g @tarojs/cli报错 Unexpected end of JSON input while parsing near '...gulp-newer":"latest",' 解决办法: npm cache cle 阅读全文
posted @ 2019-02-12 14:37 henry*辉 阅读(297) 评论(0) 推荐(0) 编辑
摘要: byte 表示存储下表所示值的整型类型。 类型范围大小.NET 类型 byte 0 到 255 无符号的 8 位整数 System.Byte 使用前缀 0x 或 0X 表示十六进制文本,使用前缀 0b 或 0B 表示二进制文本。 十进制文本没有前缀。 阅读全文
posted @ 2018-07-10 10:09 henry*辉 阅读(9179) 评论(0) 推荐(1) 编辑
摘要: mysql索引从1开始 一、mysql截取字符串函数 1、left(str,index) 从左边第index开始截取 select left('abcdefg',3) >abc 2、right(str,index)从右边第index开始截取 select left('abcdefg',3) >efg 阅读全文
posted @ 2018-07-04 14:02 henry*辉 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 400 Bad request(错误请求)401.1 Logon failed(登录失败)401.2 Logon failed due to server configuration(由于服务器配置,登录失败)401.3 Unauthorized due to ACL on resource(由于资 阅读全文
posted @ 2018-06-26 15:08 henry*辉 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 在编码前注册 Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); Encoding encoding = Encoding.GetEncoding("GB2312"); CodePagesEncodingProvider定义在 阅读全文
posted @ 2018-06-26 14:59 henry*辉 阅读(2678) 评论(1) 推荐(2) 编辑