Skip to content

Commit 84a1171

Browse files
committedJul 3, 2021
add zip archives in readme #1, #2, #3, #4 topics
1 parent 45d980d commit 84a1171

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
 

‎intro/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ When **1 of multiple concurrent processes** involved **abuses the CPU**, thus ca
177177
Writing concurrent code does not always look as normal synchronous code. Sometimes complexity
178178
**grows naturally** just because of the **concurrent complex nature**, thus requiring **shifting the code design**.
179179

180+
### Zip Archives
181+
182+
- [Concurrency in Go #1 - Introduction to Concurrency](https://youtu.be/_uQgGS_VIXM) - [[Download Zip]](https://github.com/golang-basics/concurrency/raw/master/archives/concurrency-1.tar.gz)
183+
180184
### Presentations
181185

182186
- [Concurrency in Go #1 - Introduction to Concurrency](https://github.com/golang-basics/concurrency/raw/master/presentations/1_introduction-to-concurrency)

‎waitgroups/README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,15 @@ go build -o exec
129129
GOMAXPROCS=1 GODEBUG=schedtrace=5000,scheddetail=1 ./exec
130130
```
131131

132+
### Zip Archives
133+
134+
- [Concurrency in Go #2 - WaitGroups (Part 1)](https://youtu.be/srb6fbioEY4) - [[Download Zip]](https://github.com/golang-basics/concurrency/raw/master/archives/concurrency-2.tar.gz)
135+
- [Concurrency in Go #3 - WaitGroups (Part 2)](https://youtu.be/zAMUKb6fCO0) - [[Download Zip]](https://github.com/golang-basics/concurrency/raw/master/archives/concurrency-3.tar.gz)
136+
- [Concurrency in Go #4 - WaitGroups (Part 3)](https://youtu.be/_QNcn7LAANY) - [[Download Zip]](https://github.com/golang-basics/concurrency/raw/master/archives/concurrency-4.tar.gz)
137+
132138
### Presentations
133139

134-
- [Concurrency in Go #2 - WaitGroups](https://github.com/golang-basics/concurrency/raw/master/presentations/2_waitgroups)
140+
- [Concurrency in Go #2, #3, #4 - WaitGroups](https://github.com/golang-basics/concurrency/raw/master/presentations/2_waitgroups)
135141

136142
### Examples
137143

0 commit comments

Comments
 (0)
Please sign in to comment.