Skip to content

Commit bdc3d6d

Browse files
committed
fix(subjects) already fixed in the module but not in public so student complained
1 parent 8fa2f42 commit bdc3d6d

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

subjects/go-reloaded/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The tool you are about to build will receive as arguments the name of a file con
2020

2121
- Every instance of `(hex)` should replace the word before with the decimal version of the word (in this case the word will always be a hexadecimal number). (Ex: "1E (hex) files were added" -> "30 files were added")
2222
- Every instance of `(bin)` should replace the word before with the decimal version of the word (in this case the word will always be a binary number). (Ex: "It has been 10 (bin) years" -> "It has been 2 years")
23-
- Every instance of `(up)` converts the word before with the Uppercase version of it. (Ex: "Ready, set, go (up) !" -> "Ready, set, GO !")
23+
- Every instance of `(up)` converts the word before with the Uppercase version of it. (Ex: "Ready, set, go (up) !" -> "Ready, set, GO!")
2424
- Every instance of `(low)` converts the word before with the Lowercase version of it. (Ex: "I should stop SHOUTING (low)" -> "I should stop shouting")
2525
- Every instance of `(cap)` converts the word before with the capitalized version of it. (Ex: "Welcome to the Brooklyn bridge (cap)" -> "Welcome to the Brooklyn Bridge")
2626

subjects/wget/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ This flag should accept different value types, example: k and M. So you can put
126126
$ ls
127127
download.txt main.go
128128
$ cat download.txt
129-
http://ipv4.download.thinkbroadband.com/20MB.zip
130-
http://ipv4.download.thinkbroadband.com/10MB.zip
129+
https://assets.01-edu.org/wgetDataSamples/20MB.zip
130+
https://assets.01-edu.org/wgetDataSamples/Image_10MB.zip
131131
$ go run . -i=download.txt
132132
content size: [10485760, 20971520]
133133
finished 10MB.zip
134134
finished 20MB.zip
135135

136-
Download finished: [http://ipv4.download.thinkbroadband.com/20MB.zip http://ipv4.download.thinkbroadband.com/10MB.zip]
136+
Download finished: [https://assets.01-edu.org/wgetDataSamples/20MB.zip https://assets.01-edu.org/wgetDataSamples/Image_10MB.zip]
137137

138138
```
139139

subjects/wget/audit/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
###### Did the program displayed the name and path of the file that was saved?
2626

27-
##### Try to download a big file, for example: `./wget http://ipv4.download.thinkbroadband.com/100MB.zip`
27+
##### Try to download a big file, for example: `./wget https://assets.01-edu.org/wgetDataSamples/Sample.zip`
2828

2929
###### Did the program download the expected file?
3030

@@ -36,39 +36,39 @@
3636

3737
###### While downloading, did the progress bar progressed smoothly (kept up with the time that the download took to finish)?
3838

39-
##### Try to run the following command, `./wget -O=test_20MB.zip http://ipv4.download.thinkbroadband.com/20MB.zip`
39+
##### Try to run the following command, `./wget -O=test_20MB.zip https://assets.01-edu.org/wgetDataSamples/20MB.zip`
4040

4141
###### Did the program downloaded the file with the name `test_20MB.zip`?
4242

43-
##### Try to run the following command, `./wget -O=test_20MB.zip -P=~/Downloads/ http://ipv4.download.thinkbroadband.com/20MB.zip`
43+
##### Try to run the following command, `./wget -O=test_20MB.zip -P=~/Downloads/ https://assets.01-edu.org/wgetDataSamples/20MB.zip`
4444

4545
###### Can you see the expected file in the "~/Downloads/" folder?
4646

47-
##### Try to run the following command, `./wget --rate-limit=300k http://ipv4.download.thinkbroadband.com/20MB.zip`
47+
##### Try to run the following command, `./wget --rate-limit=300k https://assets.01-edu.org/wgetDataSamples/20MB.zip`
4848

4949
###### Was the download speed always lower than 300KB/s?
5050

51-
##### Try to run the following command, `./wget --rate-limit=700k http://ipv4.download.thinkbroadband.com/20MB.zip`
51+
##### Try to run the following command, `./wget --rate-limit=700k https://assets.01-edu.org/wgetDataSamples/20MB.zip`
5252

5353
###### Was the download speed always lower than 700KB/s?
5454

55-
##### Try to run the following command, `./wget --rate-limit=2M http://ipv4.download.thinkbroadband.com/20MB.zip`
55+
##### Try to run the following command, `./wget --rate-limit=2M https://assets.01-edu.org/wgetDataSamples/20MB.zip`
5656

5757
###### Was the download speed always lower than 2MB/s?
5858

5959
##### Try to create a text file with the name `downloads.txt` and save into it the links below. Then run the command `./wget -i=downloads.txt`
6060

6161
```
62-
https://pbs.twimg.com/media/EMtmPFLWkAA8CIS.jpg
63-
http://ipv4.download.thinkbroadband.com/20MB.zip
64-
http://ipv4.download.thinkbroadband.com/10MB.zip
62+
https://assets.01-edu.org/wgetDataSamples/Image_20MB.zip
63+
https://assets.01-edu.org/wgetDataSamples/20MB.zip
64+
https://assets.01-edu.org/wgetDataSamples/Image_10MB.zip
6565
```
6666

6767
###### Did the program download all the files from the downloads.txt file? (EMtmPFLWkAA8CIS.jpg, 20MB.zip, 10MB.zip)
6868

6969
###### Did the downloads occurred in an asynchronous way? (tip: look to the download order)
7070

71-
##### Try to run the following command, `./wget -B http://ipv4.download.thinkbroadband.com/20MB.zip`
71+
##### Try to run the following command, `./wget -B https://assets.01-edu.org/wgetDataSamples/20MB.zip`
7272

7373
```
7474
Output will be written to ‘wget-log’.

0 commit comments

Comments
 (0)