public function deferredInit($options, $stream, $feed)
 {
     $original = $options->original();
     $this->restService = new FFTwitterAPIExchange(array('oauth_access_token' => $original['oauth_access_token'], 'oauth_access_token_secret' => $original['oauth_access_token_secret'], 'consumer_key' => $original['consumer_key'], 'consumer_secret' => $original['consumer_secret']));
     $count = $this->getCount();
     $screenName = $feed->content;
     $exclude_replies = (string) FFSettingsUtils::notYepNope2ClassicStyle($feed->replies);
     $include_rts = (string) FFSettingsUtils::YepNope2ClassicStyle($feed->retweets);
     $this->getfield = "?screen_name={$screenName}&count={$count}&exclude_replies={$exclude_replies}&include_rts={$include_rts}";
 }
 public function useCurlFollowLocation()
 {
     $value = $this->options["general-settings-disable-follow-location"];
     return FFSettingsUtils::notYepNope2ClassicStyle($value, true);
 }