Skip to content

Instantly share code, notes, and snippets.

@nperez0111
Created August 28, 2016 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nperez0111/fb2b9bb530db6a0dcb72e01473b69bef to your computer and use it in GitHub Desktop.
Save nperez0111/fb2b9bb530db6a0dcb72e01473b69bef to your computer and use it in GitHub Desktop.
How to get through Think About It for USF Quicker

What It Does

The "Think About It" Course prior to entering to USF is a difficult thing to pass through needing a shit load of time. These are a couple scripts that can be copy and pasted into the console in order to speed things up.

setInterval( function () {
    $( '.closeable-close-button' ).click();
    $( '.next-button' ).click();
    $( '[data-ng-click="NextClicked()"]' ).click();
    $( "video" ).each( function ( c ) {
        this.playbackRate = 1000
    } )
}, 500 )

Here's how it works.

Line Number:

  1. Opens an interval in order for my program to continuosly run.
  2. Closes any close button that comes up for you.
  3. Automatically clicks the Next button for you.
  4. Clicks the Next button within the activity for you.
  5. Speeds up every video to 1000 so you don't actually have to watch it for a long time.
  6. Closes the interval and sets it to run every 500 milliseconds, if you want you can set this to be a smaller number but sometimes the clicking doesn't work so you need time to click the back button.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment