摘要:
``` * 参考 https://www.cnblogs.com/aixing/p/15837547.html ``` 这么多,不知选择哪个,好头痛啊 阅读全文
posted @ 2023-08-30 09:27
北京涛子
阅读(15)
评论(0)
推荐(0)
摘要:
``` * 参考 https://www.cnblogs.com/aixing/p/15837547.html ``` 这么多,不知选择哪个,好头痛啊 阅读全文
posted @ 2023-08-30 09:27
北京涛子
阅读(15)
评论(0)
推荐(0)
摘要:
```bash * 设置 # git config --global http.proxy 192.168.10.13:10809 * 取消 # git config --global --unset http.proxy ``` 阅读全文
posted @ 2023-08-29 10:41
北京涛子
阅读(56)
评论(0)
推荐(0)
摘要:
* 参考 https://docs.rancher.cn/docs/k3s/quick-start/_index https://docs.k3s.io/zh/installation/configuration https://picluster.ricsanfre.com/docs/home h 阅读全文
posted @ 2023-08-22 09:28
北京涛子
阅读(129)
评论(0)
推荐(0)
摘要:
轻量级流水线可以选择以下2种组合,'gitea + gitea actions' or 'gitea + drone',感觉当前drone比actions更加成熟一些 * https://cloud.tencent.com/developer/article/2145626?areaSource=1 阅读全文
posted @ 2023-08-11 10:11
北京涛子
阅读(213)
评论(0)
推荐(0)
摘要:
https://dev.to/karanpratapsingh/go-course-advanced-concurrency-patterns-3ap4 1. Generator package main import "fmt" func generator() <-chan int { ch : 阅读全文
posted @ 2023-03-30 10:04
北京涛子
阅读(24)
评论(0)
推荐(0)
摘要:
https://maas.io/docs/how-to-install-maas https://clonezilla.nchc.org.tw/intro https://cobbler.github.io 阅读全文
posted @ 2023-03-21 16:09
北京涛子
阅读(56)
评论(0)
推荐(0)
摘要:
https://www.jianshu.com/p/e8b26dc7884a package main import ( "fmt" "math/rand" "sync" "time" ) // SimpleData stuct type SimpleData struct { ID int } / 阅读全文
posted @ 2023-01-29 11:15
北京涛子
阅读(80)
评论(0)
推荐(0)
摘要:
https://blog.csdn.net/qq_55752792/article/details/125917846 package main import ( "fmt" "math/rand" "sync" "time" ) // Job struct type Job struct { ID 阅读全文
posted @ 2023-01-29 10:04
北京涛子
阅读(91)
评论(0)
推荐(0)
摘要:
http://events.jianshu.io/p/3ff594bb87de https://www.zhihu.com/question/318138275/answer/2127814257 Go语言的泛型(Generic)叫做类型参数。泛型可以让我们代码适应不同类型的参数 /* 声明一个带有 阅读全文
posted @ 2022-12-21 15:21
北京涛子
阅读(218)
评论(0)
推荐(0)
摘要:
1. 生成sshkey ssh-keygen -f root.pem -N '' -C 'root@local' ssh-keygen -f ansible.pem -N '' -C 'ansible@local' ssh-keygen -f app.pem -N '' -C 'app@local' 阅读全文
posted @ 2022-12-13 16:49
北京涛子
阅读(46)
评论(0)
推荐(0)
|