# mygoedu **Repository Path**: yznlp/mygoedu ## Basic Information - **Project Name**: mygoedu - **Description**: learn golang - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-17 - **Last Updated**: 2022-03-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### 介绍 Enjoy Golang ♪(๑ᴖ◡ᴖ๑)♪ #### 入门 - 🌟 go圣经: https://yar999.gitbooks.io/gopl-zh/content/ch0/ch0-01.html - 🌟 标准库中文文档: https://studygolang.com/pkgdoc - 🌟 简明教程: https://geektutu.com/post/quick-golang.html - go by example: https://gobyexample-cn.github.io/ - the-way-to-go: https://github.com/unknwon/the-way-to-go_ZH_CN/blob/master/eBook/directory.md - idea激活: https://zhile.io/2020/11/18/jetbrains-eval-reset-da33a93d.html #### 进阶 - go高级编程: https://chai2010.cn/advanced-go-programming-book/ - go搭建web: https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/preface.md - go高性能编程: https://github.com/geektutu/high-performance-go - 优秀资源整理: https://segmentfault.com/a/1190000020868910 - Go开发指南图: https://upload-images.jianshu.io/upload_images/20832941-0ff648dee812fda8.png #### 论坛 - Go技术论坛: https://chai2010.cn/advanced-go-programming-book/ - Go语言中文网: https://studygolang.com/ - 极客兔兔: https://geektutu.com/ #### 相关下载 - Go SDK: https://studygolang.com/dl #### Git教程 - Pro Git: http://git.oschina.net/progit/ - 廖雪峰git教程: https://www.liaoxuefeng.com/wiki/896043488029600/896067008724000 - 官方git: http://git-scm.com/downloads - SourceTree: https://www.sourcetreeapp.com/ #### 其它 - go交叉编译: https://studygolang.com/articles/14376 ```shell # mac上编译linux和windows二进制 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.go CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go # linux上编译mac和windows二进制 CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build main.go CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go # windows上编译mac和linux二进制 SET CGO_ENABLED=0 SET GOOS=darwin SET GOARCH=amd64 go build main.go SET CGO_ENABLED=0 SET GOOS=linux SET GOARCH=amd64 go build main.go ``` - 设置环境变量 ```shell export GO111MODULE=on export GOPROXY=https://goproxy.cn,direct ``` #### 高质量源码 - prometheus: https://github.com/prometheus/prometheus - etcd: https://github.com/etcd-io/etcd - k8s: https://github.com/kubernetes/kubernetes