应用开发
应用开发
CH_Qing
尚善若水,水善利万物,而不争!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Go资源被墙最快解决方案
最近在学golang,因为文化自信,Go语言好多包国内是无法获取的,写这篇教程希望可以帮助大家最快的解决资源被墙的问题,不要把时间浪费这种无意义的事情上.环境 $ go version # go version go1.12 darwin/amd64 复制代码 把 golang 升级到 1.11(建议使用 1.12,1.11 之后,go 官方引入了 go modu...转载 2019-09-20 13:31:37 · 502 阅读 · 0 评论 -
[golang] struct 定义多个tag
A StructTag is the tag string in a struct field.By convention, tag strings are a concatenation of optionally space-separated key:“value” pairs. Each key is a non-empty string consisting of non-control characters other than space (U+0020 ’ '), quote (U+002翻译 2020-11-13 09:24:48 · 2500 阅读 · 0 评论 -
ARM64 Ubuntu 18.04 mirror
/etc/apt/sources.listdeb http://mirrors.ustc.edu.cn/ubuntu-ports/ bionic universedeb http://mirrors.ustc.edu.cn/ubuntu-ports/ bionic-updates universedeb http://mirrors.ustc.edu.cn/ubuntu-ports/ bionic multiversedeb http://mirrors.ustc.edu.cn/ubuntu-por原创 2021-07-29 17:09:00 · 528 阅读 · 0 评论 -
Ubuntu install teamview
Step 1: Download and add TeamViewer repository keyFirst, you need to download the TeamViewer repository key as we will installing TeamViewer through its official website. Run the following command in...原创 2019-10-17 08:59:51 · 276 阅读 · 0 评论 -
生成SSL/TLS 自签名证书
#!/bin/bashCAPATH=${CAPATH:-/etc/edgedev/ca}CASUBJECT=${CASUBJECT:-/C=CN/ST=Shaanxi/L=Xian/O=EDGEDEV/CN=edgedev.io}CERTPATH=${CERTPATH:-/etc/edgedev/cert}CERTUBJECT=${CASUBJECT}PASS_PHRASE="pass...原创 2019-10-14 17:14:23 · 575 阅读 · 1 评论 -
C 基础
C/C++格式化字符串说明 C++的格式化字符串经常用作格式化数字的输出、字符串合并和转换等等很多场合。格式化规定符━━━━━━━━━━━━━━━━━━━━━━━━━━符号 作用──────────────────────────%d 十进制有符号整数%u 十进制无符号整数%f 浮点转载 2016-06-21 11:33:36 · 384 阅读 · 0 评论 -
使用CSDN-markdown编辑器
这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Ma...翻译 2019-03-27 13:37:57 · 174 阅读 · 0 评论 -
kubeedge report msg format
$hw/events/device/modbus-device-model-01/twin/update/result 0 {"event_id":"","timestamp":1563348260215,"twin":{"temperature":{"actual":{"value":"10","metadata":{"timestamp":1563348260215}},"optional":...原创 2019-07-17 15:38:26 · 225 阅读 · 2 评论 -
GO 的交叉编译
编译前看下arm-linux-gnueabihf-gcc -fuse-ld=gold -Wl,--version是不是支持gold 连接 ,如果不支持,就得更换编译器了。gcc-7 的应该就没有问题 因为go just only support the gold linker!export GOARCH=armexport GOOS="linux"export GOARM=7...原创 2019-08-15 14:17:32 · 919 阅读 · 0 评论
分享