youtemy icon indicating copy to clipboard operation
youtemy copied to clipboard

Enhancement: Recommended Courses

Open rosekamallove opened this issue 2 years ago • 1 comments

I am thinking of creating a json file in the /Pages/CoursesPage which will contain various courses recommended by the users. It will be an array of objects with each array item being a track with various playlists inside of it.

[
  {
    title: "Full Stack Web Development",
    playlists: [
      "https://www.youtube.com/playlist?list=PLDlWc9AfQBfaO1IX02_1L5MW2s9RyIgQ7",
      "https://www.youtube.com/playlist?list=PL4cUxeGkcC9gZD-Tvwfod2gaISzfRiP9d",
      "https://www.youtube.com/playlist?list=PL4cUxeGkcC9jsz4LDYc6kv3ymONOKxwBU",
    ],
  },
  {
    title: "Android Development",
    playlists: [
      "https://www.youtube.com/playlist?list=PLDlWc9AfQBfaO1IX02_1L5MW2s9RyIgQ7",
      "https://www.youtube.com/playlist?list=PL4cUxeGkcC9gZD-Tvwfod2gaISzfRiP9d",
      "https://www.youtube.com/playlist?list=PL4cUxeGkcC9jsz4LDYc6kv3ymONOKxwBU",
    ],
  },
];

It could look like this or we can have a discussion below, on what would be the best way to create this sort of a database

1. Compile the best Courses in the JSON format

  • [ ] Introduction to Programming and Data Structures and Algorithms
  • [ ] Full Stack Web Development
  • [ ] Backend Development
  • [ ] Frontend Development
  • [ ] Native Android Development
  • [ ] Flutter Development
  • [ ] Block Chain Development

2. Implement this JSON database

rosekamallove avatar Apr 25 '22 05:04 rosekamallove