Skip to content

Instantly share code, notes, and snippets.

@jackmalpo
Created December 21, 2020 21:08
Show Gist options
  • Save jackmalpo/d833efada2758e7dcb673e273972ec0c to your computer and use it in GitHub Desktop.
Save jackmalpo/d833efada2758e7dcb673e273972ec0c to your computer and use it in GitHub Desktop.
public final class Data {
@NotNull
public static final Instructor instructorEmmaLovewell =
new Instructor(
"f6f2d613dc344e4bbf6428cd34697820",
"Emma Lovewell",
"https://s3.amazonaws.com/workout-metric-images-prod/aab0bbd729f94be0b835d08507410eea");
@NotNull
public static final Instructor instructorJessKing =
new Instructor(
"048f0ce00edb4427b2dced6cbeb107fd",
"Jess King",
"https://s3.amazonaws.com/workout-metric-images-prod/f94160a5f6e14445840c8f60b5f86ae8");
@NotNull
public static final Instructor instructorTunde =
new Instructor(
"c9bd86e59b9b4f96981848467838aa9c",
"Tunde Oyeneyin",
"https://s3.amazonaws.com/workout-metric-images-prod/2ea104ad84b64d3b9a27e7748c7ca1a7");
@NotNull
public static final Instructor instructorAllyLove =
new Instructor(
"731d7b7f6b414a49892c21f01e25317d",
"Ally Love",
"https://s3.amazonaws.com/workout-metric-images-prod/85182219e21c43b39aa1251dd8f12adb");
@NotNull
public static final PelotonClass[] classes =
new PelotonClass[] {
new PelotonClass(
"f920591742044ee3a7dec378778deba2",
1602795600000, // 2020-10-15T17:00:00-04:00[America/New_York]
instructorEmmaLovewell,
FitnessDiscipline.CYCLING,
"30 min 90s Rock Ride"),
new PelotonClass(
"4df5385ba1dd4603ac7ba11de5c2cca0",
1602798300000, // 2020-10-15T17:45:00-04:00[America/New_York]
instructorEmmaLovewell,
FitnessDiscipline.CYCLING,
"15 min 90s Hip Hop Ride"),
new PelotonClass(
"4df5385ba1dd4603ac7ba11de5c2cca0",
1602804600000, // 2020-10-15T19:30:00-04:00[America/New_York]
instructorJessKing,
FitnessDiscipline.CYCLING,
"20 min Pop Ride"),
new PelotonClass(
"6e6f4b21e10c4effa38fa1d88454665e",
1602806700000, // 2020-10-15T20:05:00-04:00[America/New_York]
instructorJessKing,
FitnessDiscipline.CYCLING,
"20 min EDM Ride"),
new PelotonClass(
"07799e908e094e1194da5b937ccb1455",
1602795600000, // 2020-10-15T17:00:00-04:00[America/New_York]
instructorEmmaLovewell,
FitnessDiscipline.CYCLING,
""),
new PelotonClass(
"ba9e651a17e94d4f9871b80502955221",
1602808200000, // 2020-10-15T20:30:00-04:00[America/New_York]
instructorTunde,
FitnessDiscipline.CYCLING,
"15 min Tabata Ride"),
new PelotonClass(
"659ac2fe1c894e4fa52343f48bf6eaa6",
1602835200000, // 2020-10-16T04:00:00-04:00[America/New_York]
instructorAllyLove,
FitnessDiscipline.CYCLING,
"20 min BHM: Black on Broadway Ride")
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment