Skip to content

Commit 8bb99fa

Browse files
committed
重新整理了一下学习资料和格式
1 parent c7ecfb0 commit 8bb99fa

File tree

1 file changed

+79
-35
lines changed

1 file changed

+79
-35
lines changed

README.md

Lines changed: 79 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
本项目起源于[iOSBlogCN](https://github.com/tangqiaoboy/iOSBlogCN),非常感谢[唐巧](https://github.com/tangqiaoboy/)
1212

13-
注意:本项目中的Export.py文件必须用python3执行
13+
注意:本项目中的 Export.py 文件必须用python3执行
1414

1515
博客地址(排名不分先后) | RSS地址
1616
----- | -----
@@ -51,6 +51,78 @@
5151
[Legendtkl](http://legendtkl.com/) |
5252
[行思錄 | Travel Coder - Arch, Coding, Life Learning](https://liudanking.com)
5353

54+
55+
----
56+
57+
## Go 学习资料
58+
59+
| Go 入门|
60+
|----|
61+
| [Go 官方网站](https://golang.org/)[Go 中文官方网站](https://go-zh.org/) |
62+
| [Go 入门指南](https://github.com/Unknwon/the-way-to-go_ZH_CN) |
63+
| [Go 指南](https://tour.go-zh.org/) |
64+
| [Go 怎么开始](https://github.com/alco/gostart) |
65+
| [Go 开发向导 16 讲](https://github.com/hacking-code/golang-tutorials) |
66+
| [Go 命令指南](https://github.com/hyper0x/go_command_tutorial) |
67+
| [Go by Example](https://gobyexample.com/) |
68+
| [国外的一个高质量 Go 教程集](https://golangbot.com/learn-golang-series/) |
69+
| [Go 测试驱动](https://quii.gitbook.io/learn-go-with-tests) |
70+
71+
| Go 进阶|
72+
|----|
73+
| [Go 官方博客](https://blog.golang.org/) |
74+
| [Go 官方包文档-pkg](https://golang.org/pkg/) |
75+
| [Go 标准库中文文档-cngolib](http://cngolib.com/)| |
76+
| [深入理解 Go by teh-cmc](https://github.com/teh-cmc/go-internals)|
77+
| [深入理解 Go by tiancaiamao](https://github.com/tiancaiamao/go-internals) |
78+
| [Go 内部原理的一系列文章和视频](https://github.com/emluque/golang-internals-resources)|
79+
80+
| Go 书籍|
81+
|-----|
82+
| [Go Web 编程](https://github.com/astaxie/build-web-application-with-golang) |
83+
| [雨痕的 Go 学习笔记](https://github.com/qyuhen/book) |
84+
| [Go 语言圣经](https://www.gitbook.com/book/wizardforcel/gopl-zh/details) |
85+
| [GO SCP](https://checkmarx.gitbooks.io/go-scp/content/) |
86+
87+
| Go 其他|
88+
|----|
89+
| [Gopher 阅读清单](https://github.com/enocom/gopher-reading-list) |
90+
| [Go 知识图谱](https://github.com/gocn/knowledge) |
91+
| [Go 语言学习资源整理](https://zhuanlan.zhihu.com/p/25493806) |
92+
93+
94+
| Go 面试|
95+
|----|
96+
[Go 开发建议](https://github.com/cristaloleg/go-advices)|
97+
[精华的 Go 面试题和答案](https://github.com/goquiz/goquiz.github.io)|
98+
[编程面试题的 Go 实现](https://github.com/mrekucci/epi)|
99+
100+
## Go 学习视频
101+
102+
| 课程名称 | 简单介绍 |
103+
|----|----|----|
104+
| [Go 编程基础](https://github.com/Unknwon/go-fundamental-programming) | 这套视频适合初学者。 |
105+
| [Go Web 基础](https://github.com/Unknwon/go-web-foundation) | 主要面向完成《Go 编程基础》教程后希望进一步了解有关 Go Web 开发的学习者。|
106+
| [Go 名库讲解](https://github.com/Unknwon/go-rock-libraries-showcases) | 主要是对 Go 语言的第三方库进行评测讲解的,集博客、示例与语音视频为一体的综合教程,适合完成《Go编程基础》教程之后的学习者。|
107+
| [Go 语言第一课](http://www.imooc.com/learn/345)|郝林|
108+
109+
110+
----
111+
112+
## Go 开发工具
113+
114+
### 1. Vim
115+
116+
MacVim + vim-go
117+
118+
### 2. 文本编辑器 + 插件
119+
120+
Visual Studio Code、Sublime Text 3、Atom
121+
122+
### 3. IDE
123+
124+
IntelliJ idea + Go Plugin、Goland、LiteIDE
125+
54126
----
55127

56128
微信公众号(排名不分先后) | 公众号ID | 二维码
@@ -66,37 +138,9 @@ PingCAP|pingcap2015|![PingCAP](https://mp.weixin.qq.com/mp/qrcode?scene=10000004
66138

67139
----
68140

69-
Go语言社区(排名不分先后)|
70-
----|
71-
[https://gocn.io](https://gocn.io)|
72-
[http://studygolang.com](http://studygolang.com)|
73-
[http://www.golangtc.com](http://www.golangtc.com)|
74-
[http://www.golangweb.com](http://www.golangweb.com)|
75-
76-
----
77-
78-
Go 其他|
79-
----|
80-
[Go社区的知识图谱](https://github.com/gocn/knowledge)|
81-
[Go 建议](https://github.com/cristaloleg/go-advices)|
82-
[开始Go](https://github.com/alco/gostart)|
83-
[Golang Guide and Tutorials](https://github.com/hacking-code/golang-tutorials)|
84-
[gopher-reading-list](https://github.com/enocom/gopher-reading-list)|
85-
[go-internals](https://github.com/teh-cmc/go-internals)|
86-
[Awesome Go Interview Questions and Answers](https://github.com/goquiz/goquiz.github.io)|
87-
[Solutions for Elements of Programming Interviews problems written in Golang](https://github.com/mrekucci/epi)|
88-
89-
----
90-
91-
## Go 书籍
92-
93-
Go 在线书籍
94-
----|
95-
[Go开发Web应用](https://github.com/astaxie/build-web-application-with-golang)
96-
[Go 入门指南](https://github.com/Unknwon/the-way-to-go_ZH_CN)
97-
[雨痕的go学习笔记](https://github.com/qyuhen/book)
98-
[Go语言圣经](https://www.gitbook.com/book/wizardforcel/gopl-zh/details)
99-
[深入解析Go](https://www.gitbook.com/book/tiancaiamao/go-internals/details)|
100-
[Go命令向导](https://github.com/hyper0x/go_command_tutorial)|
101-
[Go语言学习资源整理](https://zhuanlan.zhihu.com/p/25493806)
102-
141+
Go 语言社区(排名不分先后)|特色|
142+
----|----|
143+
[Go中国技术社区](https://gocn.io)|GoCN每日新闻、问答社区|
144+
[GO语言中文网](http://studygolang.com)|问答社区、开源项目、资源、图书、下载、官方文档。|
145+
[Golang 中国](http://www.golangtc.com)|问答社区、图书、下载。|
146+
[Golang 语言社区(www.Golang.LTD)](http://www.golang.ltd)|问答社区|

0 commit comments

Comments
 (0)