You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Week1/MAKEME.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Who doesn't love kittens on their screen?
23
23
24
24
Write an function that makes an API call to https://wwww.placekitten.com/api
25
25
26
-
- Inside the same file write two programs: one with `XMLHttpRequest`, and the other with `Axios`
26
+
- Inside the same file write two programs: one with `XMLHttpRequest`, and the other with `axios`
27
27
- Each function should make an API call to the given endpoint: `https://wwww.placekitten.com/api`
28
28
- Log the received data to the console
29
29
- Incorporate error handling
@@ -34,7 +34,7 @@ Wouldn't it cool to make a new friend with just the click of a button?
34
34
35
35
Write a function that makes an API call to https://www.randomuser.me/api
36
36
37
-
- Inside the same file write two functions: one with `XMLHttpRequest`, and the other with `Axios`
37
+
- Inside the same file write two functions: one with `XMLHttpRequest`, and the other with `axios`
38
38
- Each function should make an API call to the given endpoint: `https://www.randomuser.me/api`
39
39
- Log the received data to the console
40
40
- Incorporate error handling
@@ -46,7 +46,7 @@ Let's make a randomized photo gallery!
46
46
Write a function that makes an API call to https://picsum.photos/400
47
47
48
48
- Create an `index.html` file that will display your random image
49
-
- Write two programs: one with `XMLHttpRequest`, and the other with `Axios`
49
+
- Write two programs: one with `XMLHttpRequest`, and the other with `axios`
50
50
- Each function should make an API call to the given endpoint: `https://picsum.photos/400`
51
51
- After receiving the data, render it to the page in a `<img>`
52
52
- Incorporate error handling
@@ -129,7 +129,7 @@ This URL is special, as it gives us data in JSON format (Try it out in your brow
129
129
130
130
Note the query string `?per_page=100` in the above URL. If you don't specify this `query string` you will only get the first 30 repositories (the default `per_page` is 30, which we know because it says so in the [API documentation](https://developer.github.com/v3/#pagination)).
131
131
132
-
## Week 1 Assignment:
132
+
###Week 1 Assignment
133
133
134
134
The assignment for this week is to produce a functional application that looks similar to Figure 1:
Copy file name to clipboardExpand all lines: Week2/MAKEME.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ The assignment this week is to enhance your application to look similar to the f
33
33
34
34
As you can see, it looks different from the one from last week. This week we'll be rewriting most of our code to now show information for a single repository and also list its contributors (instead of the details for all repositories). A user should be able to search for all repositories in the account and select the one they want more information on.
35
35
36
-
## Week 2 Assignment
36
+
###Week 2 Assignment
37
37
38
38
The enhanced application should fulfill the following requirements:
0 commit comments