Skip to content

Commit dccb172

Browse files
committed
Update README.md
1 parent ef48db0 commit dccb172

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
# 《365天深入理解Go语言》
22

3-
## 一、项目说明
4-
53
本项目是记录自己在学习Go语言的过程中遇到的思考与感悟。本项目大量参考借鉴甚至是复制了其他类似的项目。感谢每一个项目,致敬每一位Gopher!尽可能的熟练使用Go语言,尽可能的深入理解Go语言。学习Go语言,面向信仰编程!作者:[0e0w](https://github.com/0e0w/LearnGolang)。Less is More or Less is Less.
64

7-
本项目创建于2020年9月1日,最近的一次更新日期为2021年7月3日。
8-
9-
项目暂计划共七章:项目未完成,持续更新整理中!
5+
本项目创建于2020年9月1日,最近的一次更新日期为2021年8月16日。本项目会持续更新,直到海枯石烂。
106

11-
- [第一章:Go语言基础](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%B8%80%E7%AB%A0go%E8%AF%AD%E8%A8%80%E5%9F%BA%E7%A1%80)
12-
- [第二章:Go语言进阶](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%BA%8C%E7%AB%A0go%E8%AF%AD%E8%A8%80%E8%BF%9B%E9%98%B6)
13-
- [第三章:Go语言库包](https://github.com/0e0w/365Golang#%E7%AC%AC%E4%B8%89%E7%AB%A0go%E8%AF%AD%E8%A8%80%E5%BA%93%E5%8C%85)
14-
- [第四章:Go语言算法](https://github.com/0e0w/365GoLang#%E7%AC%AC%E5%9B%9B%E7%AB%A0go%E8%AF%AD%E8%A8%80%E7%AE%97%E6%B3%95)
15-
- [第五章:Go安全开发](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%BA%94%E7%AB%A0go%E5%AE%89%E5%85%A8%E5%BC%80%E5%8F%91)
16-
- [第六章:Go语言源码](https://github.com/0e0w/365GoLang#%E7%AC%AC%E5%85%AD%E7%AB%A0go%E8%AF%AD%E8%A8%80%E6%BA%90%E7%A0%81)
17-
- [第七章:Go逆向工程](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%B8%83%E7%AB%A0go%E9%80%86%E5%90%91%E5%B7%A5%E7%A8%8B)
7+
项目暂计划共八章:项目未完成,持续更新整理中!
188

19-
## 二、本书章节
9+
- [0x01-Go语言基础](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%B8%80%E7%AB%A0go%E8%AF%AD%E8%A8%80%E5%9F%BA%E7%A1%80)
10+
- [0x02-Go语言进阶](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%BA%8C%E7%AB%A0go%E8%AF%AD%E8%A8%80%E8%BF%9B%E9%98%B6)
11+
- [0x03-Go语言库包](https://github.com/0e0w/365Golang#%E7%AC%AC%E4%B8%89%E7%AB%A0go%E8%AF%AD%E8%A8%80%E5%BA%93%E5%8C%85)
12+
- [0x04-Go语言算法](https://github.com/0e0w/365GoLang#%E7%AC%AC%E5%9B%9B%E7%AB%A0go%E8%AF%AD%E8%A8%80%E7%AE%97%E6%B3%95)
13+
- [0x05-Go安全开发](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%BA%94%E7%AB%A0go%E5%AE%89%E5%85%A8%E5%BC%80%E5%8F%91)
14+
- [0x06-Go语言源码](https://github.com/0e0w/365GoLang#%E7%AC%AC%E5%85%AD%E7%AB%A0go%E8%AF%AD%E8%A8%80%E6%BA%90%E7%A0%81)
15+
- [0x07-Go逆向工程](https://github.com/0e0w/365GoLang#%E7%AC%AC%E4%B8%83%E7%AB%A0go%E9%80%86%E5%90%91%E5%B7%A5%E7%A8%8B)
2016

21-
### 第一章:Go语言基础
17+
## 0x01-Go语言基础
2218

2319
<details>
2420
<summary>Day001: 基础-Go语言入门</summary>
@@ -98,20 +94,24 @@
9894
9995
```
10096
// Linux下编译Mac, Windows平台的64位可执行程序:
101-
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build 001.go
102-
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build 001.go
97+
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go
98+
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build main.go
99+
100+
// Linux下编译Mac, Windows平台的32位可执行程序:
101+
CGO_ENABLED=0 GOOS=windows GOARCH=386 go build main.go
102+
CGO_ENABLED=0 GOOS=darwin GOARCH=386 go build main.go
103103
```
104104
105105
```
106106
// Windows下编译Mac, Linux平台的64位可执行程序:
107-
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build 001.go
108-
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build 001.go
107+
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build main.go
108+
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.go
109109
```
110110
111111
```
112112
// Mac下编译Linux, Windows平台的64位可执行程序:
113-
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build 001.go
114-
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build 001.go
113+
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.go
114+
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go
115115
```
116116
117117
- 安装依赖:
@@ -2627,7 +2627,7 @@
26272627

26282628
</details>
26292629

2630-
### 第二章:Go语言进阶
2630+
## 0x02-Go语言进阶
26312631

26322632
<details>
26332633
<summary>Day023: 测试-Go语言测试</summary>
@@ -2800,7 +2800,7 @@
28002800

28012801
</details>
28022802

2803-
### 第三章:Go语言库包
2803+
## 0x03-Go语言库包
28042804

28052805
<details>
28062806
<summary>Day301: 库包-Go包的管理</summary>
@@ -3253,7 +3253,7 @@
32533253

32543254
</details>
32553255

3256-
### 第四章:Go语言算法
3256+
## 0x04-Go语言算法
32573257

32583258
<details>
32593259
<summary>Day000: 算法-Go排序算法</summary>
@@ -3397,7 +3397,7 @@
33973397

33983398
</details>
33993399

3400-
### 第五章:Go安全开发
3400+
## 0x05-Go安全开发
34013401

34023402
<details>
34033403
<summary>Day000: 安全-Go域名扫描</summary>
@@ -3507,7 +3507,7 @@
35073507
- [ ] 本节案例:
35083508

35093509
</details>
3510-
### 第六章:Go语言源码
3510+
## 0x06-Go语言源码
35113511

35123512
<details>
35133513
<summary>Day000: 源码-Go漏洞扫描</summary>
@@ -3538,7 +3538,7 @@
35383538

35393539
</details>
35403540

3541-
### 第七章:Go逆向工程
3541+
## 0x07-Go逆向工程
35423542

35433543
<details>
35443544
<summary>Day000: 逆向-Go逆向工程</summary>
@@ -3565,7 +3565,7 @@
35653565

35663566
</details>
35673567

3568-
## 三、参考资源
3568+
## 0x08-Go参考资源
35693569

35703570
特别感谢:[柴树杉](https://github.com/golang-china/gopl-zh)、[无闻](https://github.com/Unknwon/the-way-to-go_ZH_CN)、[李骁](https://github.com/ffhelicopter/Go42)、[老貘](https://gfw.go101.org/article/101.html)、[王炳明](https://github.com/iswbm)、[韩茹](https://github.com/rubyhan1314)
35713571

0 commit comments

Comments
 (0)