Lesson 1 links to different parts in video

Thank you :slight_smile:
I did it like this:

  1. Write notes what is mentioned in Slack (the comments get timestamps)
  2. Open slack in web browser
  3. Inspect network traffic
  4. copy the comments as JSON from the call comments.view
  5. scroll up in the conversation
  6. then new ajax calls will be triggered
  7. copy those as well, (beautify with jsonlint.com)
  8. i pasted everything into a text file, and made all messages into one js array
  9. converted it to csv using an online converter
  10. import it into google spreadsheet as csv
  11. sort by timestamp
  12. now i have two columns i want, the one with the text and the one with the timetamp
  13. find the difference in timestamps
  14. generate a concat of the video url and the timestamp diffs for all messages
  15. copy pasted that into sublime and replaced some characters so it would become a valid markdown list with links
36 Likes