Skip to content

Instantly share code, notes, and snippets.

@jraczak
Created September 30, 2016 00:44
Show Gist options
  • Save jraczak/909a90447a7f2594f6eba17d4dce3da3 to your computer and use it in GitHub Desktop.
Save jraczak/909a90447a7f2594f6eba17d4dce3da3 to your computer and use it in GitHub Desktop.
<!-- METHOD 1 -->
{
"workout1": [
{
"sets": [
{
"exercise": "Barbell Chest Press",
"reps": 10,
"weight": 135
},
{
"exercise": "Barbell Chest Press",
"reps": 9,
"weight": 135
},
{
"exercise": "Dumbbell Chest Press",
"reps": 10,
"weight": 75
},
{
"exercise": "Dumbbell Chest Press",
"reps": 9,
"weight": 75
}
]
}
],
<!-- METHOD 2 -->
"workout2": [
{
"exercises": [
{
"name": "Barbell Chest Press",
"sets": [
{
"reps": 12,
"weight": 135
},
{
"reps": 11,
"weight": 135
},
{
"reps": 8,
"weight": 135
}
]
},
{
"name": "Dumbbell Chest Press",
"sets": [
{
"reps": 12,
"weight": 75
},
{
"reps": 11,
"weight": 75
},
{
"reps": 8,
"weight": 75
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment